49 lines
655 B
SCSS
49 lines
655 B
SCSS
@import "media";
|
|
@import "root";
|
|
@import "all";
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.8em;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p {
|
|
font-size: 1.1em;
|
|
line-height: 1.4em;
|
|
|
|
&:not(&:last-of-type) {
|
|
padding-bottom: 10px;
|
|
}
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
|
|
@include media-large {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
@include media-small {
|
|
padding: 0 20px;
|
|
}
|
|
}
|
|
|
|
.loading {
|
|
height: 200px;
|
|
|
|
.loading_animation {
|
|
margin: 20px auto;
|
|
width: 50px;
|
|
height: 50px;
|
|
border: 5px solid #f3f3f3;
|
|
border-top: 10px #A2CF00 solid;
|
|
border-radius: 50%;
|
|
animation: loading-animation 1s linear infinite;
|
|
}
|
|
}
|