Timeline.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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: linear-gradient(
  39. to bottom,
  40. rgba(116, 117, 119, 0.8) 0%,
  41. rgba(58, 68, 82, 0.8) 11%,
  42. rgba(46, 50, 56, 0.8) 46%,
  43. rgba(53, 53, 53, 0.8) 81%,
  44. rgba(53, 53, 53, 0.8) 100%
  45. );
  46. }
  47. .cesium-timeline-ruler {
  48. /* NOTE: The label and the ruler must use the same font/size */
  49. visibility: hidden;
  50. white-space: nowrap;
  51. font-size: 80%;
  52. z-index: -200;
  53. }
  54. .cesium-timeline-highlight {
  55. position: absolute;
  56. bottom: 0;
  57. left: 0;
  58. background: #08f;
  59. }
  60. .cesium-timeline-ticLabel {
  61. position: absolute;
  62. top: 0;
  63. left: 0;
  64. white-space: nowrap;
  65. font-size: 80%;
  66. color: #eee;
  67. }
  68. .cesium-timeline-ticMain {
  69. position: absolute;
  70. bottom: 0;
  71. left: 0;
  72. width: 1px;
  73. height: 50%;
  74. background: #eee;
  75. }
  76. .cesium-timeline-ticSub {
  77. position: absolute;
  78. bottom: 0;
  79. left: 0;
  80. width: 1px;
  81. height: 33%;
  82. background: #aaa;
  83. }
  84. .cesium-timeline-ticTiny {
  85. position: absolute;
  86. bottom: 0;
  87. left: 0;
  88. width: 1px;
  89. height: 25%;
  90. background: #888;
  91. }
  92. .cesium-timeline-icon16 {
  93. display: block;
  94. position: absolute;
  95. width: 16px;
  96. height: 16px;
  97. background-image: url("../Images/TimelineIcons.png");
  98. background-repeat: no-repeat;
  99. }