2021-03-11 18:53:14 +01:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: auto 1fr auto;
|
2021-05-17 17:39:55 +02:00
|
|
|
|
|
|
|
font-family: open sans,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol;
|
|
|
|
font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
|
|
|
2021-03-11 18:53:14 +01:00
|
|
|
}
|
2021-05-17 17:39:55 +02:00
|
|
|
p {
|
2021-03-11 18:53:14 +01:00
|
|
|
text-align: justify;
|
2021-05-17 17:39:55 +02:00
|
|
|
hyphens: auto;
|
|
|
|
hyphenate-limit-lines: 2;
|
|
|
|
text-justify: inter-character;
|
|
|
|
word-break: break-word;
|
2021-03-11 18:53:14 +01:00
|
|
|
}
|
|
|
|
nav#TableOfContents ul {
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
2021-04-01 00:01:51 +02:00
|
|
|
}
|
|
|
|
nav#TableOfContents ul li ul {
|
|
|
|
padding-left:1em;
|
|
|
|
}
|
|
|
|
nav#TableOfContents ul li ul li ul {
|
|
|
|
padding-left:2em;
|
|
|
|
}
|
|
|
|
nav#TableOfContents ul li ul li ul li ul {
|
|
|
|
padding-left:3em;
|
2021-03-11 18:53:14 +01:00
|
|
|
}
|
2021-05-17 17:39:55 +02:00
|
|
|
h1, h2, h3, h4, h5 {
|
2021-05-18 18:06:46 +02:00
|
|
|
font-family: open, serif;
|
2021-05-17 17:39:55 +02:00
|
|
|
}
|
2021-03-11 18:53:14 +01:00
|
|
|
@media only screen and (min-width: 60rem) {
|
|
|
|
body {
|
|
|
|
max-width:60rem;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
}
|