styles.scss 822 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. html, body{
  2. position: relative;
  3. margin: 0; padding: 0;
  4. overflow: hidden;
  5. width:100%; height:100%;
  6. background-color: black;
  7. }
  8. #root{
  9. position: relative;
  10. width:100%; height:100%;
  11. }
  12. #header{
  13. position: absolute; z-index: 10;
  14. top:0; left:0;
  15. }
  16. #pictures{
  17. position: relative; z-index: 5;
  18. width:100%; height:100%;
  19. overflow: hidden;
  20. // border: 1px solid blue;
  21. video {
  22. width:100%; height:100%;
  23. source:not(.1080p){
  24. display:none;
  25. }
  26. }
  27. }
  28. #timeline{
  29. position: absolute; z-index: 9;
  30. bottom:0; left:0; width:67%; margin:1% 0 1% 32%; height:3em;
  31. background-color: rgba(255, 255, 255, 0.6);
  32. border-radius: 2px;
  33. }
  34. #map{
  35. position: absolute; z-index: 9;
  36. bottom:0; left:0; width:30%; margin:1%; height:40%;
  37. background-color: rgba(255, 255, 255, 0.6);
  38. border-radius: 2px;
  39. }