Timeline.css 1.8 KB

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