docs-v2/assets/styles/layouts/_global.scss

39 lines
781 B
SCSS
Raw Normal View History

html {
height: 100%;
}
body {
min-height: 100%;
font-family: $proxima;
2020-04-13 23:15:17 +00:00
background: $body-bg;
// One off style to hide element injected by Scarf marketing integration
& > img[referrerpolicy="no-referrer-when-downgrade"] {display: none;}
}
* {
box-sizing: border-box;
}
a {
2020-04-13 23:15:17 +00:00
transition: color .2s, background-color .2s;
}
.page-wrapper {
display: flex;
2018-12-21 17:12:28 +00:00
flex-grow: 1;
}
// Used to hide honeypot form fields
.bowlofsweets {display: none;}
////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// MEDIA QUERIES ////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
@include media(medium) {
.page-wrapper {
flex-direction: column;
}
}