2022-12-10 10:37:36 +00:00
|
|
|
body {
|
2023-10-23 17:56:35 +00:00
|
|
|
font-family: "Open Sans", Helvetica, Arial, sans-serif;
|
2022-12-10 10:37:36 +00:00
|
|
|
margin: 0;
|
|
|
|
background: $background-dark;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
article {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
}
|
|
|
|
|
2023-10-22 23:07:24 +00:00
|
|
|
.alt-font {
|
2023-10-23 17:56:35 +00:00
|
|
|
// used for heading, etc
|
|
|
|
font-family: "Teko Light", Helvetica, Arial, sans-serif;
|
2022-12-10 10:37:36 +00:00
|
|
|
}
|
|
|
|
|
2023-10-22 23:07:24 +00:00
|
|
|
h1, h2, h3 {
|
|
|
|
@extend .alt-font;
|
|
|
|
}
|
|
|
|
|
2022-12-10 10:37:36 +00:00
|
|
|
h1 {
|
|
|
|
font-size: 1.75rem;
|
|
|
|
color: $secondary;
|
2023-10-22 23:07:24 +00:00
|
|
|
margin: 1.5rem 0 1rem 0;
|
2022-12-10 10:37:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 1.4rem;
|
|
|
|
color: $primary;
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
2023-10-23 17:49:06 +00:00
|
|
|
margin: 0;
|
|
|
|
padding-top: 1em;
|
|
|
|
padding-bottom: .5em;
|
2022-12-10 10:37:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.maplibre-map {
|
|
|
|
width: 100%;
|
|
|
|
min-height: 25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.columns-two {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.half-wheel-logo {
|
|
|
|
color: white;
|
|
|
|
}
|
2023-10-22 23:07:24 +00:00
|
|
|
|
|
|
|
@media (max-width: $md-breakpoint) {
|
|
|
|
.columns-two {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
|
|
|
>div {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
dl:first-of-type {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|