2022-04-01 20:11:04 +02:00
|
|
|
---
|
|
|
|
---
|
|
|
|
|
2022-12-09 20:02:28 +01:00
|
|
|
.centercol {
|
|
|
|
counter-reset: heading;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1:before {
|
|
|
|
content: counter(heading)" ";
|
|
|
|
counter-increment: heading;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
counter-reset: subheading;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2:before {
|
|
|
|
content: counter(heading)"." counter(subheading)" ";
|
|
|
|
counter-increment: subheading;
|
|
|
|
}
|
|
|
|
|
2022-12-09 20:37:13 +01:00
|
|
|
h2 {
|
|
|
|
counter-reset: subsubheading;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3:before {
|
|
|
|
content: counter(heading)"." counter(subheading)"." counter(subsubheading)" ";
|
|
|
|
counter-increment: subsubheading;
|
|
|
|
}
|
|
|
|
|
2022-12-09 20:02:28 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: CMUSerif;
|
|
|
|
src: url(/assets/css/fonts/cmunrm.ttf);
|
|
|
|
font-weight: heavy;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: CMUMono;
|
|
|
|
src: url(/assets/css/fonts/cmuntt.ttf);
|
|
|
|
}
|
2022-01-27 18:34:28 +01:00
|
|
|
|
|
|
|
body {
|
2022-12-09 20:02:28 +01:00
|
|
|
font-family: CMUSerif;
|
2022-01-27 18:34:28 +01:00
|
|
|
}
|
|
|
|
|
2022-01-27 19:44:11 +01:00
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
figcaption {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-10-08 15:13:30 +02:00
|
|
|
.tcenter {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-01-27 18:34:28 +01:00
|
|
|
pre code {
|
|
|
|
display: block;
|
2022-12-09 20:02:28 +01:00
|
|
|
padding: 10px;
|
|
|
|
border-top: 2px dotted gray;
|
|
|
|
border-bottom: 2px dotted gray;
|
2022-01-27 18:34:28 +01:00
|
|
|
}
|
|
|
|
|
2022-01-27 20:06:52 +01:00
|
|
|
table, th, td {
|
2022-12-09 20:02:28 +01:00
|
|
|
border: 1px solid black;
|
2022-01-27 20:06:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
th, td {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2022-01-27 18:34:28 +01:00
|
|
|
.bigger {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bit_bigger {
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:link {
|
2022-12-09 20:02:28 +01:00
|
|
|
color: blue;
|
2022-01-27 18:34:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
2022-12-09 20:02:28 +01:00
|
|
|
color: violet;
|
2022-01-27 18:34:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
2022-12-09 20:02:28 +01:00
|
|
|
color: cyan;
|
2022-01-27 18:34:28 +01:00
|
|
|
}
|
|
|
|
|
2022-12-09 20:02:28 +01:00
|
|
|
.sitetitle a, {
|
|
|
|
color: black
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,h2,h3,h4,h5,h6 {
|
|
|
|
text-align: center;
|
2022-01-27 18:34:28 +01:00
|
|
|
}
|
|
|
|
|
2022-01-27 20:36:06 +01:00
|
|
|
.right {
|
|
|
|
text-align: right;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_listing {
|
|
|
|
margin-top: 40px;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
|
2022-01-27 18:34:28 +01:00
|
|
|
nav ul {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav ul li {
|
|
|
|
display: inline;
|
|
|
|
margin-right: 1em;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav ul li a {
|
2022-12-09 20:02:28 +01:00
|
|
|
color: gray;
|
2022-01-27 18:34:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
2022-12-09 20:02:28 +01:00
|
|
|
color: gray;
|
2022-01-27 18:34:28 +01:00
|
|
|
border: 0;
|
|
|
|
border-bottom: 1px dashed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.centercol {
|
2022-01-27 20:09:23 +01:00
|
|
|
width: 50em;
|
|
|
|
max-width: 94vw;
|
2022-01-27 18:34:28 +01:00
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
}
|