diff options
| author | winter | 2025-01-16 20:21:42 +0000 |
|---|---|---|
| committer | winter | 2025-01-16 20:21:42 +0000 |
| commit | b1d6fbc4d740324d96d7fe2677fb15b9b59d20ea (patch) | |
| tree | ae2c996cc6a42b3a42437a7ec8812cd184644817 /static | |
| parent | 8de5608976dc8a73a400267601acb4c8e127de5a (diff) | |
follow requests
Diffstat (limited to 'static')
| -rw-r--r-- | static/misc.css | 12 | ||||
| -rw-r--r-- | static/profile.css | 9 | ||||
| -rw-r--r-- | static/skeleton.css | 24 |
3 files changed, 43 insertions, 2 deletions
diff --git a/static/misc.css b/static/misc.css index 3281def..9a5c198 100644 --- a/static/misc.css +++ b/static/misc.css @@ -59,6 +59,18 @@ span.inlineIcon { user-select: none; } +span.unreadIndicator { + background: #3b005e; + color: #fff; + width: 24px; + height: 24px; + border-radius: 12px; + display: inline-flex; + align-items: center; + justify-content: center; + font-weight: bold; +} + [hidden] { display: none; } diff --git a/static/profile.css b/static/profile.css index f3f8ead..3912e82 100644 --- a/static/profile.css +++ b/static/profile.css @@ -26,9 +26,16 @@ .followInfo { display: grid; - justify-content: right; + justify-content: end; align-items: baseline; grid-auto-flow: column; gap: 16px; + + .pendingInfo { + display: grid; + align-items: baseline; + grid-auto-flow: column; + gap: 16px; + } } } 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; |
