diff options
| author | Christian Cleberg <[email protected]> | 2025-06-03 16:21:27 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2025-06-03 16:21:27 -0500 |
| commit | 848d7c4742ce0a4fcf75190f44ce57870bee8aa9 (patch) | |
| tree | 68714c1778ad89137187f98f3f9ebaf49496cb56 /theme/static/styles.css | |
| parent | e7963b42bb8c4ea605c40c750ef1623ed0781c1f (diff) | |
| download | cleberg.net-848d7c4742ce0a4fcf75190f44ce57870bee8aa9.tar.gz cleberg.net-848d7c4742ce0a4fcf75190f44ce57870bee8aa9.tar.bz2 cleberg.net-848d7c4742ce0a4fcf75190f44ce57870bee8aa9.zip | |
feat(blog): show filetags on blog roll
Diffstat (limited to 'theme/static/styles.css')
| -rw-r--r-- | theme/static/styles.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/theme/static/styles.css b/theme/static/styles.css index 54e34ed..d21b23f 100644 --- a/theme/static/styles.css +++ b/theme/static/styles.css @@ -525,6 +525,33 @@ span.tag::before { display: none; } +.post { + display: flex; + flex-direction: row; + margin-bottom: 1rem; +} + +.post-content { + display: flex; + flex-direction: column; +} + +.post-tags { + font-size: 0.75rem; + color: #999; + margin-top: 0.1rem; +} + +.tag { + margin-right: 0.3rem; + font-style: normal; + opacity: 0.8; +} + +.tag::before { + content: "#"; +} + @media (prefers-color-scheme: dark) { :root { --bg: #141617; |
