implement optional last updated date for posts
[~bandali/bndl.org] / static / style.css
... / ...
CommitLineData
1body {
2 /* background: #fffffa; */
3 font-family: sans-serif;
4 line-height: 1.6;
5 padding: 2em;
6}
7
8nav, main, footer {
9 margin: auto;
10 max-width: 38rem;
11}
12
13nav {
14 font-size: 0.84em;
15}
16main {
17 margin-bottom: 2em;
18}
19p {
20 margin: 1em 0;
21}
22header {
23 margin-bottom: 1.5em;
24}
25header >:not(h1) {
26 font-size: 0.875em;
27}
28header > p {
29 margin: 0;
30}
31footer {
32 border-top: 1px solid #bbb;
33 font-size: 0.84em;
34 padding-top: 1em;
35}
36footer p {
37 margin: 0;
38}
39
40h1 {
41 font-size: 1.5em;
42}
43h1 + address {
44 margin-top: 0.75em;
45}
46
47h2 {
48 font-size: 1.25em;
49}
50h3 {
51 font-size: 1.125em;
52}
53
54a {
55 color: #006cdc;
56 padding: 0.3em 0;
57 text-decoration: none;
58}
59a:hover, a:focus {
60 transition-property: background;
61 transition-duration: 0.1s;
62 background: #f2f8fa;
63 color: #0054c0; /* #003ea4 */
64}
65a:active {
66 color: #a10029;
67}
68/*
69a:active {
70 color: #06d;
71 box-shadow: 0 1px 1px #ddd;
72}
73*/
74
75h4 {
76 margin: 0.75em auto;
77}
78
79article h3 {
80 font-weight: normal;
81 color: #777;
82}
83
84.notice {
85 background-color: #efefef;
86 text-align: center;
87 position: relative;
88}
89.notice::before {
90 content: "↪";
91 position: absolute;
92 left: 0.5em;
93 bottom: 0.05em;
94}
95.notice::after {
96 content: "↩";
97 position: absolute;
98 right: 0.5em;
99 bottom: 0.05em;
100}
101
102code {
103 font: 1.15em monospace;
104 text-transform: none;
105}
106strong {
107 font-weight: bold;
108}
109em {
110 font-style: italic;
111}
112
113table td {
114 padding: 0.2em 0.3em;
115}
116table td:first-child {
117 padding-left: 0;
118}
119table td:last-child {
120 padding-right: 0
121}
122#notes {
123 margin-top: 0.9em;
124}
125.post-list {
126 width: 100%;
127}
128.post-list tr:hover {
129 background: #f2f8fa; /* #f6f6f6; */
130}
131.post-list td {
132 padding: 0.3em;
133}
134.post-list td:nth-child(2) {
135 text-align: right;
136}
137
138dt {
139 margin-bottom: 0.15em;
140}
141dd {
142 font-size: 0.875em;
143 margin-left: 1.5em;
144 margin-bottom: 0.75em;
145}
146dd:last-child {
147 margin-bottom: 1em;
148}
149small {
150 font-size: 0.875em;
151}
152.muted {
153 color: #666;
154}
155.inbox {
156 margin-top: 2em;
157}
158
159ul, ol {
160 list-style: none;
161 padding-left: 1.5em;
162 position: relative;
163}
164
165li {
166 margin-bottom: 0.25em;
167}
168
169ul > li::before {
170 content: '•';
171 position: absolute;
172 left: 0.5em;
173}
174
175h2 + ul, h2 + dl, h2 + table, h1 + table {
176 margin-top: 1em;
177}
178table + h2, h2 + h3, ul + h3 {
179 margin-top: 0.7em;
180}
181p + table {
182 margin-top: -0.3em;
183}
184
185sup, sub { font-size: 0.85em; }
186sup { vertical-align: super; }
187sub { vertical-align: sub; }