3e4c4f4d1685bf3cde8616e42cb17e03110e0974
[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: 0 1em 0 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: 1em;
27 margin-bottom: 1.25em;
28 text-align: center;
29 }
30 h2 {
31 background-color: #ddd;
32 padding: .25em 0 .1em 0.25em;
33 }
34 main {
35 flex-grow: 1;
36 }
37 section {}
38 .about {}
39 .usage {}
40 .topics {}
41 .subscriptions {}
42 .external {
43 background-image: url("external-link.svg");
44 background-position: right center;
45 background-repeat: no-repeat;
46 padding-right: 13px;
47 }
48 table {
49 border: 0;
50 width: 100%;
51 }
52 thead tr th {
53 background-color: #ddd;
54 }
55 tbody tr:nth-child(even) td, tbody tr:nth-child(even) th {
56 background-color: #eee;
57 }
58 tbody tr:nth-child(odd) td, tbody tr:nth-child(odd) th {}
59 footer {
60 text-align: center;
61 width: 100%;
62 border-top: 4px dotted #666;
63 }
64 footer ol {
65 list-style-type: none;
66 margin: .5em;
67 padding: 0;
68 }