diff options
| author | ilotterytea <iltsu@alright.party> | 2025-04-20 10:46:32 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-04-20 10:46:32 +0500 |
| commit | 3b6c6e5774dec41a16da03d1bb8497b448cfa564 (patch) | |
| tree | 4e9c79624c43c92dbcc288a61f5b92b1772d3c5c /public/static | |
| parent | 43e46d21c263fe8a8672e8e4b3ce38803b9cd089 (diff) | |
feat: users, account management, authentication system
Diffstat (limited to 'public/static')
| -rw-r--r-- | public/static/style.css | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/public/static/style.css b/public/static/style.css index 09e5534..1700079 100644 --- a/public/static/style.css +++ b/public/static/style.css @@ -175,6 +175,17 @@ button.green:hover, background: #85dd8a; } +button.purple, +.button.purple { + background: #9a7ad2; + border-color: #6d5595; +} + +button.purple:hover, +.button.purple:hover { + background: #ac88ea; +} + /** ---------- LIST @@ -250,6 +261,11 @@ button.green:hover, padding: 16px; } +.box hr { + border-color: var(--border-color); + border-width: 1px; +} + .box.emote { width: 90px; height: 90px; @@ -286,4 +302,37 @@ a.box:hover { align-items: center; gap: 32px; margin: 32px 0; +} + +/** +------------- + ACCOUNTS +------------- +*/ + +.accman { + flex-grow: 0; + width: 400px; + + display: flex; + flex-direction: column; + gap: 16px; +} + +.accman form { + display: flex; + flex-direction: column; + gap: 4px; +} + +.accman h1 { + font-size: 26px; +} + +.accman h2 { + font-size: 20px; +} + +.accman h3 { + font-size: 16px; }
\ No newline at end of file |
