main.css 713 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. font-family: "Calibri";
  10. }
  11. .wrapper {
  12. background-color: var(--content-bg);
  13. }
  14. .content{
  15. min-height: calc(100vh - 65px - 61px);
  16. }
  17. nav, nav h1 {
  18. background-color: var(--dark-bg);
  19. color: white;
  20. }
  21. nav img{
  22. height: 55px;
  23. }
  24. nav a span {
  25. color: var(--white);
  26. display: block;
  27. text-align: center;
  28. font-size: 13px;
  29. position: relative;
  30. top: -3px;
  31. }
  32. nav a svg, nav a i {
  33. color: var(--white);
  34. display: inline-block;
  35. }
  36. .bi {
  37. font-size: 25px;
  38. }
  39. #map{
  40. height: calc(100vh - 120px - 2em);
  41. min-height: 200px;
  42. }