diff options
| author | ilotterytea <iltsu@alright.party> | 2025-03-21 03:05:02 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-03-21 03:05:02 +0500 |
| commit | f61ad2eb297bee7603616137fb5ba1880f3b872c (patch) | |
| tree | c83aef6fc091fe7d0ae046a40b8964907a06d444 /public/static/style.css | |
| parent | 16fc341e025671abf45a9b883923b9afe1ea7787 (diff) | |
feat: button style
Diffstat (limited to 'public/static/style.css')
| -rw-r--r-- | public/static/style.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/public/static/style.css b/public/static/style.css index 335d4ad..0659b99 100644 --- a/public/static/style.css +++ b/public/static/style.css @@ -34,6 +34,31 @@ main { gap: 8px; } +/** FORM */ +button[type=submit] { + background: linear-gradient(0deg, var(--box-tab-background), var(--background)); + padding: 8px; + font-size: 18px; + border: 1px solid var(--box-border); +} + +button[type=submit]:hover { + background: linear-gradient(180deg, var(--box-tab-background), var(--background)); + cursor: pointer; +} + +#form-upload-wrapper { + background: var(--background-2); + padding: 32px 0; + color: var(--foreground); + border: 4px dashed var(--box-border); +} + +#form-upload-wrapper:hover { + background: var(--background); + cursor: pointer; +} + /** BOX */ .box { border: 2px solid var(--box-border); @@ -74,6 +99,10 @@ main { align-items: center; } +.pad-4 { + padding: 4px; +} + .gap-8 { gap: 8px; }
\ No newline at end of file |
