style.css 611 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. body {
  2. width: 100%;
  3. height: 100%;
  4. margin: 0;
  5. padding: 0;
  6. }
  7. #map {
  8. position: absolute;
  9. top: 0;
  10. bottom: 0;
  11. width: 100%;
  12. }
  13. .mapboxgl-popup {
  14. cursor: auto;
  15. }
  16. .mapboxgl-popup-tip {
  17. border-top-color: rgba(0, 0, 0, 0.8) !important;
  18. }
  19. .mapboxgl-popup-content {
  20. color: whitesmoke;
  21. background-color: rgba(0, 0, 0, 0.8) !important;
  22. }
  23. .building-height {
  24. font-size: 16px;
  25. font-family: 'Open Sans Bold', sans-serif;
  26. font-weight: normal;
  27. }
  28. .building-name {
  29. color: rgba(113, 113, 113, 0.8);
  30. }
  31. .loader.is-active {
  32. background-color: rgba(0, 0, 0, 0.1);
  33. }