diff options
| author | Bobby <[email protected]> | 2024-12-16 00:41:02 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2024-12-16 00:41:02 -0500 |
| commit | 04788ddd83c5e80a09a468d07427f0e365db71d7 (patch) | |
| tree | 5c33a8ba990f21c227dc97b5c76729a39cfe0c67 /static/css/shared/core.css | |
| parent | 5c14aa56c401915a99cf1c6f5700e8e3cb88453b (diff) | |
| download | thatcomputerscientist-04788ddd83c5e80a09a468d07427f0e365db71d7.tar.xz thatcomputerscientist-04788ddd83c5e80a09a468d07427f0e365db71d7.zip | |
pagoda realm
Diffstat (limited to 'static/css/shared/core.css')
| -rw-r--r-- | static/css/shared/core.css | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/static/css/shared/core.css b/static/css/shared/core.css index 94e9e2e1..ac629b03 100644 --- a/static/css/shared/core.css +++ b/static/css/shared/core.css @@ -63,6 +63,38 @@ a:active { color: #df23c4; } +button { + background: #4444b1; + color: #fff; + padding: 8px 16px; + border-radius: 4px; + cursor: pointer; + outline: none; + font-weight: bold; +} + +button:hover { + background: #df23c4; +} + +button:active { + background: #8d8dff; +} + +button:disabled { + background: #8d8dff; + color: #ccc; + cursor: not-allowed; +} + +button:disabled:hover { + background: #8d8dff; +} + +button:focus { + outline: none; +} + a:hover { text-decoration: underline; } |
