26 lines
No EOL
607 B
CSS
Executable file
26 lines
No EOL
607 B
CSS
Executable file
/* custom.css */
|
|
|
|
/* Make background cover nicely */
|
|
body {
|
|
background-size: cover !important;
|
|
background-position: center center !important;
|
|
background-attachment: fixed !important;
|
|
}
|
|
|
|
/* Per-tab backgrounds */
|
|
body.tab-glance {
|
|
background-image: url("/images/bg-glance.jpg") !important;
|
|
}
|
|
|
|
body.tab-pncharris {
|
|
background-image: url("pncharris-bg.png") !important;
|
|
}
|
|
|
|
body.tab-netgrimoire {
|
|
background-image: url("/images/bg-netgrimoire.jpg") !important;
|
|
}
|
|
|
|
body.tab-wasted-bandwidth {
|
|
background-image: url("/images/bg-wasted.jpg") !important;
|
|
}
|
|
|