diff options
author | 0neGal <mail@0negal.com> | 2021-12-25 21:16:37 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2021-12-25 21:16:37 +0100 |
commit | 59bd6890cc825592f6070b24681f8314624cc21f (patch) | |
tree | 89da2279cd11533783c51736e538133a0d397472 /src | |
parent | b9079cde31ac7d4d39971e955dea6542e7431305 (diff) | |
download | Viper-59bd6890cc825592f6070b24681f8314624cc21f.tar.gz Viper-59bd6890cc825592f6070b24681f8314624cc21f.zip |
pretty hover animations
Diffstat (limited to 'src')
-rw-r--r-- | src/app/main.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/app/main.css b/src/app/main.css index a9dbc9d..1de3eea 100644 --- a/src/app/main.css +++ b/src/app/main.css @@ -28,6 +28,13 @@ button, .text { outline: none; padding: 5px 15px; border-radius: 50px; + transition: 0.2s ease-in-out; +} + +button:hover {opacity: 0.9} +button:active { + opacity: 0.7; + transform: scale(0.95); } #update {background: #81A1C1} |