diff options
author | Case Duckworth | 2022-05-27 13:27:21 -0500 |
---|---|---|
committer | Case Duckworth | 2022-05-27 13:27:21 -0500 |
commit | e7254223846dbec352628aa9d156e0fe323a4e93 (patch) | |
tree | 8c02009b7981a1182b952ccf307b52f1700bb5b3 /asset | |
parent | Update footer -- and properly integrate it into Make (diff) | |
download | hat-trick-e7254223846dbec352628aa9d156e0fe323a4e93.tar.gz hat-trick-e7254223846dbec352628aa9d156e0fe323a4e93.zip |
New post, asset moving, dir-locals, etc.
Diffstat (limited to 'asset')
-rw-r--r-- | asset/casa.css | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/asset/casa.css b/asset/casa.css new file mode 100644 index 0000000..47f496f --- /dev/null +++ b/asset/casa.css | |||
@@ -0,0 +1,36 @@ | |||
1 | html { | ||
2 | min-height: 100vh; | ||
3 | margin:0; padding: 0; | ||
4 | } | ||
5 | |||
6 | html { | ||
7 | font: 18px serif; | ||
8 | } | ||
9 | |||
10 | body { | ||
11 | max-width: 79ch; | ||
12 | margin: 0 auto; | ||
13 | padding: 0 2ch; | ||
14 | background: #385180; | ||
15 | color: white; | ||
16 | } | ||
17 | |||
18 | main { | ||
19 | max-width: 79ch; | ||
20 | padding: 2ch; | ||
21 | margin: auto; | ||
22 | background: #405990; | ||
23 | } | ||
24 | |||
25 | a { | ||
26 | color: yellow; | ||
27 | } | ||
28 | |||
29 | footer { | ||
30 | text-align: right; | ||
31 | padding: 1ch 0; | ||
32 | } | ||
33 | |||
34 | code { | ||
35 | color: #c0ffee; | ||
36 | } | ||