Timeline.css 2.2 KB

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