blob: bee13efc37f0b82acf39b4abc4ed1b4e9d3008e0 [file] [log] [blame]
swissChilie392aeb2020-08-10 15:52:10 -07001html,
2body {
3 font-family: /*'Segoe UI', 'Roboto', 'San Francisco', 'IBM Plex Sans',*/ sans-serif;
4}
5
6body {
7 display: grid;
8 place-items: center center
9}
10
11.container {
12 width: 50vw;
13}
14
15.nav {
16 font-size: 1.5rem;
17 display: flex;
18 flex-direction: row;
19
20 .wide {
21 flex: 1;
22 font-weight: bold;
23 }
24}
25
26@media screen and (max-width: 960px) {
27 .container {
28 width: calc(100% - 2em);
29 margin: 1em;
30 }
31}