23 lines
580 B
CSS
23 lines
580 B
CSS
/* Style pour toute la barre Waybar */
|
|
window#waybar {
|
|
background-image: linear-gradient(to top, rgba(0, 0, 255, 0.7), rgba(138, 43, 226, 0.7));
|
|
}
|
|
|
|
/* Style spécifique pour le module custom-civilization */
|
|
#custom-civilization {
|
|
color: white;
|
|
padding: 0 10px;
|
|
/* Rendre le fond transparent pour laisser voir le dégradé */
|
|
background-color: transparent;
|
|
}
|
|
|
|
/* Style pour tous les modules pour assurer la lisibilité */
|
|
.modules-left,
|
|
.modules-center,
|
|
.modules-right {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
border-radius: 10px;
|
|
margin: 5px;
|
|
padding: 2px 10px;
|
|
}
|
|
|