MusicTopus/sass/global.scss

41 lines
708 B
SCSS
Raw Normal View History

2022-02-18 16:53:54 +01:00
html {
min-height: 100vh;
body {
display: flex;
flex-direction: column;
padding-top: 3.5rem;
font-family: 'open_sansregular';
font-weight: 400;
2022-02-19 09:25:51 +01:00
min-height: 100vh;
&.is-accessible {
font-family: 'lucioleregular';
}
2022-02-19 09:25:51 +01:00
footer.footer {
2022-02-18 16:53:54 +01:00
margin-top: auto;
2022-02-19 09:25:51 +01:00
padding: 2rem 0.7rem 1.5rem;
2022-02-18 16:53:54 +01:00
background-color: #fafafa;
}
2022-02-19 09:25:51 +01:00
2022-02-18 16:53:54 +01:00
a {
color: #485fc7;
cursor: pointer;
}
2022-02-23 08:41:30 +01:00
h1 {
margin-top: 2rem;
}
2022-02-18 08:14:34 +01:00
}
2022-02-19 09:25:51 +01:00
}
.layout-maxed {
@include respond-to("small") {
padding: 0 0.7rem;
}
2022-02-23 11:33:57 +01:00
}
.is-hidden {
display: none;
2022-02-18 08:14:34 +01:00
}