81 lines
930 B
SCSS
81 lines
930 B
SCSS
$footer-border: 1px dotted $color-light-border;
|
|
|
|
footer {
|
|
border-top: $footer-border;
|
|
padding: 10pt 0;
|
|
font-size: $text-small;
|
|
font-family: $iosevka;
|
|
line-height: 1.5;
|
|
margin-top: 20pt;
|
|
}
|
|
|
|
body {
|
|
font-family: $inter;
|
|
background-color: $color-bg;
|
|
color: $color-copy;
|
|
}
|
|
|
|
* {
|
|
line-height: 1.25;
|
|
}
|
|
|
|
p,
|
|
li {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4 {
|
|
font-family: $iosevka;
|
|
}
|
|
|
|
main {
|
|
max-width: $screen-width;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.content {
|
|
padding: 0 10pt;
|
|
}
|
|
|
|
a,
|
|
a:visited {
|
|
color: #e599e0;
|
|
}
|
|
|
|
hr {
|
|
border: 0;
|
|
border-top: 1px solid $color-light-border;
|
|
background: transparent;
|
|
}
|
|
|
|
.section-list {
|
|
display: flex;
|
|
gap: 10pt;
|
|
font-family: $iosevka;
|
|
margin-top: 10pt;
|
|
|
|
&::before {
|
|
content: "[";
|
|
}
|
|
&::after {
|
|
content: "]";
|
|
}
|
|
|
|
a {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
a.summary {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.lastmod {
|
|
font-weight: 400;
|
|
font-size: 10pt;
|
|
}
|