diff options
| author | Fuwn <[email protected]> | 2024-01-04 08:50:12 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-04 08:50:12 -0800 |
| commit | 783ff22743781a6628c1e1b4cb155b5927ecce4c (patch) | |
| tree | bcc61b8d01d782fe59919b545373d3a9e94f0e54 /src/app.css | |
| parent | refactor(wrapped): buttons (diff) | |
| download | due.moe-783ff22743781a6628c1e1b4cb155b5927ecce4c.tar.xz due.moe-783ff22743781a6628c1e1b4cb155b5927ecce4c.zip | |
refactor(css): use link colour
Diffstat (limited to 'src/app.css')
| -rw-r--r-- | src/app.css | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/app.css b/src/app.css index 1eae8061..d47c87ff 100644 --- a/src/app.css +++ b/src/app.css @@ -44,11 +44,11 @@ input[type='checkbox'] { margin: 0; width: 1.15em; height: 1.15em; - transition: background-color 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out; } input[type='checkbox']:checked { - background-color: var(--base0B); + background-color: var(--base0C); } input[type='checkbox']:checked:before { @@ -59,7 +59,7 @@ input[type='checkbox']:checked:before { } input[type='checkbox']:active { - transform: scale(0.975); + transform: scale(1); transition: transform 0.15s ease-in-out; } @@ -70,11 +70,11 @@ input[type='checkbox']:hover { button { cursor: pointer; position: relative; - background-color: var(--base0B); + background-color: var(--base0C); color: var(--base00); border: none; border-radius: 4px; - transition: background-color 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out; } button:hover { @@ -83,5 +83,4 @@ button:hover { button:active { transform: scale(0.975); - transition: transform 0.15s ease-in-out; } |