acatalepsie/content/assets/theme.css

461 lines
8.7 KiB
CSS
Raw Normal View History

2020-06-13 16:22:47 +00:00
:root {
--width: 740px;
--lighter: #fff;
--light: #fff;
--mild: #d8dee9;
2021-03-17 22:32:59 +00:00
/* --dark: #4c566a; */
2020-06-13 16:22:47 +00:00
--darker: #434c5e;
--black: #3b4252;
--blacker: #2e3440;
--yellow: #f8c325;
--red: #ee4242;
--pink: #de59a8;
2021-03-17 22:32:59 +00:00
--background: #eee;
--text-strong: #434c5e;
--text: #4c566a;
--dark: #d8dee9;
2021-03-18 14:37:29 +00:00
--darker: #d8dee9;
2021-03-17 22:32:59 +00:00
}
@media (prefers-color-scheme: dark) {
:root {
--background: #3b4252;
--dark: #3b4252;
2021-03-18 14:37:29 +00:00
--darker: #2e3440;
2021-03-17 22:32:59 +00:00
--text-strong: #fff;
--text: #d8dee9;
--text-faded: #9ea6b5;
}
2020-06-13 16:22:47 +00:00
}
2021-03-17 22:32:59 +00:00
2020-06-13 16:22:47 +00:00
body {
2021-03-17 22:32:59 +00:00
font: 16px "Inter UI", sans-serif;
2020-06-13 16:22:47 +00:00
line-height: 1.54;
margin: 0;
height: 100vh;
2021-03-17 22:32:59 +00:00
color: var(--text);
background: var(--background);
2020-06-13 16:22:47 +00:00
display: flex;
flex-direction: column;
hyphens: auto;
font-weight: 400;
counter-reset: section;
}
2021-03-17 22:32:59 +00:00
@media (prefers-color-scheme: dark) {
body {font-weight: 300}
}
2020-06-13 16:22:47 +00:00
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;
}
2021-03-17 22:32:59 +00:00
h1, h2, h3 { color: var(--darkr) }
2020-06-13 16:22:47 +00:00
2021-03-17 22:32:59 +00:00
main > section { counter-reset: subsection }
main :first-child { margin-top: 0 }
2020-06-13 16:22:47 +00:00
main ::selection {
background: var(--yellow);
color: var(--black);
2021-03-17 22:32:59 +00:00
font-weight: 400;
2020-06-13 16:22:47 +00:00
}
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 {
2021-03-17 22:32:59 +00:00
color: inherit;
2021-03-18 16:24:18 +00:00
font-weight: 400;
2021-04-05 12:59:41 +00:00
text-decoration: none;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2020-06-13 16:22:47 +00:00
}
2021-03-17 22:32:59 +00:00
2021-04-05 12:59:41 +00:00
/* a:hover {text-decoration: underline} */
2021-03-17 22:32:59 +00:00
2020-06-13 16:22:47 +00:00
hr {
border: none;
height: 2px;
2021-03-18 14:37:29 +00:00
background: var(--darker);
2020-06-13 16:22:47 +00:00
margin: 2.5em 0;
}
2021-03-18 14:37:29 +00:00
#pidx {
list-style: none;
padding: 0;
margin: 2em 0 0;
}
2020-09-25 23:45:58 +00:00
#pidx li {line-height: 1.6em}
#pidx li > span {
2021-03-17 22:32:59 +00:00
font-family: monospace;
font-size: 14px;
2020-07-12 02:18:11 +00:00
margin-right: 1em;
2021-03-17 22:32:59 +00:00
opacity: 0.7;
2020-07-12 02:18:11 +00:00
}
2020-06-13 16:22:47 +00:00
details summary {
cursor: pointer;
padding: .5em 1em;
border-radius: 3px;
}
2021-03-17 22:32:59 +00:00
strong {
color: var(--text-strong);
font-weight: 500;
}
2020-06-13 16:22:47 +00:00
2021-03-17 22:32:59 +00:00
#hd {
margin: 1em 0 0;
}
2020-06-13 16:22:47 +00:00
2021-04-05 12:59:41 +00:00
#hd a {box-shadow: none}
2020-06-13 16:22:47 +00:00
#hd > section {
max-width: var(--width);
margin: 0 auto;
padding: 0 1em;
box-sizing: border-box;
display: flex;
width: 100%;
}
2021-03-18 14:37:29 +00:00
#hd svg path {
stroke: var(--text) !important
}
2020-06-13 16:22:47 +00:00
#hd section > a {
2021-03-18 16:24:18 +00:00
margin: 0 1em 0 0;
2020-06-13 16:22:47 +00:00
display: flex;
align-items: center;
}
#hd nav a {
margin: 0 0 0 1.2rem;
text-decoration: none;
text-transform: uppercase;
font-weight: 500;
}
#hd nav a:hover {border-bottom:2px solid var(--yellow)}
main, #ft, .breadcrumb {
2020-06-13 16:22:47 +00:00
padding: 2em 1em;
max-width: var(--width);
box-sizing: border-box;
width: 100%;
2021-03-17 22:32:59 +00:00
margin: 0em auto;
}
2021-03-18 16:24:18 +00:00
#ft {
padding-bottom: 1.5em;
}
2021-03-17 22:32:59 +00:00
main {
padding: 0 1em;
margin: 2em auto;
2020-06-13 16:22:47 +00:00
}
p > span.display {
display: block;
overflow-x: auto;
}
main {flex-grow: 1 }
h1, h2, h3, h4 { font-weight: 500 }
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 }
2021-03-17 22:32:59 +00:00
main ul.projects a { text-decoration: none }
2020-06-13 16:22:47 +00:00
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));
2021-03-17 22:32:59 +00:00
grid-gap: 1.5em;
2020-09-25 23:45:58 +00:00
}
main ul.projects li {
border-radius: 5px;
2020-06-13 16:22:47 +00:00
}
main ul.projects > li > a {
display: flex;
color: inherit;
transition: .2s background
}
2021-03-17 22:32:59 +00:00
main ul.projects li a p {
font-weight: 300;
opacity: 0.7;
font-size: .9em;
margin: 0;
}
2020-09-25 23:45:58 +00:00
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
}
2021-03-17 22:32:59 +00:00
main ul.projects > li h2 { margin: 0; font-size: 1em }
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;
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 blockquote {
2021-04-05 12:59:41 +00:00
border-left: 2px solid var(--darker);
margin: 1em 0;
padding: 0 1em;
opacity: 0.8;
line-height: 1.5;
2020-06-13 16:22:47 +00:00
font-style: italic;
}
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}
2021-03-18 16:24:18 +00:00
code, pre.Agda {font: 1em "Source Code Pro", monospace}
pre.Agda a {font-weight: inherit; text-decoration: none}
2021-03-18 16:24:18 +00:00
pre.Agda a[href]:hover { box-shadow: 0 2px 0 var(--yellow) }
2020-06-13 16:22:47 +00:00
code {
display: inline-block;
padding: 0 .3em;
}
pre > code {display: block}
2021-03-18 16:24:18 +00:00
pre {
margin:1.5em 0;
2020-06-13 16:22:47 +00:00
padding: .8em 0;
line-height: 1;
overflow: auto;
}
pre.Agda {
2021-03-18 16:24:18 +00:00
margin: 1.5em 0;
padding: .8em 1em;
overflow: auto;
}
2021-03-18 16:24:18 +00:00
pre > code {
2020-06-13 16:22:47 +00:00
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));
}
2021-03-18 14:37:29 +00:00
section.visual:not(.tiny) {
grid-template-rows: masonry;
}
section.visual.tiny {
align-items: stretch;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
2020-10-08 11:35:00 +00:00
section.visual figure { margin: 0 }
2021-03-17 22:32:59 +00:00
section.visual.tiny figure { margin: 0; overflow: hidden; }
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;
}
section.visual.tiny img {object-fit: cover}
p.right {text-align: right}
section.visual.tiny figure img { height: 100% }
2020-06-13 16:22:47 +00:00
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, .Agda .InductiveConstructor {color:#880000}
.co, .Agda .Comment {color:#60a0b0; font-style: italic; }
2020-06-13 16:22:47 +00:00
.cv {color:#60a0b0; font-weight: bold; font-style: italic; }
.do {color:#ba2121; font-style: italic; }
.dt, .Agda .PrimitiveType
, .Agda .Datatype {color:#902000}
2020-06-13 16:22:47 +00:00
.dv {color:#40a070}
.er {color:#f00; font-weight: bold; }
.fl {color:#40a070; }
.fu, .Agda .Function {color:#06287e; }
2020-06-13 16:22:47 +00:00
.in {color:#60a0b0; font-weight: bold; font-style: italic; }
.kw, .Agda .Keyword {color:#007020; }
2020-06-13 16:22:47 +00:00
.op {color:#666}
.ot, .Agda .Symbol {color:#007020}
2020-06-13 16:22:47 +00:00
.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
2021-03-18 16:24:18 +00:00
@media (prefers-color-scheme: dark) {
.al {color: #DC322F; 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, .Agda .InductiveConstructor, .Field {color:#2AA198}
.co, .Agda .Comment {color:#60a0b0; font-style: italic; }
.cv {color:#60a0b0; font-weight: bold; font-style: italic; }
.do {color:#ba2121; font-style: italic; }
.dt, .Agda .PrimitiveType
, .Agda .Datatype {color:#B58900}
.dv {color:#40a070}
.er {color:#f00; font-weight: bold; }
.fl {color:#40a070; }
.fu, .Agda .Function {color:#268BD2; }
.in {color:#60a0b0; font-weight: bold; font-style: italic; }
.kw, .Agda .Keyword {color: #859900; }
.op {color:#666}
.ot, .Agda .Symbol {color:#93A1A1}
.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; }
div.sourceCode, pre.Agda, code, pre {
background: #2f3542;
}
}
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;
2021-03-17 22:32:59 +00:00
color: var(--text-faded);
2020-09-25 23:45:58 +00:00
font-weight: 500;
}
2021-03-17 22:32:59 +00:00
table.books tr td:nth-child(3),
table.books tr td:last-child {text-align: center;color: var(--yellow)}
.breadcrumb {
padding-bottom: 0;
2021-03-18 16:24:18 +00:00
padding-top: 0;
margin-top: 2em;
}
.breadcrumb .sep {
color: #999;
padding: 0 .5em;
cursor: default;
}
2021-03-17 22:32:59 +00:00
main > header h1 {line-height: 1.3 }
main > header time {
opacity: 0.6;
}