rags/.config/ags/style.css (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
window.bar {
background-color: @theme_bg_color;
color: @theme_fg_color;
/*border-radius: 10px;*/
/*opacity: 0.85;*/
}
button {
min-width: 0;
padding-top: 0;
padding-bottom: 0;
background-color: transparent;
}
button:active {
background-color: @theme_selected_bg_color;
}
button:hover {
border-bottom: 3px solid @theme_fg_color;
}
label {
font-weight: bold;
}
.workspaces button.focused {
border-bottom: 3px solid @theme_selected_bg_color;
}
.client-title {
color: @theme_selected_bg_color;
}
.notification {
color: yellow;
}
.battery levelbar block {
border-radius: 16px;
}
.battery {
padding: 10px;
}
.icon {
padding-bottom: 5px;
}
.clock {
padding-bottom: 0.5em;
}
.volume {
padding-top: 1em;
min-height: 15em;
}
.brightness {
min-height: 15em;
padding-bottom: 1em;
}
.separator {
padding-left: 0.5em;
padding-right: .5em;
background-color: rgba(255, 255, 255, 1);
}
.time {
font-size: 12;
}
.date2 {
font-size: 8;
padding-bottom: 5px;
}
|