www/assets/base.css

50 lines
904 B
CSS
Raw Normal View History

* {
box-sizing: border-box;
2021-12-10 12:16:28 +01:00
scrollbar-gutter: stable both-edges;
}
body {
display: grid;
grid-template-rows: auto 1fr auto;
2021-05-17 17:39:55 +02:00
font-family: BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
2021-05-17 17:39:55 +02:00
font-feature-settings: "kern" 1;
font-kerning: normal;
}
#main {
padding-left:1em;
padding-right:1em;
}
2021-05-17 17:39:55 +02:00
p {
text-align: justify;
2021-05-17 17:39:55 +02:00
hyphens: auto;
text-justify: inter-character;
overflow-wrap: anywhere;
}
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-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
}
@media only screen and (min-width: 60rem) {
body {
max-width:60rem;
margin-left: auto;
margin-right: auto;
}
}
2021-09-12 14:03:45 +02:00
.fullwidth {
width: 100%;
}