main.css 685 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. :root {
  2. --dark-bg: #468A37;
  3. --body-bg: #ddd;
  4. --content-bg: #eee;
  5. --white: #ffffff;
  6. }
  7. body {
  8. background-color: var(--body-bg);
  9. }
  10. .wrapper {
  11. background-color: var(--content-bg);
  12. }
  13. .content{
  14. min-height: calc(100vh - 65px - 61px);
  15. }
  16. nav, nav h1 {
  17. background-color: var(--dark-bg);
  18. color: white;
  19. }
  20. nav img{
  21. height: 55px;
  22. }
  23. nav a span {
  24. color: var(--white);
  25. display: block;
  26. text-align: center;
  27. font-size: 13px;
  28. position: relative;
  29. top: -3px;
  30. }
  31. nav a svg, nav a i {
  32. color: var(--white);
  33. display: inline-block;
  34. }
  35. .bi {
  36. font-size: 25px;
  37. }
  38. #map{
  39. height: calc(100vh - 120px - 2em);
  40. min-height: 200px;
  41. }