aboutsummaryrefslogtreecommitdiff
path: root/web/style/layout.css
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-01-24 01:53:41 +0100
committermetamuffin <metamuffin@disroot.org>2024-01-24 01:53:41 +0100
commitd4772cb6fb78c3d0a69371fc6cd822260b208857 (patch)
treef738c1619f7b48e282e216027e9779c885eb314c /web/style/layout.css
parent8d6a7442ccb7f1178bada4abd9d8e94353033f32 (diff)
downloadjellything-d4772cb6fb78c3d0a69371fc6cd822260b208857.tar
jellything-d4772cb6fb78c3d0a69371fc6cd822260b208857.tar.bz2
jellything-d4772cb6fb78c3d0a69371fc6cd822260b208857.tar.zst
refactor hlist once again. also added top rated in home
Diffstat (limited to 'web/style/layout.css')
-rw-r--r--web/style/layout.css19
1 files changed, 16 insertions, 3 deletions
diff --git a/web/style/layout.css b/web/style/layout.css
index 46fecde..b261781 100644
--- a/web/style/layout.css
+++ b/web/style/layout.css
@@ -110,15 +110,28 @@ summary h3 {
margin-right: 3px;
}
+.children {
+ padding: 1em;
+ padding-left: 3em;
+ padding-right: 3em;
+ list-style: none;
+ width: 100%;
+ box-sizing: border-box;
+ display: flex;
+}
+.children:not(.hlist) {
+ flex-wrap: wrap;
+}
+.children li {
+ display: block;
+}
.hlist {
overflow-x: auto;
max-width: 100%;
- white-space: nowrap;
+ flex-wrap: nowrap;
}
.hlist li {
display: inline-block;
- vertical-align: top;
- white-space: normal;
}
@media (max-width: 750px) {