2021-03-09 15:40:30 +01:00
|
|
|
html {
|
|
|
|
font-family: mono;
|
|
|
|
font-size: 1rem;
|
|
|
|
color: #080;
|
|
|
|
background-color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
max-width: 76em;
|
|
|
|
margin: auto;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin: 0.4rem 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p, pre {
|
|
|
|
margin: 0 0 0.3rem;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3 {
|
|
|
|
color: #0b0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 { font-size: 2rem; }
|
|
|
|
h2 { font-size: 1.8rem; }
|
2021-03-10 11:13:33 +01:00
|
|
|
h3 { font-size: 1.2rem; }
|
2021-03-09 15:40:30 +01:00
|
|
|
|
|
|
|
blockquote {
|
|
|
|
background-color: #010;
|
|
|
|
border-left: 3px solid #444;
|
|
|
|
border-color: #0b0;
|
|
|
|
margin: 1rem -1rem 1rem calc(-1rem - 3px);
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
margin: -1.35rem;
|
|
|
|
color: #090;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
text-justify: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:before {
|
|
|
|
content: "A ";
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: #050;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.local:before {
|
|
|
|
content: "L ";
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.gemini:before {
|
|
|
|
content: "G ";
|
|
|
|
}
|
|
|
|
|
|
|
|
a.gopher:before {
|
|
|
|
content: "g ";
|
|
|
|
}
|
|
|
|
|
|
|
|
a.https:before {
|
|
|
|
content: "W ";
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.http:before {
|
|
|
|
content: "w ";
|
|
|
|
font-weight: lighter;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.mumble:before {
|
|
|
|
content: "U ";
|
|
|
|
}
|
|
|
|
|
|
|
|
a.mailto:before {
|
|
|
|
content: "M ";
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
scrollbar-color: #030 #010;
|
|
|
|
background-color: #010;
|
|
|
|
margin: 0 -1rem;
|
|
|
|
padding: 1rem;
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 1024px) {
|
|
|
|
a {
|
2021-03-09 20:59:08 +01:00
|
|
|
margin: -3rem;
|
2021-03-09 15:40:30 +01:00
|
|
|
}
|
|
|
|
body {
|
|
|
|
margin: 3rem;
|
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
font-size: 4rem;
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
font-size: 3.5rem;
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
font-size: 3rem;
|
|
|
|
}
|
|
|
|
p, pre, ul {
|
|
|
|
font-size: 2.6rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|