Timeline.css 1.7 KB

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