Restore global stylesheet.

Mistakenly clobbered my work yesterday...

Commit
1d1b8113e117be008573a82c5596ac1e25799307
Author
Marius Peter <marius.peter@tutanota.com>
Author date
Committer
Marius Peter <marius.peter@tutanota.com>
Committer date
lib/static/styles.css
index 680a6b17..de2c3dbf 100644..100644
@@ -1,18 +1,29 @@
1 Added: @import url("fonts/Inter-4.1/web/inter.css");
2 Added:
1 3 body {
2 Removed: font-family: sans-serif;
4 Added: font-family: Inter, sans-serif;
5 Added: max-width: 50em;
6 Added: margin: auto;
7 Added: padding: 0 1em;
8 Added: background-color: #181818;
9 Added: color: white;
3 10 }
4 11
5 12 nav#top {
6 Removed: background-color: dimgray;
13 Added: background-color: black;
14 Added: border-radius: 0.25rem;
7 15 }
8 16
9 17 nav#top ul {
10 Removed: display: flex;
18 Added: display: flex;
19 Added: flex-wrap: wrap;
11 20 list-style-type: none;
21 Added: padding: 0;
12 22 }
13 23
14 24 nav#top ul li {
15 Removed: padding: 1em 0;
25 Added: padding: 0.5em 0;
26 Added: border-radius: 0.25rem;
16 27 }
17 28
18 29 nav#top ul li a {
@@ -22,6 +33,39 @@
22 33 }
23 34
24 35 nav#top ul li a:hover {
25 Removed: background-color: #555;
36 Added: background-color: white;
37 Added: color: black;
38 Added: }
39 Added:
40 Added: nav#top ul li#active {
41 Added: border-radius: 0.25rem;
42 Added: background-color: rgb(194, 79, 30);
43 Added: }
44 Added:
45 Added: nav#top ul li#active a:hover {
46 Added: border-radius: 0.25rem;
47 Added: background-color: rgb(132, 40, 0);
48 Added: color: white;
49 Added: }
50 Added:
51 Added: div#main ul {
52 Added: padding-left: 0;
53 Added: list-style: none;
54 Added: }
55 Added:
56 Added: div#main ul li {
57 Added: border: 1px solid #303030;
58 Added: }
59 Added:
60 Added: div#main ul li a {
61 Added: display: block;
62 Added: color: white;
63 Added: text-decoration: none;
64 Added: padding: 0.5em;
65 Added: }
66 Added:
67 Added: div#main a:hover {
68 Added: background-color: white;
69 Added: color: black;
26 70 text-decoration: revert;
27 71 }