2021-07-28 18:23:57 +02:00
|
|
|
* {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
border: none;
|
|
|
|
border-collapse: collapse;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2021-08-24 11:35:19 +02:00
|
|
|
body {
|
2021-07-18 22:12:41 +02:00
|
|
|
font-family: monospace;
|
2021-08-24 11:35:19 +02:00
|
|
|
max-width: 100vw;
|
2021-07-18 22:12:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
header, footer {
|
|
|
|
text-align: center;
|
2021-08-25 18:54:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
2021-08-25 19:11:51 +02:00
|
|
|
padding-bottom: 1rem;
|
2021-08-25 18:54:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
2021-08-25 19:11:51 +02:00
|
|
|
padding-top: 1rem;
|
2021-07-18 22:12:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.globalnav{
|
|
|
|
display: flex;
|
2021-07-28 18:23:57 +02:00
|
|
|
flex-wrap: wrap;
|
2021-07-18 22:12:41 +02:00
|
|
|
flex-direction: row;
|
2021-07-28 18:23:57 +02:00
|
|
|
text-align: center;
|
2021-09-27 13:37:29 +02:00
|
|
|
gap: max(1px, 0.1rem);
|
2021-07-18 22:12:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.globalnav-element {
|
2021-07-28 18:23:57 +02:00
|
|
|
display: block;
|
2021-07-28 18:41:32 +02:00
|
|
|
background-color: #ddd;
|
2021-07-28 18:27:09 +02:00
|
|
|
text-align: center;
|
2021-07-28 18:23:57 +02:00
|
|
|
flex-basis: 0;
|
2021-07-18 22:12:41 +02:00
|
|
|
flex-grow: 1;
|
2021-07-28 18:23:57 +02:00
|
|
|
min-width: fit-content;
|
|
|
|
min-height: fit-content;
|
2021-08-17 09:59:26 +02:00
|
|
|
padding: 0.5rem 0;
|
2021-07-18 22:12:41 +02:00
|
|
|
}
|
|
|
|
|
2021-09-10 21:07:31 +02:00
|
|
|
/* Code Blocks */
|
|
|
|
pre {
|
|
|
|
padding: 0.75rem;
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2021-09-27 10:29:20 +02:00
|
|
|
width: 100%;
|
2021-09-10 21:07:31 +02:00
|
|
|
max-width: max-content;
|
2021-09-27 10:29:20 +02:00
|
|
|
overflow-y: auto;
|
|
|
|
line-break: strict;
|
2021-09-10 21:07:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Inline keywords/code */
|
2021-07-19 00:06:57 +02:00
|
|
|
code {
|
|
|
|
display: inline-block;
|
|
|
|
color: green;
|
2021-09-10 21:07:31 +02:00
|
|
|
line-break: strict;
|
2021-07-18 22:12:41 +02:00
|
|
|
}
|
|
|
|
|
2021-07-28 18:23:57 +02:00
|
|
|
p {
|
2021-08-17 09:59:26 +02:00
|
|
|
padding: 0.5rem;
|
2021-07-28 18:23:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
article {
|
2021-08-17 09:59:26 +02:00
|
|
|
padding: 0.5rem;
|
2021-07-28 18:23:57 +02:00
|
|
|
}
|
|
|
|
|
2021-09-10 21:07:31 +02:00
|
|
|
h2 {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
2021-08-17 11:07:05 +02:00
|
|
|
#mainarticle {
|
2021-08-24 11:48:32 +02:00
|
|
|
width: max-content;
|
2021-08-24 11:35:19 +02:00
|
|
|
max-width: min(80rem, 100%);
|
2021-08-17 11:07:05 +02:00
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2021-07-28 18:23:57 +02:00
|
|
|
li, ul, ol {
|
2021-08-17 09:59:26 +02:00
|
|
|
margin: 1rem;
|
2021-07-28 18:23:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border-style: inset;
|
|
|
|
border-width: 1px;
|
2021-08-17 09:59:26 +02:00
|
|
|
margin: 0.5rem 0;
|
2021-07-28 18:23:57 +02:00
|
|
|
}
|
|
|
|
|
2021-08-17 09:58:37 +02:00
|
|
|
table {
|
2021-09-27 10:29:20 +02:00
|
|
|
display: block;
|
2021-08-17 09:58:37 +02:00
|
|
|
border-collapse: collapse;
|
2021-08-17 11:07:05 +02:00
|
|
|
margin: 1rem auto;
|
2021-09-27 13:26:42 +02:00
|
|
|
width: max-content;
|
2021-08-24 11:35:19 +02:00
|
|
|
max-width: 100%;
|
2021-09-27 10:29:20 +02:00
|
|
|
overflow-y: auto;
|
2021-08-17 09:58:37 +02:00
|
|
|
}
|
|
|
|
|
2021-08-17 10:10:21 +02:00
|
|
|
td, th {
|
2021-08-17 09:58:37 +02:00
|
|
|
border-style: solid;
|
|
|
|
border-color: black;
|
|
|
|
border-collapse: collapse;
|
2021-08-17 11:07:05 +02:00
|
|
|
padding: 0.5rem;
|
2021-08-24 11:35:19 +02:00
|
|
|
}
|
|
|
|
|
2021-09-27 10:29:20 +02:00
|
|
|
@media (max-width: 20rem), (max-width: 300px) {
|
2021-08-24 11:35:19 +02:00
|
|
|
* {
|
2021-09-27 10:29:20 +02:00
|
|
|
word-wrap: break-word;
|
2021-08-24 11:35:19 +02:00
|
|
|
}
|
2021-08-17 11:01:16 +02:00
|
|
|
}
|
|
|
|
|
2021-07-19 00:06:57 +02:00
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
html {
|
2021-09-27 13:39:14 +02:00
|
|
|
background-color: #111;
|
2021-07-19 00:06:57 +02:00
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.globalnav-element {
|
|
|
|
background-color: #222;
|
|
|
|
}
|
2021-07-18 22:12:41 +02:00
|
|
|
|
2021-07-19 00:06:57 +02:00
|
|
|
code {
|
|
|
|
color: lawngreen;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: lightskyblue;
|
|
|
|
}
|
2021-08-17 09:58:37 +02:00
|
|
|
|
2021-08-17 10:10:21 +02:00
|
|
|
table, td, th {
|
2021-08-17 09:58:37 +02:00
|
|
|
border-color: white;
|
|
|
|
}
|
2021-07-18 22:12:41 +02:00
|
|
|
}
|
|
|
|
|
2021-07-19 00:06:57 +02:00
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
html {
|
|
|
|
background-color: white;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.globalnav-element {
|
2021-07-28 18:41:32 +02:00
|
|
|
background-color: #ddd;
|
2021-07-19 00:06:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
color: green;
|
|
|
|
}
|
2021-08-17 09:58:37 +02:00
|
|
|
|
2021-08-17 10:10:21 +02:00
|
|
|
table, td, th {
|
2021-08-17 09:58:37 +02:00
|
|
|
border-color: black;
|
|
|
|
}
|
2021-07-18 22:12:41 +02:00
|
|
|
}
|