37 lines
499 B
SCSS
37 lines
499 B
SCSS
// * {
|
|
// outline: 1px dotted red;
|
|
// }
|
|
|
|
|
|
html {
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Raleway', sans-serif;
|
|
font-size: 100%;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
a {
|
|
font-family: 'Montserrat', sans-serif;
|
|
}
|
|
|
|
.content {
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Montserrat', sans-serif;
|
|
margin: 0 0 3rem;
|
|
text-transform: none;
|
|
}
|
|
|
|
h2, h3, h4, h5, h6 {
|
|
color: $color__neutral-600;
|
|
}
|
|
|
|
blockquote {
|
|
background-color: initial;
|
|
@include font-cursive();
|
|
border: 0;
|
|
}
|
|
}
|