diff options
-rw-r--r-- | style.css | 282 |
1 files changed, 141 insertions, 141 deletions
diff --git a/style.css b/style.css index 9f6e4e2..8e6c8eb 100644 --- a/style.css +++ b/style.css | |||
@@ -1,270 +1,270 @@ | |||
1 | :root { | 1 | :root { |
2 | --main-background: white; | 2 | --main-background: white; |
3 | --main-foreground: black; | 3 | --main-foreground: black; |
4 | --alt-background: #eee; | 4 | --alt-background: #eee; |
5 | --alt-foreground: black; | 5 | --alt-foreground: black; |
6 | --fresh-background: inherit; | 6 | --fresh-background: inherit; |
7 | --fresh-foreground: inherit; | 7 | --fresh-foreground: inherit; |
8 | --stale-background: inherit; | 8 | --stale-background: inherit; |
9 | --stale-foreground: inherit; | 9 | --stale-foreground: inherit; |
10 | --hover-background: yellow; | 10 | --hover-background: yellow; |
11 | --hover-foreground: inherit; | 11 | --hover-foreground: inherit; |
12 | --active-background: cyan; | 12 | --active-background: cyan; |
13 | --active-foreground: inherit; | 13 | --active-foreground: inherit; |
14 | --extra-foreground: blue; | 14 | --extra-foreground: blue; |
15 | } | 15 | } |
16 | 16 | ||
17 | body { | 17 | body { |
18 | background: var(--main-background); | 18 | background: var(--main-background); |
19 | color: var(--main-foreground); | 19 | color: var(--main-foreground); |
20 | font: 16px/1.2 sans-serif; | 20 | font: 16px/1.2 sans-serif; |
21 | margin: auto; | 21 | margin: auto; |
22 | max-width: 150ch; | 22 | max-width: 150ch; |
23 | } | 23 | } |
24 | 24 | ||
25 | main { | 25 | main { |
26 | display: flex; | 26 | display: flex; |
27 | flex-flow: row nowrap; | 27 | flex-flow: row nowrap; |
28 | justify-content: space-around; | 28 | justify-content: space-around; |
29 | } | 29 | } |
30 | 30 | ||
31 | main section { | 31 | main section { |
32 | max-width: 100ch; | 32 | max-width: 100ch; |
33 | } | 33 | } |
34 | 34 | ||
35 | section.feed { | 35 | section.feed { |
36 | padding: 4px; | 36 | padding: 4px; |
37 | } | 37 | } |
38 | 38 | ||
39 | section.feed:target { | 39 | section.feed:target { |
40 | border: 1px solid; | 40 | border: 1px solid; |
41 | } | 41 | } |
42 | 42 | ||
43 | main aside { | 43 | main aside { |
44 | flex-grow: 1; | 44 | flex-grow: 1; |
45 | text-align: right; | 45 | text-align: right; |
46 | max-width: 40ch; | 46 | max-width: 40ch; |
47 | } | 47 | } |
48 | 48 | ||
49 | #page-header, | 49 | #page-header, |
50 | #page-nav { | 50 | #page-nav { |
51 | margin: 1ch; | 51 | margin: 1ch; |
52 | } | 52 | } |
53 | 53 | ||
54 | header { | 54 | header { |
55 | display: flex; | 55 | display: flex; |
56 | flex-flow: row wrap; | 56 | flex-flow: row wrap; |
57 | align-items: baseline; | 57 | align-items: baseline; |
58 | justify-content: space-between; | 58 | justify-content: space-between; |
59 | margin: 1ch 0; | 59 | margin: 1ch 0; |
60 | } | 60 | } |
61 | 61 | ||
62 | h2 { | 62 | h2 { |
63 | margin: 0; | 63 | margin: 0; |
64 | } | 64 | } |
65 | 65 | ||
66 | time { | 66 | time { |
67 | font-family: monospace; | 67 | font-family: monospace; |
68 | } | 68 | } |
69 | 69 | ||
70 | #page-nav { | 70 | #page-nav { |
71 | border-bottom: 1px solid; | 71 | border-bottom: 1px solid; |
72 | padding-bottom: 4px; | 72 | padding-bottom: 4px; |
73 | } | 73 | } |
74 | 74 | ||
75 | #last-updated, | 75 | #last-updated, |
76 | nav, | 76 | nav, |
77 | footer { | 77 | footer { |
78 | font-size: 80%; | 78 | font-size: 80%; |
79 | text-align: right; | 79 | text-align: right; |
80 | } | 80 | } |
81 | 81 | ||
82 | #last-update, | 82 | #last-update, |
83 | footer { | 83 | footer { |
84 | flex-grow: 1; | 84 | flex-grow: 1; |
85 | } | 85 | } |
86 | 86 | ||
87 | footer { | 87 | footer { |
88 | border-top: 1px solid; | 88 | border-top: 1px solid; |
89 | margin: 1ch 0; | 89 | margin: 1ch 0; |
90 | padding: 1ch 0; | 90 | padding: 1ch 0; |
91 | } | 91 | } |
92 | 92 | ||
93 | table, | 93 | table, |
94 | .entry-title { | 94 | .entry-title { |
95 | width: 100%; | 95 | width: 100%; |
96 | border-collapse: collapse; | 96 | border-collapse: collapse; |
97 | } | 97 | } |
98 | 98 | ||
99 | td.entry-timestamp { | 99 | td.entry-timestamp { |
100 | font: 50%/1.1 monospace; | 100 | font: 50%/1.1 monospace; |
101 | text-align: right; | 101 | text-align: right; |
102 | padding: 4px; | 102 | padding: 4px; |
103 | } | 103 | } |
104 | 104 | ||
105 | td.entry-extra { | 105 | td.entry-extra { |
106 | font-family: monospace; | 106 | font-family: monospace; |
107 | text-align: right; | 107 | text-align: right; |
108 | white-space: nowrap; | 108 | white-space: nowrap; |
109 | } | 109 | } |
110 | 110 | ||
111 | td.entry-extra a { | 111 | td.entry-extra a { |
112 | color: var(--extra-foreground); | 112 | color: var(--extra-foreground); |
113 | } | 113 | } |
114 | 114 | ||
115 | td.entry-extra a, | 115 | td.entry-extra a, |
116 | nav.flinks a { | 116 | nav.flinks a { |
117 | display: inline-block; | 117 | display: inline-block; |
118 | } | 118 | } |
119 | 119 | ||
120 | td { | 120 | td { |
121 | margin: 0; | 121 | margin: 0; |
122 | padding: 0; | 122 | padding: 0; |
123 | } | 123 | } |
124 | 124 | ||
125 | tr:nth-child(even), | 125 | tr:nth-child(even), |
126 | #feedlist li:nth-child(even) { | 126 | #feedlist li:nth-child(even) { |
127 | background: var(--main-background); | 127 | background: var(--main-background); |
128 | } | 128 | } |
129 | 129 | ||
130 | tr:nth-child(even):last-child { | 130 | tr:nth-child(even):last-child { |
131 | border-bottom: 1px solid var(--alt-background); | 131 | border-bottom: 1px solid var(--alt-background); |
132 | } | 132 | } |
133 | 133 | ||
134 | tr:nth-child(odd), | 134 | tr:nth-child(odd), |
135 | #feedlist li:nth-child(odd) { | 135 | #feedlist li:nth-child(odd) { |
136 | background: var(--alt-background); | 136 | background: var(--alt-background); |
137 | } | 137 | } |
138 | 138 | ||
139 | aside li { | 139 | aside li { |
140 | list-style: none; | 140 | list-style: none; |
141 | } | 141 | } |
142 | 142 | ||
143 | .fresh { | 143 | .fresh { |
144 | font-weight: bold; | 144 | font-weight: bold; |
145 | background: var(--fresh-background); | 145 | background: var(--fresh-background); |
146 | color: var(--fresh-foreground); | 146 | color: var(--fresh-foreground); |
147 | } | 147 | } |
148 | .fresh nav, | 148 | .fresh nav, |
149 | .stale { | 149 | .stale { |
150 | font-weight: normal; | 150 | font-weight: normal; |
151 | background: var(--stale-background); | 151 | background: var(--stale-background); |
152 | color: var(--stale-foreground); | 152 | color: var(--stale-foreground); |
153 | } | 153 | } |
154 | 154 | ||
155 | a { | 155 | a { |
156 | display: block; | 156 | display: block; |
157 | padding: 4px 8px; | 157 | padding: 4px 8px; |
158 | color: inherit; | 158 | color: inherit; |
159 | } | 159 | } |
160 | 160 | ||
161 | a:link { | 161 | a:link { |
162 | text-decoration: none; | 162 | text-decoration: none; |
163 | } | 163 | } |
164 | 164 | ||
165 | a:visited { | 165 | a:visited { |
166 | color: inherit; | 166 | color: inherit; |
167 | } | 167 | } |
168 | 168 | ||
169 | a:hover { | 169 | a:hover { |
170 | background: var(--hover-background); | 170 | background: var(--hover-background); |
171 | color: var(--hover-foreground); | 171 | color: var(--hover-foreground); |
172 | } | 172 | } |
173 | 173 | ||
174 | a:active { | 174 | a:active { |
175 | background: var(--active-background); | 175 | background: var(--active-background); |
176 | color: var(--active-foreground); | 176 | color: var(--active-foreground); |
177 | } | 177 | } |
178 | 178 | ||
179 | .yt a { | 179 | .yt a { |
180 | color: #ff0000; | 180 | color: #ff0000; |
181 | } | 181 | } |
182 | .youtube { | 182 | .youtube { |
183 | border-left: 1px solid #ff0000; | 183 | border-left: 1px solid #ff0000; |
184 | } | 184 | } |
185 | .reddit { | 185 | .reddit { |
186 | border-left: 3px double #ff3000; | 186 | border-left: 3px double #ff3000; |
187 | } | 187 | } |
188 | .twitter { | 188 | .twitter { |
189 | border-left: 1px solid #179cf0; | 189 | border-left: 1px solid #179cf0; |
190 | } | 190 | } |
191 | .facebook { | 191 | .facebook { |
192 | border-left: 3px double #4267b2; | 192 | border-left: 3px double #4267b2; |
193 | } | 193 | } |
194 | 194 | ||
195 | a#logo, | 195 | a#logo, |
196 | a.anchor, | 196 | a.anchor, |
197 | footer a, | 197 | footer a, |
198 | #page-nav a { | 198 | #page-nav a { |
199 | padding: 0; | 199 | padding: 0; |
200 | display: inline; | 200 | display: inline; |
201 | } | 201 | } |
202 | 202 | ||
203 | footer a:link { | 203 | footer a:link { |
204 | text-decoration: underline; | 204 | text-decoration: underline; |
205 | } | 205 | } |
206 | 206 | ||
207 | @media screen and (max-width: 720px) { | 207 | @media screen and (max-width: 720px) { |
208 | * { | 208 | * { |
209 | border: none; | 209 | border: none; |
210 | padding: 0; | 210 | padding: 0; |
211 | margin: 0; | 211 | margin: 0; |
212 | } | 212 | } |
213 | .entries, | 213 | .entries, |
214 | .entry-title { | 214 | .entry-title { |
215 | width: 100%; | 215 | width: 100%; |
216 | } | 216 | } |
217 | main, | 217 | main, |
218 | header { | 218 | header { |
219 | flex-flow: row wrap; | 219 | flex-flow: row wrap; |
220 | } | 220 | } |
221 | #page-nav { | 221 | #page-nav { |
222 | text-align: left; | 222 | text-align: left; |
223 | } | 223 | } |
224 | main aside { | 224 | main aside { |
225 | padding: 2ch; | 225 | padding: 2ch; |
226 | order: 1; | 226 | order: 1; |
227 | border-bottom: 1px solid; | 227 | border-bottom: 1px solid; |
228 | text-align: left; | 228 | text-align: left; |
229 | max-width: none; | 229 | max-width: none; |
230 | } | 230 | } |
231 | main aside li { | 231 | main aside li { |
232 | display: inline; | 232 | display: inline; |
233 | background: inherit !important; | 233 | background: inherit !important; |
234 | } | 234 | } |
235 | main aside li::after { | 235 | main aside li::after { |
236 | content: " //"; | 236 | content: " //"; |
237 | background: inherit; | 237 | background: inherit; |
238 | font-weight: normal; | 238 | font-weight: normal; |
239 | } | 239 | } |
240 | main aside a { | 240 | main aside a { |
241 | display: inline; | 241 | display: inline; |
242 | } | 242 | } |
243 | main aside li:last-child::after { | 243 | main aside li:last-child::after { |
244 | content: ""; | 244 | content: ""; |
245 | } | 245 | } |
246 | #list { | 246 | #list { |
247 | order: 2; | 247 | order: 2; |
248 | } | 248 | } |
249 | .entry-timestamp { | 249 | .entry-timestamp { |
250 | display: none; | 250 | display: none; |
251 | } | 251 | } |
252 | } | 252 | } |
253 | 253 | ||
254 | @media screen and (prefers-color-scheme: dark) { | 254 | @media screen and (prefers-color-scheme: dark) { |
255 | :root { | 255 | :root { |
256 | --main-background: black; | 256 | --main-background: black; |
257 | --main-foreground: white; | 257 | --main-foreground: white; |
258 | --alt-background: #222; | 258 | --alt-background: #222; |
259 | --alt-foreground: white; | 259 | --alt-foreground: white; |
260 | --fresh-background: inherit; | 260 | --fresh-background: inherit; |
261 | --fresh-foreground: inherit; | 261 | --fresh-foreground: inherit; |
262 | --stale-background: inherit; | 262 | --stale-background: inherit; |
263 | --stale-foreground: inherit; | 263 | --stale-foreground: inherit; |
264 | --hover-background: inherit; | 264 | --hover-background: inherit; |
265 | --hover-foreground: yellow; | 265 | --hover-foreground: yellow; |
266 | --active-background: inherit; | 266 | --active-background: inherit; |
267 | --active-foreground: cyan; | 267 | --active-foreground: cyan; |
268 | --extra-foreground: cyan; | 268 | --extra-foreground: cyan; |
269 | } | 269 | } |
270 | } | 270 | } |