diff options
| author | unwox <me@unwox.com> | 2025-06-16 22:16:40 +0600 |
|---|---|---|
| committer | unwox <me@unwox.com> | 2025-06-16 22:16:40 +0600 |
| commit | 43a3ad32f9a17b23f211f61c28e37296ac4447f9 (patch) | |
| tree | 07a589e96654f81d4745609df61a635e9d724df2 /static/style.css | |
| parent | 612877d9ed884f333cc407ef2046bbb2604db3c2 (diff) | |
move tags from filter onto a separate page
Diffstat (limited to 'static/style.css')
| -rw-r--r-- | static/style.css | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/static/style.css b/static/style.css index 771af7f..024a727 100644 --- a/static/style.css +++ b/static/style.css @@ -9,6 +9,16 @@ body { line-height: 1.4; } +.tags-list { + padding-left: 0; + columns: 3; + list-style: none; +} + +.tags-list { + list-decoration: none; +} + h1, h2, h3, h4, h5, h6 { font-weight: 900; margin-bottom: 1rem; @@ -189,6 +199,12 @@ footer { margin-top: 1rem; } +@media screen and (max-width: 55rem) { + .tags-list { + columns: 2; + } +} + @media screen and (max-width: 44.9rem) { body { margin: 1rem; @@ -200,6 +216,7 @@ footer { .menu-mobile { display: flex; + justify-content: center; } .content { @@ -288,10 +305,6 @@ footer { .description { margin-top: 1rem; } - - ol { - padding-left: 1.125rem; - } } @media screen and (max-width: 30rem) { @@ -300,6 +313,10 @@ footer { height: 10rem; width: 10rem; } + + .tags-list { + columns: 1; + } } @media (prefers-color-scheme: dark) { |
