diff options
Diffstat (limited to 'static/skeleton.css')
| -rw-r--r-- | static/skeleton.css | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/static/skeleton.css b/static/skeleton.css index a7b7009..bd68c93 100644 --- a/static/skeleton.css +++ b/static/skeleton.css @@ -1,4 +1,3 @@ -html, body { background: #fdf5ff; color: #0f070f; @@ -11,6 +10,7 @@ body { justify-items: center; min-height: 100vh; width: 100%; + overflow-y: scroll; } header { @@ -75,6 +75,28 @@ nav { } } +ul.sideNavigation { + border: 1px solid #3334; + border-radius: 8px; + margin: 16px; + padding: 0; + background: #f8e9ff5e; + list-style: none; + > li a { + display: grid; + grid-template-columns: max-content 1fr max-content; + align-items: center; + justify-content: start; + padding: 16px; + gap: 16px; + color: inherit; + text-decoration: none; + } + > li:not(:last-child) { + border-bottom: 1px solid #3334; + } +} + main { width: min(1300px, 100%); display: grid; |
