36 lines
468 B
SCSS
36 lines
468 B
SCSS
///////////////////
|
|
// //
|
|
// FONTS //
|
|
// //
|
|
///////////////////
|
|
|
|
html,
|
|
body {
|
|
font-size: $font-size-base;
|
|
}
|
|
|
|
code,
|
|
figure p,
|
|
.footnotes,
|
|
.footnote-ref,
|
|
.main-footer,
|
|
nav,
|
|
.post-info,
|
|
.posts-list footer {
|
|
font-size: $font-size-small;
|
|
}
|
|
|
|
@include breakpoint(laptop) {
|
|
nav {
|
|
font-size: $font-size-base;
|
|
}
|
|
}
|
|
|
|
.container {
|
|
line-height: $line-height-base; // TODO: fix homepage
|
|
}
|
|
|
|
.smallcaps {
|
|
font-variant: small-caps;
|
|
}
|