styles.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. html, body {
  2. position: relative;
  3. margin: 0;
  4. padding: 0;
  5. overflow: hidden;
  6. width: 100%;
  7. height: 100%; }
  8. #root {
  9. position: relative;
  10. width: 100%;
  11. height: 100%; }
  12. #header {
  13. position: absolute;
  14. z-index: 10;
  15. top: 0;
  16. left: 0; }
  17. #pictures {
  18. position: relative;
  19. z-index: 5;
  20. width: 100%;
  21. height: 100%;
  22. overflow: hidden; }
  23. #pictures .frame {
  24. position: absolute;
  25. top: 0;
  26. left: 0;
  27. width: 100%;
  28. height: 100%;
  29. background-size: cover;
  30. background-position: center;
  31. background-repeat: no-repeat;
  32. opacity: 0;
  33. transition: opacity 100 ease-in-out; }
  34. #pictures .frame.current {
  35. opacity: 1; }
  36. #timeline {
  37. position: absolute;
  38. z-index: 9;
  39. bottom: 0;
  40. left: 0;
  41. width: 67%;
  42. margin: 1% 0 1% 32%;
  43. height: 3em;
  44. background-color: rgba(255, 255, 255, 0.6);
  45. border-radius: 5px; }
  46. #map {
  47. position: absolute;
  48. z-index: 9;
  49. bottom: 0;
  50. left: 0;
  51. width: 30%;
  52. margin: 1%;
  53. height: 40%;
  54. background-color: rgba(255, 255, 255, 0.6);
  55. border-radius: 5px; }