64 lines
864 B
SCSS
64 lines
864 B
SCSS
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
|
|
@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");
|
|
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
font-family: "Roboto", sans-serif;
|
|
}
|
|
|
|
html {
|
|
font-size: 62.5%;
|
|
min-height: 100%;
|
|
@include flex(column);
|
|
}
|
|
|
|
body {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
input,
|
|
button {
|
|
background: none;
|
|
outline: none;
|
|
border: none;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
}
|
|
|
|
ol {
|
|
margin-left: 1rem;
|
|
li {
|
|
font-size: 1.7rem;
|
|
line-height: 2.5rem;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: #000;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.container {
|
|
@include stretch;
|
|
max-width: 174rem;
|
|
padding: 0 4rem;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
// Media
|
|
|
|
@media screen and (max-width: 1070px) {
|
|
body {
|
|
padding-bottom: 7.215rem;
|
|
}
|
|
}
|
|
@media screen and (max-width: 1000px) {
|
|
.container {
|
|
padding: 0 2rem;
|
|
}
|
|
}
|