2018-12-20 18:37:31 +00:00
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
min-height: 100%;
|
2022-02-18 16:32:25 +00:00
|
|
|
font-family: $proxima;
|
2020-04-13 23:15:17 +00:00
|
|
|
background: $body-bg;
|
2023-03-09 22:22:50 +00:00
|
|
|
|
|
|
|
// One off style to hide element injected by Scarf marketing integration
|
|
|
|
& > img[referrerpolicy="no-referrer-when-downgrade"] {display: none;}
|
2018-12-20 18:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2020-04-13 23:15:17 +00:00
|
|
|
transition: color .2s, background-color .2s;
|
2018-12-20 18:37:31 +00:00
|
|
|
}
|
2018-12-21 06:31:58 +00:00
|
|
|
|
|
|
|
.page-wrapper {
|
|
|
|
display: flex;
|
2018-12-21 17:12:28 +00:00
|
|
|
flex-grow: 1;
|
2018-12-21 06:31:58 +00:00
|
|
|
}
|
2019-01-03 23:59:31 +00:00
|
|
|
|
2022-05-13 22:35:01 +00:00
|
|
|
// Used to hide honeypot form fields
|
|
|
|
.bowlofsweets {display: none;}
|
|
|
|
|
2019-01-03 23:59:31 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
///////////////////////////////// MEDIA QUERIES ////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
@include media(medium) {
|
|
|
|
.page-wrapper {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|