38 lines
611 B
CSS
38 lines
611 B
CSS
|
/* jstm's waybar stylesheet */
|
||
|
|
||
|
* {
|
||
|
font-family: Jost;
|
||
|
font-size: 14px;
|
||
|
font: 14px Jost;
|
||
|
}
|
||
|
window#waybar {
|
||
|
/*background-color: #1b1b1b;*/
|
||
|
background-color: transparent;
|
||
|
color: #ffffff;
|
||
|
transition-property: background-color;
|
||
|
transition-duration: .5s;
|
||
|
}
|
||
|
window#waybar.hidden {
|
||
|
opacity: 0.2;
|
||
|
}
|
||
|
|
||
|
#window,
|
||
|
#mpris,
|
||
|
#pulseaudio,
|
||
|
#clock,
|
||
|
#tray {
|
||
|
padding: 0 10px 0 10px;
|
||
|
color: #ffffff;
|
||
|
animation-name: blink;
|
||
|
/*animation-duration: 1s;
|
||
|
animation-iteration-count: infinite;
|
||
|
animation-direction: alternate;*/
|
||
|
}
|
||
|
|
||
|
@keyframes blink {
|
||
|
to {
|
||
|
background-color: #ffffff;
|
||
|
color: #000000;
|
||
|
}
|
||
|
}
|