forked from ulovliglogning/ulovliglogning.dk
45 lines
630 B
SCSS
45 lines
630 B
SCSS
html {
|
|
font-size: 16px;
|
|
}
|
|
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-family: 'Montserrat', sans-serif;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.7rem;
|
|
line-height: 3.3rem;
|
|
display: block;
|
|
@media screen and (max-width: $screen-phone) {
|
|
& {
|
|
font-size: 2.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
color: #ff5800;
|
|
font-size: 1.5rem;
|
|
line-height: 2rem;
|
|
}
|
|
|
|
p {
|
|
margin: 0 1rem 2rem;
|
|
font-size: 1rem;
|
|
line-height: 1.5rem;
|
|
break-inside: avoid;
|
|
}
|
|
|
|
a {
|
|
color: #FFF;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
box-shadow: 0 2px 0 #ff5800;
|
|
.even & {
|
|
box-shadow: 0 2px 0 #FFF;
|
|
}
|
|
} |