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
|
/* Examples of ways CSS selectors can be used */
/* Sections of the panel can be selected */
.wf-panel .left,
.wf-panel .right,
.wf-panel .center {
background-color: black;
}
/* Individual plugins can be selected */
.wf-panel .battery,
.wf-panel .menu,
.wf-panel .clock,
.wf-panel .command-output,
.wf-panel .launchers,
.wf-panel .menu,
.wf-panel .network,
.wf-panel .spacing,
.wf-panel .volume,
.wf-panel .window-list {
font: monospace;
}
/* Plugin popovers can be selected */
.menu-popover,
.clock-popover {
font: monospace;
}
/* animations for hover are possible */
.wf-panel .launcher image {
transition: 500ms linear;
-gtk-icon-transform: scale(0.8);
}
.wf-panel .launcher:hover image {
transition: 500ms linear;
-gtk-icon-transform: scale(1.2);
}
|