diff options
author | Andreas Widen <andreas@harmonicflow.org> | 2023-11-25 17:21:37 +0100 |
---|---|---|
committer | Andreas Widen <andreas@harmonicflow.org> | 2023-11-25 17:21:37 +0100 |
commit | 1b2b7c3eb939724696894f31ff27db97b0cac84c (patch) | |
tree | efb7b7746a628efb7bb99b2e44c9c2fbfd75b656 /static/blog/css | |
download | hf-web-1b2b7c3eb939724696894f31ff27db97b0cac84c.tar.xz hf-web-1b2b7c3eb939724696894f31ff27db97b0cac84c.zip |
Initial commit.
Signed-off-by: Andreas Widen <andreas@harmonicflow.org>
Diffstat (limited to 'static/blog/css')
-rw-r--r-- | static/blog/css/post.css | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/static/blog/css/post.css b/static/blog/css/post.css new file mode 100644 index 0000000..ad93e38 --- /dev/null +++ b/static/blog/css/post.css @@ -0,0 +1,46 @@ +/* Harmonic Flow web site */ +/* Public domain 2017. All rights waived. */ + +h4 { + font-size: 2em; +} + +h5 { + font-size: 1.5em; +} + +article audio, +article img, +article video { + display: block; + margin: 50px auto; + max-width: 100%; +} + +article { + line-height: 1.4em; +} + +.post-metadata { + color: #4D4D4D; + margin-bottom: 50px; +} + +.tag-list { + margin: 50px 0px; +} + +.tag-list p { + font-weight: bold; + margin-bottom: 30px; +} + +/* Aim for ~12 words per line for good readability. */ +article.limit-width { + max-width: 720px; +} + +.license { + font-size: 0.8em; + line-height: 1.4em; +} |