2020-06-13 16:22:47 +00:00
|
|
|
:root {
|
|
|
|
--width: 740px;
|
|
|
|
--lighter: #fff;
|
|
|
|
--light: #fff;
|
|
|
|
--mild: #d8dee9;
|
|
|
|
--dark: #4c566a;
|
|
|
|
--darker: #434c5e;
|
|
|
|
--black: #3b4252;
|
|
|
|
--blacker: #2e3440;
|
|
|
|
--yellow: #f8c325;
|
|
|
|
--red: #ee4242;
|
|
|
|
--pink: #de59a8;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2020-09-27 19:55:34 +00:00
|
|
|
font: 15px Inter, sans-serif, "é";
|
2020-06-13 16:22:47 +00:00
|
|
|
line-height: 1.54;
|
|
|
|
margin: 0;
|
|
|
|
height: 100vh;
|
|
|
|
color: var(--dark);
|
|
|
|
background: var(--light);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
hyphens: auto;
|
|
|
|
font-weight: 400;
|
|
|
|
counter-reset: section;
|
|
|
|
}
|
|
|
|
|
|
|
|
main span.draft {
|
|
|
|
display: inline-block;
|
|
|
|
text-transform: uppercase;
|
|
|
|
background: var(--mild);
|
|
|
|
font-size: .8rem;
|
|
|
|
padding: .2em .5em;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-weight: 300;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3 { color: var(--darker) }
|
|
|
|
|
|
|
|
main > section {
|
|
|
|
counter-reset: subsection;
|
|
|
|
}
|
|
|
|
|
|
|
|
main ::selection {
|
|
|
|
background: var(--yellow);
|
|
|
|
color: var(--black);
|
|
|
|
}
|
|
|
|
|
|
|
|
a.footnote-ref sup::before { content: '[' }
|
|
|
|
a.footnote-ref sup::after { content: ']' }
|
|
|
|
|
|
|
|
.post h2::before {
|
|
|
|
counter-increment: section;
|
|
|
|
padding: 0 .5em 0 0;
|
|
|
|
content: counter(section);
|
|
|
|
opacity: .3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post section h3::before {
|
|
|
|
counter-increment: subsection;
|
|
|
|
padding: 0 .5em 0 0;
|
|
|
|
content: counter(section) "." counter(subsection);
|
|
|
|
opacity: .3;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2020-09-25 23:45:58 +00:00
|
|
|
color: var(--blacker);
|
|
|
|
font-weight: 500;
|
2020-06-13 16:22:47 +00:00
|
|
|
text-decoration: none
|
|
|
|
}
|
|
|
|
a:hover {text-decoration: underline}
|
|
|
|
hr {
|
|
|
|
border: none;
|
|
|
|
height: 2px;
|
|
|
|
background: var(--mild);
|
|
|
|
margin: 2.5em 0;
|
|
|
|
}
|
|
|
|
|
2020-09-25 23:45:58 +00:00
|
|
|
#pidx { list-style: none }
|
|
|
|
#pidx li {line-height: 1.6em}
|
|
|
|
#pidx li > span {
|
2020-07-12 02:18:11 +00:00
|
|
|
font: 13px monospace;
|
|
|
|
margin-right: 1em;
|
|
|
|
padding: .1em .5em;
|
|
|
|
border-radius: 3px;
|
|
|
|
background: #eaeaef;
|
|
|
|
}
|
|
|
|
|
2020-06-13 16:22:47 +00:00
|
|
|
details summary {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: .5em 1em;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {color: var(--darker)}
|
|
|
|
|
|
|
|
#hd {background: var(--dark) }
|
|
|
|
|
|
|
|
#hd > section {
|
|
|
|
max-width: var(--width);
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0 1em;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
line-height: 40px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#hd section > a {
|
|
|
|
margin:0 1em 0 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#hd nav a {
|
|
|
|
margin: 0 0 0 1.2rem;
|
|
|
|
color: var(--light);
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
#hd nav a:hover {border-bottom:2px solid var(--yellow)}
|
|
|
|
|
|
|
|
main, #ft {
|
|
|
|
padding: 2em 1em;
|
|
|
|
max-width: var(--width);
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
p > span.display {
|
|
|
|
display: block;
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
main {flex-grow: 1 }
|
|
|
|
|
|
|
|
h1, h2, h3, h4 { font-weight: 500 }
|
|
|
|
strong {font-weight:600}
|
|
|
|
|
|
|
|
main header h1 {margin: 0}
|
|
|
|
main header p {margin: 0}
|
|
|
|
main header {margin: 0 0 2em}
|
|
|
|
|
|
|
|
main ul li { padding: 0 0 0 0 }
|
|
|
|
main ul { padding: 0 0 0 1.5em }
|
|
|
|
|
|
|
|
main ul.projects {
|
|
|
|
padding: 0;
|
|
|
|
margin: 2.5em 0 0;
|
2020-07-12 02:18:11 +00:00
|
|
|
list-style: none;
|
2020-09-25 23:45:58 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
|
|
grid-gap: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
main ul.projects li {
|
|
|
|
background: #fafafb;
|
|
|
|
border-radius: 5px;
|
2020-06-13 16:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main ul.projects > li > a {
|
|
|
|
display: flex;
|
|
|
|
color: inherit;
|
2020-09-25 23:45:58 +00:00
|
|
|
padding: .5em 1em 1em;
|
2020-06-13 16:22:47 +00:00
|
|
|
transition: .2s background
|
|
|
|
}
|
|
|
|
|
2020-09-25 23:45:58 +00:00
|
|
|
ul.projects li a p { font-weight: 400 }
|
|
|
|
|
2020-06-13 16:22:47 +00:00
|
|
|
main ul.projects > li img {
|
|
|
|
width: 40px;
|
2020-09-25 23:45:58 +00:00
|
|
|
margin: .5em 1em 0 0;
|
2020-06-13 16:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header.project { display: flex }
|
|
|
|
header.project img {
|
|
|
|
width: 40px;
|
|
|
|
margin: 1em 2em 0 0;
|
|
|
|
}
|
|
|
|
header.project p {font-style: italic}
|
|
|
|
header.project ul {padding: 0}
|
|
|
|
header.project ul li {
|
|
|
|
font-size: .9em;
|
|
|
|
display: inline-block;
|
|
|
|
padding: .3em .5em;
|
|
|
|
font-family: monospace;
|
|
|
|
background: #eceff4;
|
|
|
|
border-radius: 3px;
|
2020-09-25 23:45:58 +00:00
|
|
|
margin: 0 1em 0 0;
|
2020-06-13 16:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main ul.projects > li a:hover { background: #f2f4f7; text-decoration: none }
|
2020-09-25 23:45:58 +00:00
|
|
|
main ul.projects > li h2 { margin: 0; font-size: 1.3em; color: var(--black) }
|
2020-06-13 16:22:47 +00:00
|
|
|
main ul.projects > li p { margin: 0 }
|
|
|
|
main ul.projects li ul { padding: .5em 0 }
|
|
|
|
main ul.projects li ul li {
|
|
|
|
display: inline-block;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 13px;
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 3px;
|
|
|
|
list-style: none;
|
|
|
|
line-height: 2em;
|
|
|
|
padding: 0 .5em;
|
|
|
|
}
|
|
|
|
main ul.projects li ul li+li { margin: 0 0 0 1em }
|
|
|
|
|
|
|
|
main blockquote {
|
|
|
|
font: 16px serif;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
main pre { padding: 0 0 0 1em }
|
2020-09-25 23:45:58 +00:00
|
|
|
main h2 { font-size: 1.6em; margin: 1em 0 .5em }
|
|
|
|
main h1 + h2 {margin-top: 0}
|
|
|
|
main h3 { font-size: 1.3em; margin: 1em 0 .5em }
|
2020-06-13 16:22:47 +00:00
|
|
|
|
|
|
|
#citations {margin: 2em 0 0}
|
|
|
|
dl {display:grid; gap: 1em; grid-template-columns: auto 1fr}
|
|
|
|
dt {text-align: right; font-weight: 500;}
|
|
|
|
.citation-label::before {content:'['}
|
|
|
|
.citation-label::after {content:']:'}
|
|
|
|
dd {margin:0}
|
|
|
|
dd p {margin:0}
|
|
|
|
|
|
|
|
code {font: .9em "Source Code Pro", monospace}
|
|
|
|
|
|
|
|
code, pre.sourceCode {
|
|
|
|
background: #eceff4;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0 .3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre > code {display: block}
|
|
|
|
|
|
|
|
#ft svg {
|
|
|
|
margin-left: .6em;
|
|
|
|
vertical-align: middle;
|
|
|
|
cursor: pointer;
|
|
|
|
opacity: .7;
|
|
|
|
}
|
|
|
|
#ft svg:hover {opacity:1}
|
|
|
|
|
|
|
|
pre.sourceCode {
|
|
|
|
margin:1em 0;
|
|
|
|
padding: .8em 0;
|
|
|
|
line-height: 1;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre.sourceCode > code {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
figure {
|
|
|
|
margin: 2em 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2020-09-25 23:45:58 +00:00
|
|
|
ol.pages {
|
|
|
|
padding: .5em 1em .5em 3em;
|
2020-07-12 02:18:11 +00:00
|
|
|
margin: 2em 0 2.5em;
|
|
|
|
}
|
2020-09-25 23:45:58 +00:00
|
|
|
ol.pages li::marker {
|
|
|
|
font-weight: 600;
|
|
|
|
color: var(--dark);
|
|
|
|
}
|
|
|
|
|
|
|
|
ol.pages li a {
|
2020-07-12 02:18:11 +00:00
|
|
|
display: block;
|
2020-09-25 23:45:58 +00:00
|
|
|
line-height: 2em;
|
2020-07-12 02:18:11 +00:00
|
|
|
padding: 0 1em;
|
|
|
|
}
|
|
|
|
|
2020-10-08 11:35:00 +00:00
|
|
|
section.visual {
|
|
|
|
display: grid;
|
|
|
|
grid-gap: 1em;
|
|
|
|
align-items: center;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
|
|
}
|
|
|
|
|
|
|
|
section.visual figure { margin: 0 }
|
2020-06-13 16:22:47 +00:00
|
|
|
figure img {
|
|
|
|
max-width: 100%;
|
2020-10-08 11:35:00 +00:00
|
|
|
height: auto;
|
|
|
|
/* aspect-ratio: attr(width) / attr(height); */
|
2020-06-13 16:22:47 +00:00
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
2020-09-25 23:45:58 +00:00
|
|
|
.admonition {
|
|
|
|
border-left: 3px solid var(--yellow);
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 1px 1em;
|
|
|
|
background: #f8c32520;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-weight: 300;
|
|
|
|
font-size: .9rem;
|
|
|
|
color: #67510f
|
|
|
|
}
|
|
|
|
|
|
|
|
.admonition p {
|
|
|
|
margin: .5em 0;
|
|
|
|
}
|
|
|
|
|
2020-06-13 16:22:47 +00:00
|
|
|
.al {color: #f00; font-weight: bold; }
|
|
|
|
.an {color: #60a0b0; font-weight: bold; font-style: italic; }
|
|
|
|
.at {color:#7d9029}
|
|
|
|
.bn {color:#40a070}
|
|
|
|
.cf {color:#007020; font-weight: bold; }
|
|
|
|
.ch {color:#4070a0}
|
|
|
|
.cn {color:#880000}
|
|
|
|
.co {color:#60a0b0; font-style: italic; }
|
|
|
|
.cv {color:#60a0b0; font-weight: bold; font-style: italic; }
|
|
|
|
.do {color:#ba2121; font-style: italic; }
|
|
|
|
.dt {color:#902000}
|
|
|
|
.dv {color:#40a070}
|
|
|
|
.er {color:#f00; font-weight: bold; }
|
|
|
|
.fl {color:#40a070; }
|
|
|
|
.fu {color:#06287e; }
|
|
|
|
.in {color:#60a0b0; font-weight: bold; font-style: italic; }
|
|
|
|
.kw {color:#007020; }
|
|
|
|
.op {color:#666}
|
|
|
|
.ot {color:#007020}
|
|
|
|
.pp {color:#bc7a00}
|
|
|
|
.sc {color:#4070a0}
|
|
|
|
.ss {color:#bb6688}
|
|
|
|
.st {color:#4070a0}
|
|
|
|
.va {color:#19177c}
|
|
|
|
.vs {color:#4070a0}
|
|
|
|
.wa {color:#60a0b0; font-weight: bold; font-style: italic; }
|
2020-09-25 23:45:58 +00:00
|
|
|
|
|
|
|
table.books {
|
|
|
|
border-collapse: collapse;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
table.books tr td {
|
|
|
|
padding: .1em 1em
|
|
|
|
}
|
|
|
|
table.books tr td:first-child {
|
|
|
|
font-style: italic;
|
|
|
|
text-align: right;
|
|
|
|
color: var(--blacker);
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
table.books tr td:nth-child(3),
|
|
|
|
table.books tr td:last-child {text-align: center;color: var(--yellow)}
|