diff options
Diffstat (limited to 'src/public/styles.css')
-rw-r--r-- | src/public/styles.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/public/styles.css b/src/public/styles.css index edf0042..1cd5245 100644 --- a/src/public/styles.css +++ b/src/public/styles.css | |||
@@ -5,6 +5,7 @@ | |||
5 | --text-color: black; | 5 | --text-color: black; |
6 | --text-color-muted: #999; | 6 | --text-color-muted: #999; |
7 | --blockquote-color: green; | 7 | --blockquote-color: green; |
8 | --sticky-color: lightgreen; | ||
8 | --link-color: #29BC9B; | 9 | --link-color: #29BC9B; |
9 | --link-visited-color: #999; | 10 | --link-visited-color: #999; |
10 | --accent: var(--link-color); | 11 | --accent: var(--link-color); |
@@ -22,6 +23,7 @@ | |||
22 | --text-color: white; | 23 | --text-color: white; |
23 | --text-color-muted: #999; | 24 | --text-color-muted: #999; |
24 | --blockquote-color: lightgreen; | 25 | --blockquote-color: lightgreen; |
26 | --sticky-color: #034611; | ||
25 | --link-color: #79ffe1; | 27 | --link-color: #79ffe1; |
26 | --link-visited-color: #999; | 28 | --link-visited-color: #999; |
27 | --accent: var(--link-color); | 29 | --accent: var(--link-color); |
@@ -121,6 +123,10 @@ nav { | |||
121 | align-items: stretch; | 123 | align-items: stretch; |
122 | } | 124 | } |
123 | 125 | ||
126 | .post { | ||
127 | margin-bottom: 5px; | ||
128 | } | ||
129 | |||
124 | .post, .comments-container, .hero, .header, .footer { | 130 | .post, .comments-container, .hero, .header, .footer { |
125 | padding: 0.3rem; | 131 | padding: 0.3rem; |
126 | flex: 1 1 95%; | 132 | flex: 1 1 95%; |
@@ -791,3 +797,10 @@ select { | |||
791 | text-indent: 1px; | 797 | text-indent: 1px; |
792 | text-overflow: ''; | 798 | text-overflow: ''; |
793 | } | 799 | } |
800 | |||
801 | .sticky { | ||
802 | background-color: var(--sticky-color); | ||
803 | border-radius: 2px; | ||
804 | border: 4px solid var(--sticky-color); | ||
805 | } | ||
806 | |||