styles.css 876 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. #pictures {
  19. position: relative;
  20. z-index: 5;
  21. width: 100%;
  22. height: 100%;
  23. overflow: hidden; }
  24. #pictures video {
  25. width: 100%;
  26. height: 100%; }
  27. #pictures video source:not(.1080p) {
  28. display: none; }
  29. #timeline {
  30. position: absolute;
  31. z-index: 9;
  32. bottom: 0;
  33. left: 0;
  34. width: 67%;
  35. margin: 1% 0 1% 32%;
  36. height: 3em;
  37. background-color: rgba(255, 255, 255, 0.6);
  38. border-radius: 2px; }
  39. #map {
  40. position: absolute;
  41. z-index: 9;
  42. bottom: 0;
  43. left: 0;
  44. width: 30%;
  45. margin: 1%;
  46. height: 40%;
  47. background-color: rgba(255, 255, 255, 0.6);
  48. border-radius: 2px; }