aboutsummaryrefslogtreecommitdiff
path: root/static/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/styles.css')
-rw-r--r--static/styles.css36
1 files changed, 36 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css
index 3806ac19..e2d4f8dc 100644
--- a/static/styles.css
+++ b/static/styles.css
@@ -277,6 +277,11 @@ header {
277 margin-top: 30px; 277 margin-top: 30px;
278 margin-bottom: 50px; } 278 margin-bottom: 50px; }
279 279
280.timeline header {
281 text-align: left;
282 margin-bottom: 5px;
283}
284
280.alert { 285.alert {
281 display: flex; 286 display: flex;
282 overflow: hidden; 287 overflow: hidden;
@@ -319,3 +324,34 @@ a.subnav-anchor {
319 324
320.item-date { 325.item-date {
321 font-size: 0.9em; } 326 font-size: 0.9em; }
327
328ul.timeline {
329 list-style-type: none;
330 position: relative;
331}
332ul.timeline:before {
333 content: ' ';
334 background: #d4d9df;
335 display: inline-block;
336 position: absolute;
337 left: 29px;
338 width: 2px;
339 height: 100%;
340 z-index: 400;
341}
342ul.timeline > li {
343 margin: 20px 0;
344 padding-left: 20px;
345}
346ul.timeline > li:before {
347 content: ' ';
348 background: white;
349 display: inline-block;
350 position: absolute;
351 border-radius: 50%;
352 border: 3px solid #22c0e8;
353 left: 20px;
354 width: 20px;
355 height: 20px;
356 z-index: 400;
357}