diff options
Diffstat (limited to 'weeds')
-rw-r--r-- | weeds/weed.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/weeds/weed.css b/weeds/weed.css new file mode 100644 index 0000000..12b54d9 --- /dev/null +++ b/weeds/weed.css | |||
@@ -0,0 +1,35 @@ | |||
1 | body { | ||
2 | font: 16pt/1.5 serif; | ||
3 | padding: 2ch; | ||
4 | margin: auto; | ||
5 | background: #666; | ||
6 | max-width: 72ch; | ||
7 | } | ||
8 | |||
9 | article { | ||
10 | border: 2px ridge; | ||
11 | background: #888; | ||
12 | padding: 0 1ch; | ||
13 | } | ||
14 | |||
15 | article header { | ||
16 | display: flex; | ||
17 | flex-flow: row wrap; | ||
18 | align-items: baseline; | ||
19 | justify-content: space-between; | ||
20 | border-bottom: 2px groove; | ||
21 | } | ||
22 | |||
23 | h3 { | ||
24 | padding: 0 1ch; | ||
25 | font-style: italic; | ||
26 | } | ||
27 | |||
28 | time { | ||
29 | font-size: 12pt; | ||
30 | } | ||
31 | |||
32 | a { | ||
33 | text-decoration: none; | ||
34 | color: navy; | ||
35 | } | ||