Timeline.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. .cesium-timeline-main {
  2. position: relative;
  3. left: 0;
  4. bottom: 0;
  5. overflow: hidden;
  6. border: solid 1px #888;
  7. }
  8. .cesium-timeline-trackContainer {
  9. width: 100%;
  10. overflow: auto;
  11. border-top: solid 1px #888;
  12. position: relative;
  13. top: 0;
  14. left: 0;
  15. }
  16. .cesium-timeline-tracks {
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. width: 100%;
  21. }
  22. .cesium-timeline-needle {
  23. position: absolute;
  24. left: 0;
  25. top: 1.7em;
  26. bottom: 0;
  27. width: 1px;
  28. background: #F00;
  29. }
  30. .cesium-timeline-bar {
  31. position: relative;
  32. left: 0;
  33. top: 0;
  34. overflow: hidden;
  35. cursor: pointer;
  36. width: 100%;
  37. height: 1.7em;
  38. background-color: #fafafa;
  39. background: rgba(32, 32, 32, 0.8);
  40. background: -moz-linear-gradient(top, rgba(116,117,119,0.8) 0%, rgba(58,68,82,0.8) 11%, rgba(46,50,56,0.8) 46%, rgba(53,53,53,0.8) 81%, rgba(53,53,53,0.8) 100%); /* FF3.6+ */
  41. background: -webkit-linear-gradient(top, rgba(116,117,119,0.8) 0%,rgba(58,68,82,0.8) 11%,rgba(46,50,56,0.8) 46%,rgba(53,53,53,0.8) 81%,rgba(53,53,53,0.8) 100%); /* Chrome10+,Safari5.1+ */
  42. background: -o-linear-gradient(top, rgba(116,117,119,0.8) 0%,rgba(58,68,82,0.8) 11%,rgba(46,50,56,0.8) 46%,rgba(53,53,53,0.8) 81%,rgba(53,53,53,0.8) 100%); /* Opera 11.10+ */
  43. background: -ms-linear-gradient(top, rgba(116,117,119,0.8) 0%,rgba(58,68,82,0.8) 11%,rgba(46,50,56,0.8) 46%,rgba(53,53,53,0.8) 81%,rgba(53,53,53,0.8) 100%); /* IE10+ */
  44. background: linear-gradient(to bottom, rgba(116,117,119,0.8) 0%,rgba(58,68,82,0.8) 11%,rgba(46,50,56,0.8) 46%,rgba(53,53,53,0.8) 81%,rgba(53,53,53,0.8) 100%); /* W3C */
  45. }
  46. .cesium-timeline-ruler {
  47. /* NOTE: The label and the ruler must use the same font/size */
  48. visibility: hidden;
  49. white-space: nowrap;
  50. font-size: 80%;
  51. z-index: -200;
  52. }
  53. .cesium-timeline-highlight {
  54. position: absolute;
  55. bottom: 0;
  56. left: 0;
  57. background: #08F;
  58. }
  59. .cesium-timeline-ticLabel {
  60. position: absolute;
  61. top: 0;
  62. left: 0;
  63. white-space: nowrap;
  64. font-size: 80%;
  65. color: #eee;
  66. }
  67. .cesium-timeline-ticMain {
  68. position: absolute;
  69. bottom: 0;
  70. left: 0;
  71. width: 1px;
  72. height: 50%;
  73. background: #eee;
  74. }
  75. .cesium-timeline-ticSub {
  76. position: absolute;
  77. bottom: 0;
  78. left: 0;
  79. width: 1px;
  80. height: 33%;
  81. background: #aaa;
  82. }
  83. .cesium-timeline-ticTiny {
  84. position: absolute;
  85. bottom: 0;
  86. left: 0;
  87. width: 1px;
  88. height: 25%;
  89. background: #888;
  90. }
  91. .cesium-timeline-icon16 {
  92. display: block;
  93. position: absolute;
  94. width: 16px;
  95. height: 16px;
  96. background-image: url("../Images/TimelineIcons.png");
  97. background-repeat: no-repeat;
  98. }