summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-05-07 18:44:20 +0200
committerFlorian Dold <florian@dold.me>2021-05-07 18:44:20 +0200
commit7ace59bcaeea87191601a6b513f738a0f4d9b7cb (patch)
tree5587d7ebfa3e7e37790269f181a3f70ad7dd0211 /static
parent9157e98992a39a6a2260022d29716d6c46393f32 (diff)
downloadwww-7ace59bcaeea87191601a6b513f738a0f4d9b7cb.tar.gz
www-7ace59bcaeea87191601a6b513f738a0f4d9b7cb.tar.bz2
www-7ace59bcaeea87191601a6b513f738a0f4d9b7cb.zip
news timeline
Diffstat (limited to 'static')
-rw-r--r--static/styles.css37
1 files changed, 37 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css
index 21286b20..b8493bde 100644
--- a/static/styles.css
+++ b/static/styles.css
@@ -162,3 +162,40 @@ footer {
z-index: -1;
}
+
+.timeline header {
+ text-align: left;
+ margin-bottom: 5px;
+}
+
+
+ul.timeline {
+ list-style-type: none;
+ position: relative;
+}
+ul.timeline:before {
+ content: ' ';
+ background: #d4d9df;
+ display: inline-block;
+ position: absolute;
+ left: 29px;
+ width: 2px;
+ height: 100%;
+ z-index: 400;
+}
+ul.timeline > li {
+ margin: 20px 0;
+ padding-left: 20px;
+}
+ul.timeline > li:before {
+ content: ' ';
+ background: white;
+ display: inline-block;
+ position: absolute;
+ border-radius: 50%;
+ border: 3px solid #22c0e8;
+ left: 20px;
+ width: 20px;
+ height: 20px;
+ z-index: 400;
+}