]> jfr.im git - irc/freenode/web-7.0.git/blame - static/css/style.css
remove <i>
[irc/freenode/web-7.0.git] / static / css / style.css
CommitLineData
2ed0f35d 1/* vars */
f38f696b 2:root {
545c8ea4 3 --navbar-bg: #292f2f;
a18c9685 4 --jumbotron-bg: #3a4346;
545c8ea4 5 --copyright-bg: #292f2f;
ef54eedd
EK
6 --link-color: #2fa6bc;
7 --footer-link-color: #ecf7fa;
f38f696b 8 --nlink-col: #000;
ef54eedd
EK
9 --text-color: #292f2f;
10 --footer-text-color: #ecf7fa;
11 --copyright-text-color: #ecf7fa;
12 --jumbotron-text-color: #ecf7fa;
545c8ea4 13 --border-color: #292f2f;
ef54eedd
EK
14 --box-color: #4c5456;
15 --box-hover-color: #292f2f;
f38f696b 16 --box-round: 10px;
588c2afb 17 --max-width: 600px;
f38f696b 18}
2ed0f35d 19
2ed0f35d 20/* reset css for browser compat */
2ed0f35d 21* {
f38f696b
EK
22 margin: 0;
23 padding: 0;
24 box-sizing: border-box;
2ed0f35d
S
25}
26
27/* global */
2ed0f35d 28body {
f38f696b
EK
29 font-family: 'Open Sans';
30 color: var(--text-color);
31 font-size: 14px;
32 min-height: 100vh;
33 height: auto;
2ed0f35d
S
34}
35
36a {
ef54eedd 37 color: var(--link-color);
f38f696b 38 text-decoration: none;
2ed0f35d
S
39}
40
41/* navbar */
2ed0f35d 42.navbar {
f38f696b
EK
43 width: 100%;
44 height: 50px;
45 background-color: var(--navbar-bg);
545c8ea4 46 box-shadow: 0 3px 4px rgba(0, 0, 0, 0.5);
f38f696b
EK
47 position: fixed;
48 left: 0;
49 right: 0;
50 top: 0;
51 display: flex;
52 flex-wrap: nowrap;
53 justify-content: space-between;
54 align-items: center;
545c8ea4 55 border-bottom: 1px solid var(--border-color);
f38f696b 56 z-index: 100;
15bc3c0b 57 padding-right: 5px;
2ed0f35d 58}
5a171aa6
SB
59[class*='fn-'] {
60 margin-top: auto;
61 margin-bottom: auto;
62 font-size: 30px;
63 color: #E6E6E6;
64 text-shadow: .5px .5px #000;
65}
5a171aa6
SB
66.green {
67 color: #4BEB4A;
68}
2ed0f35d 69
545c8ea4
EK
70@media all and (max-width: 600px) {
71 .navbar {
72 position: absolute;
73 }
74}
75
76.navbar a {
15bc3c0b 77 margin-top: 2px;
545c8ea4
EK
78 height: 40px;
79}
80
2ed0f35d 81.nlogo {
f38f696b 82 height: 40px;
2ed0f35d
S
83}
84
85.navlinks {
f38f696b
EK
86 display: flex;
87 justify-content: space-around;
88 flex-wrap: nowrap;
2ed0f35d
S
89}
90
91.nlink {
f38f696b
EK
92 text-decoration: none;
93 color: var(--nlink-col);
2ed0f35d
S
94}
95
96/* main */
2ed0f35d 97.container {
f38f696b 98 width: 100%;
28507109 99 min-height: 98vh;
588c2afb 100 padding-top: 50px;
28507109 101 padding-bottom: 11.5rem;
2ed0f35d
S
102}
103
104.main {
4f236e86 105 margin: 0 auto;
949bf01c 106 margin-top: .75em;
588c2afb 107 padding: 0 .75em;
4f236e86 108 max-width: var(--max-width);
19ea0778 109 line-height: 1.4;
2ed0f35d
S
110}
111
0e9ffab7
EK
112.main h1,
113.main h2,
114.main h3,
19ea0778 115.main h4,
50d68b4a 116.main li,
19ea0778
EK
117.main pre,
118.main p {
588c2afb 119 margin-top: .7em;
0e9ffab7
EK
120}
121
19ea0778
EK
122.main h1 + p,
123.main h2 + p,
124.main h3 + p,
125.main h3 + p {
126 margin-top: 0;
127}
128
50d68b4a
EK
129.main ul {
130 padding-left: 2em;
131 list-style-type: disc;
132}
133
19ea0778
EK
134hr {
135 margin-top: .8em;
136 margin-bottom: .8em;
137}
138
2ed0f35d 139/* jumbotron */
2ed0f35d 140.jumbotron {
f38f696b
EK
141 position: relative;
142 width: 100%;
143 margin-top: -16px;
f38f696b 144 background: var(--jumbotron-bg);
545c8ea4 145 box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
f38f696b 146 color: var(--jumbotron-text-color);
545c8ea4 147 padding: 2em 0;
2ed0f35d
S
148}
149
150.child {
f38f696b 151 text-align: center;
ef54eedd 152 margin: .5em auto;
f38f696b
EK
153 font-size: 32px;
154 line-height: 48px;
ef54eedd 155 max-width: 75%;
2ed0f35d
S
156}
157
158.box-container {
f38f696b
EK
159 display: flex;
160 flex-wrap: wrap;
161 justify-content: space-around;
162 align-items: stretch;
6c2065c4
EK
163 max-width: 800px;
164 margin: 0 auto;
2ed0f35d
S
165}
166
167.box {
6c2065c4 168 text-align: center;
f38f696b 169 text-decoration: none;
ef54eedd 170 color: var(--jumbotron-text-color);
f38f696b
EK
171 margin-bottom: 5px;
172 padding: 5px;
173 flex-basis: 30%;
ef54eedd 174 background-color: var(--box-color);
f38f696b 175 border-radius: var(--box-round);
f38f696b
EK
176}
177
178.box:hover,.box:active {
179 background-color: var(--box-hover-color);
180}
181
182.box div{
f38f696b 183 position: relative;
d4b00db0 184 top: initial;
257112d0 185 font-size: 20px;
ef54eedd 186 font-weight: 600;
d4b00db0 187 line-height: 16px;
188 padding: 10px 0;
189 display: block;
e9725e62 190}
191
2ed0f35d 192.fa-users {
f38f696b 193 margin-top: 5px;
2ed0f35d
S
194}
195
f38f696b
EK
196.fa-comment,.fa-question {
197 margin-bottom: 5px;
2ed0f35d
S
198}
199
200.title {
f38f696b 201 text-align: center;
2ed0f35d
S
202}
203
204/* articles feed */
2ed0f35d 205h1 {
f38f696b 206 margin: 0;
2ed0f35d
S
207}
208
209div.art {
6c2065c4 210 clear: right;
68db9c3c 211 flex-grow: 1;
2ed0f35d
S
212}
213
fd277af5 214div.artlist {
cb3e944d
SB
215 display: flex;
216 flex-wrap: wrap;
68db9c3c 217 justify-content: flex-start;
cb3e944d 218 align-items: stretch;
00873aed 219 max-width: var(--max-width);
588c2afb 220 margin: 0 auto;
fd277af5
SB
221 margin-top: .5em;
222}
223
6c2065c4 224div.art:not(:first-child) {
545c8ea4 225 border-top: 1px solid var(--border-color);
2ed0f35d
S
226}
227
de6f54ba 228b.art {
f38f696b
EK
229 margin-bottom: 0;
230 font-size: 18px;
2ed0f35d
S
231}
232
233p.art {
f38f696b 234 margin: 0;
2ed0f35d
S
235}
236
237p.art-ingress {
f38f696b
EK
238 font-style: italic;
239 margin: 0;
2ed0f35d
S
240}
241
dbdcf68c 242.art-date {
6c2065c4 243 float: right;
f38f696b 244 color: #ccc;
6c2065c4 245 margin: 0 .5em;
0925cdba 246 line-height: 24px;
2ed0f35d
S
247}
248
de6f54ba 249p.heading {
f38f696b 250 white-space: nowrap;
de6f54ba
S
251}
252
2ed0f35d 253p.art-link {
f38f696b 254 margin-top: 0;
2ed0f35d
S
255}
256
257/* help */
2ed0f35d 258.hmain {
f38f696b
EK
259 display: flex;
260 flex-wrap: wrap;
261 justify-content: space-around;
262 align-items: stretch;
2ed0f35d
S
263}
264
265a.hchild {
f38f696b
EK
266 color: var(--text-color);
267/*height: 40px;*/
268 width: 95%;
269 text-align: center;
545c8ea4
EK
270 border-top: 1px solid var(--border-color);
271 border-left: 1px solid var(--border-color);
272 border-right: 1px solid var(--border-color);
2ed0f35d
S
273}
274
f38f696b
EK
275a.hchild:hover,a.hchild:active {
276 background-color: var(--box-hover-color);
2ed0f35d
S
277}
278
279.hchild:first-child {
f38f696b
EK
280 margin-top: 10px;
281 -webkit-border-top-left-radius: var(--box-round);
282 -webkit-border-top-right-radius: var(--box-round);
283 -moz-border-radius-topleft: var(--box-round);
284 -moz-border-radius-topright: var(--box-round);
285 border-top-left-radius: var(--box-round);
286 border-top-right-radius: var(--box-round);
2ed0f35d
S
287}
288
289.hchild:last-child {
f38f696b 290 margin-bottom: 10px;
545c8ea4 291 border-bottom: 1px solid var(--border-color);
f38f696b
EK
292 -webkit-border-bottom-right-radius: var(--box-round);
293 -webkit-border-bottom-left-radius: var(--box-round);
294 -moz-border-radius-bottomright: var(--box-round);
295 -moz-border-radius-bottomleft: var(--box-round);
296 border-bottom-right-radius: var(--box-round);
297 border-bottom-left-radius: var(--box-round);
2ed0f35d
S
298}
299
300/* footer */
daf4b56e 301.footers {
28507109
EK
302 /*min-height: 30vh;*/
303 margin-top: -11rem;
304 min-height: 11rem;
daf4b56e
S
305}
306
2ed0f35d 307.footer {
f38f696b 308 background: var(--jumbotron-bg);
545c8ea4 309 color: var(--footer-text-color);
f38f696b
EK
310 margin-top: 2vh;
311 display: flex;
6c2065c4 312 flex-wrap: wrap;
f38f696b
EK
313 justify-content: space-between;
314 align-items: flex-start;
315 box-shadow: 0 -3px 5px rgba(150,150,150,.36);
28507109 316 min-height: 9.5rem;
2ed0f35d
S
317}
318
319.footerchild {
f38f696b 320 margin-top: .5em;
6c2065c4 321 flex: 1 1 1px;
28507109
EK
322 min-width: 12rem;
323}
324
325.footerchild:last-child {
326 margin-bottom: 1em;
6c2065c4
EK
327}
328
28507109
EK
329@media all and (max-width: 60rem) {
330 .footer-push {
331 margin-left: auto;
332 width: max-content;
333 }
2ed0f35d
S
334}
335
336.footer a {
545c8ea4 337 color: var(--footer-link-color);
2ed0f35d
S
338}
339
ef54eedd
EK
340.footer a:hover {
341 color: #fff;
342}
343
f8883dc0 344.footer h2 {
28507109 345 margin-bottom: .1em;
f38f696b 346 display: inline-block;
f8883dc0
S
347}
348
f38f696b
EK
349.footerchild ul,.footerchild ul ul {
350 margin-left: 10px;
351 margin-right: 10px;
352 list-style-type: none;
2ed0f35d
S
353}
354
355.footerchild ul ul {
f38f696b 356 padding-left: 30px;
2ed0f35d
S
357}
358
6c2065c4 359@media all and (max-width: 600px) {
f38f696b
EK
360 .footer {
361 flex-direction: column;
362 }
db572d44 363
f38f696b
EK
364 .footerchild {
365 width: 100%;
366 }
db572d44 367
6c2065c4
EK
368 .footer-push {
369 margin-left: 0;
370 }
371
f38f696b
EK
372 .footerchild ul li:last-child {
373 margin-bottom: .5em;
374 }
e9725e62 375
f38f696b
EK
376 .hdn {
377 display: none;
378 }
e9725e62 379
f38f696b
EK
380 .box {
381 text-align: center;
382 }
e9725e62 383
f38f696b
EK
384 .child {
385 font-size: 20px;
386 line-height: 30px;
387 padding: 10px 0 5px;
388 }
e9725e62 389
f38f696b
EK
390 .fa-4x {
391 padding: 0;
392 margin: 0;
d4b00db0 393 width: 60px;
394 text-align: center;
395 font-size: 28px;
f38f696b
EK
396 }
397
6c2065c4
EK
398 .box-container {
399 flex-direction: column;
400 margin: 0 .5em;
401 }
402
f38f696b 403 .box div {
d4b00db0 404 font-size: 22px;
405 line-height: 22px;
406 padding-left: 8px;
407 font-weight: 700;
f38f696b 408 position: relative;
d4b00db0 409 display: inline;
410 text-align: center;
411
f38f696b 412 }
d4b00db0 413
414 .box {
415 text-align: left;
416 border-radius: calc(var(--box-round) / 2);
417 margin: 5px 0;
418 }
2ed0f35d
S
419}
420
f38f696b
EK
421.footer h2,.footer h3 {
422 margin-left: 10px;
423 margin-right: 10px;
2ed0f35d
S
424}
425
db572d44 426.copyright {
f38f696b 427 display: flex;
545c8ea4 428 flex-wrap: wrap;
f38f696b
EK
429 justify-content: space-between;
430 align-items: center;
545c8ea4
EK
431 background: var(--copyright-bg);
432 min-height: 1.5rem;
433 color: var(--copyright-text-color);
db572d44
SB
434}
435
436a.copyright {
545c8ea4 437 background: var(--copyright-bg);
f38f696b
EK
438 margin-bottom: 0;
439 margin-top: 0;
440 margin-left: .5em;
441 margin-right: .5em;
442 width: auto;
443 height: auto;
db572d44
SB
444}
445
446.copyright a img {
28507109 447 height: 1.5rem;
f38f696b 448 width: auto;
df74dd1d
SB
449}
450
db572d44 451.copyright p {
f38f696b
EK
452 margin-bottom: 0;
453 margin-top: 0;
454 margin-left: .5em;
455 margin-right: .5em;
456 text-align: right;
ebee5e25 457}