diff options
| author | dmlunar <root@lunar.sh> | 2025-12-19 23:36:26 +0200 |
|---|---|---|
| committer | dmlunar <root@lunar.sh> | 2025-12-19 23:36:26 +0200 |
| commit | 630e05beaaec252324da549251f3965bc156bc42 (patch) | |
| tree | 15ba46186eac38690ae7121a819ac89dda0c9365 /style.scss | |
| parent | 7a87338acd154399fdd74057b637aa078dd4a54e (diff) | |
| download | journal.lunar.sh-630e05beaaec252324da549251f3965bc156bc42.tar.gz journal.lunar.sh-630e05beaaec252324da549251f3965bc156bc42.zip | |
journal: core: add pagination support
Diffstat (limited to 'style.scss')
| -rw-r--r-- | style.scss | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -12,7 +12,9 @@ reproduced, or distributed without prior written permission. For inquiries, contact root@lunar.sh. */ -@import "reset"; + +@use "reset"; +@use "highlights"; @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap'); @import "variables"; @@ -99,7 +101,7 @@ h1, h2, h3, h4 { } h1:target, h2:target, h3:target, h4:target { - background: linear-gradient(to right, #c1d6d5 45%, #efefef); + // background: linear-gradient(to right, #c1d6d5 45%, #efefef); } h2 { @@ -891,4 +893,14 @@ code table tr { padding-bottom: 0; } -@import "highlights"; +.previous +{ + margin-left: 5px; +} + +.next +{ + margin-left: 5px; +} + + |
