Initial release
[websub-hub] / static / theme.css
1 * {}
2 html {
3 height: 100vh;
4 }
5 body {
6 background-color: #fff;
7 font-family: Helvetica, Verdana, sans-serif;
8 margin: 1em;
9 min-height: 100vh;
10 display: flex;
11 flex-direction: column;
12 }
13 header {}
14 header nav ol {
15 list-style-type: none;
16 margin: 0;
17 padding: 0;
18 border: 1px solid #000;
19 }
20 header nav ol li a {
21 display: block;
22 width: 10em;
23 text-align: center;
24 }
25 h1 {
26 margin-top: 1.3em;
27 margin-bottom: 2.5em;
28 text-align: center;
29 }
30 h2 {
31 background-color: #ddd;
32 }
33 main {
34 flex-grow: 1;
35 }
36 section {}
37 .about {}
38 .usage {}
39 .topics {}
40 .subscriptions {}
41 .external {
42 background-image: url("external-link.svg");
43 background-position: right center;
44 background-repeat: no-repeat;
45 padding-right: 13px;
46 }
47 table {
48 border: 0;
49 width: 100%;
50 }
51 thead tr th {
52 background-color: #ddd;
53 }
54 tbody tr:nth-child(even) td, tbody tr:nth-child(even) th {
55 background-color: #eee;
56 }
57 tbody tr:nth-child(odd) td, tbody tr:nth-child(odd) th {}
58 footer {
59 text-align: center;
60 width: 100%;
61 border-top: 4px dotted #666;
62 }
63 footer nav ol {
64 list-style-type: none;
65 margin: 0;
66 padding: 0;
67 border: 1px solid #000;
68 }