c05f975cce168b9aaa67f9b844936de842f24453.svn-base 433 B

1234567891011121314151617181920212223242526272829303132333435
  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. }