63 lines
867 B
SCSS
63 lines
867 B
SCSS
///////////////////
|
|
// //
|
|
// FONTS //
|
|
// //
|
|
///////////////////
|
|
|
|
html,
|
|
body {
|
|
|
|
@include breakpoint(desktop) {
|
|
font-size: $font-size-base;
|
|
}
|
|
|
|
@include breakpoint(laptop) {
|
|
font-size: $font-size-base;
|
|
}
|
|
|
|
@include breakpoint(tablet) {
|
|
font-size: $font-size-medium;
|
|
}
|
|
|
|
@include breakpoint(mobile) {
|
|
font-size: $font-size-medium;
|
|
}
|
|
|
|
@include breakpoint(small-mobile) {
|
|
font-size: $font-size-normal;
|
|
}
|
|
|
|
line-height: $line-height-base;
|
|
font-family: $font-family;
|
|
}
|
|
|
|
code,
|
|
figure figcaption,
|
|
.footnotes,
|
|
.footnote-ref,
|
|
.list-footer,
|
|
.main-footer,
|
|
nav,
|
|
.post-info,
|
|
.posts-list footer {
|
|
font-size: $font-size-small;
|
|
}
|
|
|
|
blockquote {
|
|
font-style: italic;
|
|
}
|
|
|
|
.smallcaps {
|
|
font-variant: small-caps;
|
|
}
|
|
|
|
.home-lists {
|
|
dt {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
#licence {
|
|
font-variant: small-caps;
|
|
}
|