diff options
| author | ilotterytea <iltsu@alright.party> | 2025-05-15 16:32:54 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-05-15 16:32:54 +0500 |
| commit | 84e052a64a5ac8172095b993e2d0855e2ce69897 (patch) | |
| tree | 553479ab312f4b50f1d05cdf1926c9461a22b439 /public/static | |
| parent | 20ae2ce5e02539719b971e53222f3e3328ff82a6 (diff) | |
feat: new emote upload design
Diffstat (limited to 'public/static')
| -rw-r--r-- | public/static/style.css | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/public/static/style.css b/public/static/style.css index 0abe8d0..b1233cc 100644 --- a/public/static/style.css +++ b/public/static/style.css @@ -523,6 +523,10 @@ a.box:hover { gap: 32px; } +.no-gap { + gap: 0; +} + .center { justify-content: center; align-items: center; @@ -573,6 +577,10 @@ a.box:hover { font-weight: normal; } +.rounded { + border-radius: 4px; +} + /** ------------- USER @@ -596,4 +604,33 @@ a.box:hover { left: 0; right: 0; background: var(--profile-background); +} + +/** +------------- + CHAT +------------- +*/ + +.chat-message { + background: linear-gradient(0deg, #202020, #303030); + color: #fff; + padding: 8px; +} + +.chat .chat-message:nth-child(even) { + background: linear-gradient(0deg, #353535, #454545); + + border-top: 1px solid #707070; + border-bottom: 1px solid #707070; +} + +.chat.rounded .chat-message:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +.chat.rounded .chat-message:last-child { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; }
\ No newline at end of file |
