diff options
author | pdp8 <pdp8@pdp8.info> | 2024-07-29 14:21:31 +0200 |
---|---|---|
committer | pdp8 <pdp8@pdp8.info> | 2024-07-29 14:21:31 +0200 |
commit | cd53a2fe5fc8baf9750fbd2d9b0b4c855d8694a7 (patch) | |
tree | 689c156602c61da3a8ea177e49ec10590f1f6fd0 /html | |
parent | d987641d7b68fcfa8431b1835411bb1095a37961 (diff) |
rss sorting fixed, rss limited to 25 items, fediring
Diffstat (limited to 'html')
-rw-r--r-- | html/style.css | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/html/style.css b/html/style.css index ddaf027..7cce6d1 100644 --- a/html/style.css +++ b/html/style.css @@ -9,7 +9,9 @@ body { nav { display: flex; + flex-wrap: wrap; align-items: center; + justify-content: space-between; } nav img { @@ -18,11 +20,29 @@ nav img { nav .menu { display: flex; + align-items: center; +} + +nav .site { + display: flex; flex-wrap: wrap; - align-items: baseline; font-size: larger } +nav .webring { + display: flex; + flex-wrap: wrap; +} + +nav .webring .ring { + font-weight: bold; +} + +nav .webring div { + display: flex; + margin: 0 1em; +} + nav a { margin: 0 0.5em; } @@ -70,13 +90,6 @@ iframe { border: none; } -.webring { - display: flex; - flex-wrap: wrap; - margin-top: 2em; - align-items: baseline; -} - .post { /* margin: 1em 2em; */ } |