46 lines
589 B
SCSS
Vendored
46 lines
589 B
SCSS
Vendored
//fonts.scss
|
|
|
|
body {
|
|
text-rendering: optimizeLegibility;
|
|
font-feature-settings: "liga";
|
|
font-family: $font-stack-body;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
code {
|
|
font-family: $font-stack-code;
|
|
font-weight: 200;
|
|
}
|
|
|
|
#topheader h1 {
|
|
font-family: $font-stack-body;
|
|
}
|
|
|
|
h1 {
|
|
font-family: $font-stack-headers;
|
|
}
|
|
|
|
#topheader a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
nav {
|
|
font-feature-settings: "dlig";
|
|
}
|
|
|
|
article header h1 a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
article div a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
footer {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.emoji {
|
|
width: auto;
|
|
height: 1em;
|
|
}
|