mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 14:50:40 +02:00
chore: maybe blinking battery for waybar
This commit is contained in:
parent
d6cf94d302
commit
7271352383
1 changed files with 14 additions and 3 deletions
|
@ -101,7 +101,19 @@ button:hover {
|
|||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
0% {
|
||||
background-color: #e05f65;
|
||||
}
|
||||
|
||||
49% {
|
||||
background-color: #e05f65;
|
||||
}
|
||||
|
||||
50% {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
100% {
|
||||
background-color: #000000;
|
||||
}
|
||||
}
|
||||
|
@ -116,9 +128,8 @@ button:hover {
|
|||
background-color: #e05f65;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: step-start;
|
||||
animation-timing-function: steps(12);
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
#power-profiles-daemon {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue