c3ebc4798b20bff066f0e3ed126c3ee3827a6c5d.svn-base 505 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html {
  6. --width: 100%;
  7. --height: 100%;
  8. }
  9. html, body {
  10. width: var(--width);
  11. height: var(--height)
  12. }
  13. #map {
  14. width: var(--width);
  15. height: calc(var(--height));
  16. overflow: hidden;
  17. }
  18. #test {
  19. width: var(--width);
  20. height: calc(var(--height) / 2);
  21. overflow: hidden;
  22. }
  23. #map {
  24. background: #ccc;
  25. }
  26. .point {
  27. width: 150px;
  28. font-size: 12px;
  29. text-align: center;
  30. margin-bottom: 10px;
  31. }
  32. #theme {
  33. position: absolute;
  34. right: 0;
  35. top: 0;
  36. padding: 5px;
  37. }