ulovliglogning.dk/_scss/base/_typography.scss

41 lines
554 B
SCSS
Raw Normal View History

2018-01-20 23:49:35 +00:00
html {
font-size: 16px;
}
2018-01-23 22:45:06 +00:00
body {
font-family: 'Open Sans', sans-serif;
font-family: 'Roboto', sans-serif;
}
2018-01-20 23:49:35 +00:00
2018-01-25 23:17:09 +00:00
h1, h2, h3 {
2018-01-22 14:21:34 +00:00
font-family: 'Montserrat', sans-serif;
2018-01-20 23:49:35 +00:00
}
h1 {
2018-01-25 23:17:09 +00:00
font-size: 2.7rem;
line-height: 3.3rem;
2018-01-20 23:49:35 +00:00
display: block;
@media screen and (max-width: $screen-phone) {
& {
font-size: 2.5rem;
}
}
}
h3 {
color: #ff5800;
font-size: 1.5rem;
line-height: 2rem;
}
p {
2018-01-25 23:17:09 +00:00
margin: 0 1rem 2rem;
font-size: 1rem;
line-height: 1.5rem;
2018-01-20 23:49:35 +00:00
break-inside: avoid;
}
a {
color: #FFF;
2018-01-24 22:24:26 +00:00
text-decoration: underline;
font-weight: bold;
2018-01-20 23:49:35 +00:00
}