fb85b52b1834bd91ae5ed426d585fd0eb65780a9
[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 {
15 margin-bottom: 1em;
16 }
17 header nav ol {
18 list-style-type: none;
19 margin: 0;
20 padding: 0;
21 }
22 header nav ol li {
23 display: inline;
24 text-align: center;
25 border-top: 2px solid #666;
26 border-bottom: 2px solid #666;
27 border-left: 1px solid #666;
28 border-right: 1px solid #666;
29 padding: .3em .5em .2em .5em;
30 }
31 header nav ol > li:first-child {
32 border-left: 2px solid #666;
33 }
34 header nav ol > li:last-child {
35 border-right: 2px solid #666;
36 }
37 header nav ol li:hover {
38 background-color: #ddd;
39 }
40 header nav ol a {
41 font-variant-caps: small-caps;
42 text-decoration: none;
43 font-weight: bold;
44 }
45 h1 {
46 margin-top: 1em;
47 margin-bottom: 1.25em;
48 text-align: center;
49 }
50 h2 {
51 background-color: #ddd;
52 padding: .25em 0 .1em 0.25em;
53 }
54 main {
55 flex-grow: 1;
56 }
57 section {}
58 section + section {
59 margin-top: 2em;
60 }
61 .logo {
62 vertical-align: middle;
63 height: 2em;
64 }
65 .about {}
66 .usage {}
67 .copyright {
68 font-size: small;
69 }
70 .topics {}
71 .subscriptions {}
72 .external {
73 background-image: url("external-link.svg");
74 background-position: right center;
75 background-repeat: no-repeat;
76 padding-right: 13px;
77 }
78 .hidden {
79 display: none;
80 }
81 .h-app img {
82 vertical-align: middle;
83 }
84 .errors ul {
85 border: 1px solid red;
86 }
87 table {
88 border: 0;
89 width: 100%;
90 }
91 thead tr th {
92 background-color: #ddd;
93 }
94 tbody tr:nth-child(even) td, tbody tr:nth-child(even) th {
95 background-color: #eee;
96 }
97 tbody tr:nth-child(odd) td, tbody tr:nth-child(odd) th {}
98 footer {
99 text-align: center;
100 width: 100%;
101 border-top: 4px dotted #666;
102 }
103 footer ol {
104 list-style-type: none;
105 margin: .5em;
106 padding: 0;
107 }