add structure to random

This commit is contained in:
isUnknown 2024-04-15 18:13:03 +02:00
parent b8de28aade
commit 4f3712536a
8 changed files with 98 additions and 11 deletions

9
assets/css/src/grid.css Normal file
View file

@ -0,0 +1,9 @@
body.full-width #desktop-nav {
height: auto;
}
body.full-width #desktop-nav .empty {
height: calc(var(--unit--vertical) / 2);
}
body.full-width .content {
position: sticky;
}

View file

@ -61,9 +61,14 @@ html {
}
@media screen and (min-width: 640px) {
:root {
body {
--padding-body: calc(15 * var(--unit--horizontal));
}
body.full-width {
--padding-body: calc(var(--unit--horizontal) * 7);
}
body,
#logo {
max-width: calc(22 * var(--unit--horizontal));