2021-03-05 09:44:42 +00:00
|
|
|
|
/* Fonts */
|
|
|
|
|
:root {
|
|
|
|
|
--font-monospace: "Fira Mono", monospace;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
font-family: var(--font-monospace);
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
line-height: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Headings */
|
|
|
|
|
h1,
|
|
|
|
|
h2,
|
|
|
|
|
h3,
|
|
|
|
|
h4,
|
|
|
|
|
h5,
|
|
|
|
|
h6 {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
margin: 1.5rem 0 0 0;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1+h2,
|
|
|
|
|
h1+h3,
|
|
|
|
|
h1+h4,
|
|
|
|
|
h1+h5,
|
|
|
|
|
h1+h6,
|
|
|
|
|
h2+h3,
|
|
|
|
|
h2+h4,
|
|
|
|
|
h2+h5,
|
|
|
|
|
h2+h6,
|
|
|
|
|
h3+h4,
|
|
|
|
|
h3+h5,
|
|
|
|
|
h3+h6,
|
|
|
|
|
h4+h5,
|
|
|
|
|
h4+h6,
|
|
|
|
|
h5+h6 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1:before { content: "# "; }
|
|
|
|
|
h2:before { content: "## "; }
|
|
|
|
|
h3:before { content: "### "; }
|
|
|
|
|
h4:before { content: "#### "; }
|
|
|
|
|
h5:before { content: "##### "; }
|
|
|
|
|
h6:before { content: "###### "; }
|
|
|
|
|
|
|
|
|
|
h1:before,
|
|
|
|
|
h2:before,
|
|
|
|
|
h3:before,
|
|
|
|
|
h4:before,
|
|
|
|
|
h5:before,
|
|
|
|
|
h6:before {
|
|
|
|
|
color: var(--bright-bg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1:first-child {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Paragraphs */
|
|
|
|
|
p {
|
|
|
|
|
margin: 0 0 1.5rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Links */
|
|
|
|
|
|
|
|
|
|
a:link, a:visited {
|
|
|
|
|
color: var(--fg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover, a:active {
|
|
|
|
|
color: var(--bright-fg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Lists */
|
|
|
|
|
ul {
|
2021-08-25 18:42:42 +00:00
|
|
|
|
margin: 0 0 1.5rem 0;
|
2021-03-05 09:44:42 +00:00
|
|
|
|
padding-left: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ol {
|
2021-08-25 18:42:42 +00:00
|
|
|
|
margin: 0 0 1.5rem 0;
|
2021-03-05 09:44:42 +00:00
|
|
|
|
padding-left: 1.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul ul,
|
|
|
|
|
ul ol,
|
|
|
|
|
ol ul,
|
|
|
|
|
ol ol {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul li::marker {
|
2021-08-01 00:52:41 +00:00
|
|
|
|
content: '∗\00A0';
|
2021-03-05 09:44:42 +00:00
|
|
|
|
color: var(--bright-bg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ol li::marker {
|
|
|
|
|
color: var(--bright-bg);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-24 12:26:18 +00:00
|
|
|
|
dt {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dd {
|
|
|
|
|
margin: 0 0 0 1.5rem;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dd + dt {
|
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dl {
|
|
|
|
|
margin: 0 0 1.5rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-05 09:44:42 +00:00
|
|
|
|
/* Blockquotes */
|
|
|
|
|
blockquote {
|
|
|
|
|
position: relative;
|
2021-08-09 16:31:21 +00:00
|
|
|
|
margin: 0 0 1.5rem 1.5rem;
|
2021-03-05 09:44:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
blockquote::before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -1.5rem;
|
|
|
|
|
content: ">";
|
|
|
|
|
color: var(--bright-bg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.twitter-tweet::before {
|
|
|
|
|
content: "\f099";
|
|
|
|
|
font-family: "Font Awesome 5 Brands";
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Code */
|
|
|
|
|
pre,
|
|
|
|
|
code,
|
2021-08-24 12:26:18 +00:00
|
|
|
|
kbd,
|
|
|
|
|
samp {
|
2021-08-01 01:18:25 +00:00
|
|
|
|
background: var(--dark-bg) !important;
|
2021-03-05 09:44:42 +00:00
|
|
|
|
font-family: var(--font-monospace);
|
|
|
|
|
color: var(--bright-bg);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-01 01:34:03 +00:00
|
|
|
|
pre {
|
2021-08-24 12:26:18 +00:00
|
|
|
|
overflow-x: auto;
|
2021-08-09 14:09:48 +00:00
|
|
|
|
padding: 1.5rem;
|
2021-08-01 01:34:03 +00:00
|
|
|
|
margin: 0 0 1.5rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-05 09:44:42 +00:00
|
|
|
|
/* Emphasis */
|
|
|
|
|
b,
|
|
|
|
|
strong {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Highlighting */
|
|
|
|
|
::selection,
|
|
|
|
|
mark {
|
|
|
|
|
background-color: var(--yellow);
|
|
|
|
|
color: var(--bg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Other typographic elements */
|
|
|
|
|
hr {
|
|
|
|
|
border: 0;
|
2021-08-25 18:16:36 +00:00
|
|
|
|
margin-bottom: 1.5rem;
|
2021-03-05 09:44:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hr:after {
|
|
|
|
|
content: '---';
|
|
|
|
|
color: var(--bright-bg);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-24 12:26:18 +00:00
|
|
|
|
|
2021-08-03 14:41:42 +00:00
|
|
|
|
/* Prevent super/sub from affecting line height */
|
|
|
|
|
sup, sub {
|
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -0.25rem;
|
|
|
|
|
font-size: unset;
|
|
|
|
|
}
|
|
|
|
|
sub {
|
|
|
|
|
top: 0.25rem;
|
|
|
|
|
}
|
2021-08-09 14:24:55 +00:00
|
|
|
|
|
|
|
|
|
/* Tables */
|
|
|
|
|
table {
|
|
|
|
|
border-spacing: 0;
|
|
|
|
|
margin: 0 0 1.5rem 0;
|
|
|
|
|
overflow-wrap: anywhere;
|
|
|
|
|
}
|
|
|
|
|
th, td {
|
|
|
|
|
padding: 0 .75rem;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
}
|
|
|
|
|
th:first-child, td:first-child {
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
th {
|
|
|
|
|
text-align: inherit;
|
|
|
|
|
}
|