mirror of
https://github.com/captbaritone/webamp
synced 2024-11-22 16:20:49 +00:00
7074630713
Looks like I had a .editorconfig in the project root (not sure how it got there) which was git ignored by my ~/.gitignore. It also turns out that prettier will respect the indent settings in .editorconfig. This sets my `.editorconfig` to use the Prettier default, checks it in, and also reformats all the CSS. Fixes #684
21 lines
383 B
CSS
21 lines
383 B
CSS
#webamp .mini-time {
|
|
display: block;
|
|
height: 6px;
|
|
width: 25px;
|
|
}
|
|
|
|
#webamp .mini-time.blinking .character:not(.background-character) {
|
|
animation: blink 2s step-start 1s infinite;
|
|
-webkit-animation: blink 2s step-start 1s infinite;
|
|
}
|
|
|
|
#webamp .mini-time .background-character {
|
|
z-index: 1;
|
|
}
|
|
|
|
#webamp .mini-time .character {
|
|
position: absolute;
|
|
top: 0;
|
|
z-index: 2;
|
|
}
|