styles.css 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. html, body {
  2. position: relative;
  3. margin: 0;
  4. padding: 0;
  5. overflow: hidden;
  6. width: 100%;
  7. height: 100%;
  8. background-color: black; }
  9. #root {
  10. position: relative;
  11. width: 100%;
  12. height: 100%; }
  13. #header {
  14. position: absolute;
  15. z-index: 10;
  16. top: 0;
  17. left: 0;
  18. display: none; }
  19. #timelaps {
  20. position: relative;
  21. z-index: 5;
  22. width: 100%;
  23. height: 100%;
  24. overflow: hidden; }
  25. #timelaps video#timelapsvid {
  26. position: absolute;
  27. top: 0;
  28. left: 0;
  29. width: 100%;
  30. height: 100%; }
  31. @media (min-aspect-ratio: 16 / 9) {
  32. #timelaps video#timelapsvid {
  33. height: 200%;
  34. top: -50%; } }
  35. @media (max-aspect-ratio: 16 / 9) {
  36. #timelaps video#timelapsvid {
  37. width: 200%;
  38. left: -50%; } }
  39. #mapout {
  40. position: absolute;
  41. z-index: 9;
  42. bottom: 0;
  43. left: 0;
  44. width: 23.5%;
  45. margin: 1% 0.5% 1% 1%;
  46. height: 10%;
  47. background-color: rgba(255, 255, 255, 0.6);
  48. border-radius: 2px; }
  49. #mapin {
  50. position: absolute;
  51. z-index: 9;
  52. bottom: 0;
  53. left: 25%;
  54. width: 23.5%;
  55. margin: 1% 0.5% 1% 0.5%;
  56. height: 10%;
  57. background-color: rgba(255, 255, 255, 0.6);
  58. border-radius: 2px; }
  59. #timeline {
  60. position: absolute;
  61. z-index: 9;
  62. bottom: 0;
  63. right: 0;
  64. width: 48%;
  65. margin: 1% 1% 1% 0.5%;
  66. padding: 0.5%;
  67. height: 8.3%;
  68. background-color: rgba(15, 15, 15, 0.8);
  69. border-radius: 2px; }
  70. #timeline .vis-timeline {
  71. border: none; }
  72. #timeline .vis-time-axis,
  73. #timeline .vis-background, #timeline .vis-background.vis-horizontal, #timeline .vis-background.vis-vertical,
  74. #timeline .vis-panel.vis-center, #timeline .vis-panel.vis-top, #timeline .vis-panel.vis-bottom {
  75. border: none; }
  76. #timeline .vis-text {
  77. color: #827f7f; }
  78. #timeline .vis-custom-time.videotime {
  79. background-color: #2781cc; }