41 lines
No EOL
708 B
SCSS
41 lines
No EOL
708 B
SCSS
html {
|
|
min-height: 100vh;
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-top: 3.5rem;
|
|
font-family: 'open_sansregular';
|
|
font-weight: 400;
|
|
min-height: 100vh;
|
|
|
|
&.is-accessible {
|
|
font-family: 'lucioleregular';
|
|
}
|
|
|
|
footer.footer {
|
|
margin-top: auto;
|
|
padding: 2rem 0.7rem 1.5rem;
|
|
background-color: #fafafa;
|
|
}
|
|
|
|
a {
|
|
color: #485fc7;
|
|
cursor: pointer;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 2rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.layout-maxed {
|
|
@include respond-to("small") {
|
|
padding: 0 0.7rem;
|
|
}
|
|
}
|
|
|
|
.is-hidden {
|
|
display: none;
|
|
} |