escot/content/assets/theme.css

218 lines
3.8 KiB
CSS
Executable File

:root {
--large-width: 1080px;
--small-width: 600px;
--mono-font: mononoki;
}
@font-face {
font-family: mononoki;
src: url("/assets/mononoki-Regular.woff2") format("woff2");
}
@font-face {
font-family: Asanb;
src: url("/assets/Asanb.woff2") format("woff2");
}
body {
font-family: sans-serif;
font-size: 14px;
max-width: var(--large-width);
margin: 0 auto;
padding: 2em;
display: grid;
box-sizing: border-box;
justify-content: center;
line-height: 1.54;
min-height: 100vh;
background: #dce0df;
grid-template: "a m m" 1fr
". f f" / 180px 1fr 180px;
gap: 2em;
}
h1, h2, h3, nav a {
font-family: var(--mono-font), monospace;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.1rem;
}
nav {
padding: .4em 0 0;
}
nav ul {
top: 2em;
position: sticky;
list-style: none;
margin: 0;
padding: 0
}
nav a {
display: block;
float: right;
clear: right;
text-decoration: none;
opacity: .7;
}
nav a:hover {opacity: 1}
a {
color: inherit;
/* font-weight: 400; */
/* text-decoration-line: overline; */
text-decoration-thickness: 1px;
text-decoration-color: rgba(0, 0, 0, 0.4);
transition: .5s text-decoration-color;
}
a:hover {
text-decoration-color: rgba(0, 0, 0, 0.8);
}
ul {
padding-left: 1em;
}
main *+h2 {margin-top: 2rem}
main {
margin-bottom: 2rem;
grid-area: m;
}
main > * {
max-width: var(--small-width);
}
main code {
background: #fff;
padding: .1em .5em;
border-radius: 3px;
}
main pre code { padding: 0; }
main pre, main details, main summary, main div.sourceCode, pre.Agda {
max-width: inherit;
width: 100%;
box-sizing: border-box;
clear: both;
}
main > ol.footnotes {
margin: 0;
padding: 0;
float: right;
font-size: .9em;
opacity: .8;
}
main > ol.footnotes li p:first-child { margin-top: 0; }
main > ol.footnotes li p:last-child { margin-bottom: 0; }
main h2:first-child { margin-top: 0 }
/* aside info */
#contact + table {font-family: var(--mono-font), monospace}
#contact + table td:first-child {
padding-right: 1em;
text-transform: uppercase;
font-weight: 500;
}
/* pubs list */
.pubs ul {
list-style: none;
margin: 0;
padding: 0 0 0 2em;
position: relative;
}
.pubs ul::before {
content: attr(data-year);
position: absolute;
font-family: var(--mono-font), monospace;
writing-mode: vertical-rl;
text-orientation: upright;
left: 0;
top: .35em;
line-height: .8em;
opacity: .5;
}
.pubs p { margin: 0; }
.pubs li+li {margin: 1em 0 0}
.pubs .title a {
text-decoration: none;
color: #000;
font-style: italic;
font-weight: 500;
}
.pubs .buttons {
margin-top: .5em;
}
.pubs .buttons a {
display: inline-block;
text-decoration: none;
border: 1px solid #777;
font-size: .8em;
padding: 0 .5em;
border-radius: 4px;
transition: .5s border-color;
}
.pubs .buttons a:hover {
border-color: #555;
}
.pubs .buttons a+a {
margin: 0 0 0 .5em;
}
footer {grid-area: f}
pre {
white-space: pre-wrap;
background: #fff;
border-radius: 4px;
padding: .5em 1em;
}
details summary {
border: 1px solid #000;
border-radius: 4px;
padding: .5em 1em;
cursor: pointer;
}
details[open] {
border-bottom: 1px solid #000;
border-radius: 4px;
}
code {font-family: var(--mono-font), Asanb, monospace}
pre.Agda {
font-family: var(--mono-font), Asanb, monospace;
}
pre.Agda a { text-decoration: none; }
.Keyword { color: #777 }
.Symbol { color: #999 }
.Primitive { color: #444 }
.InductiveConstructor { color: #353535 }
.Comment { color: #666 }
.Module {
text-decoration: underline rgba(0, 0, 0, 0.5) !important;
}
.Hole {
background: #88c0d0;
border-radius: 4px;
}
@media (max-width: 840px) {
body {
grid-template: "a" "m" 1fr "f";
}
nav {padding: 0}
nav ul { position: static; }
main > ol.footnotes + * { clear: both; }
}