51 lines
602 B
CSS
51 lines
602 B
CSS
window#waybar {
|
|
background: @background;
|
|
animation: fadeIn 2.5s;
|
|
padding: 2px 0 2px 0;
|
|
border-radius: 0 0 20px 20px;
|
|
}
|
|
|
|
button {
|
|
text-shadow: 2px 2px;
|
|
}
|
|
|
|
window#waybar.hidden {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.module {
|
|
border-radius: 9999px;
|
|
margin: 8px 0;
|
|
}
|
|
|
|
label.module {
|
|
padding: 0 10px;
|
|
/* box-shadow: inset 0 -2px; */
|
|
}
|
|
|
|
box.module {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.modules-left {
|
|
padding: 0 3px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.modules-center {
|
|
padding: 0 3px;
|
|
}
|
|
|
|
.modules-right {
|
|
padding: 0 3px;
|
|
margin-right: 10px;
|
|
}
|