refactor(#11): improve color & animation

This commit is contained in:
Simon 2023-03-24 17:57:06 +01:00
parent 101372cf1e
commit 4c0547e4fc

View File

@ -3,7 +3,6 @@ domain("alkemics.com") {
button:not([disabled]) .mdi-arrow-right-bold, button:not([disabled]) .mdi-arrow-right-bold,
button:not([disabled]) .mdi-arrow-left-bold { button:not([disabled]) .mdi-arrow-left-bold {
&:not([disabled]):hover { &:not([disabled]):hover {
animation: car-blinkers 900ms steps(1, end) infinite; animation: car-blinkers 900ms steps(1, end) infinite;
} }
@ -11,7 +10,8 @@ domain("alkemics.com") {
@keyframes car-blinkers { @keyframes car-blinkers {
45% { 45% {
color: lightgreen; color: rgb(0, 190, 0);
/*filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.15));*/
} }
} }
} }