User:Tema/monobook.css
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
The accompanying .js page for this skin is at User:Tema/monobook.js. |
/* make a few corners round, only supported by moz/firefox/other gecko browsers for now */
#p-cactions ul li, #p-cactions ul li a {
-moz-border-radius-topleft: 0.3em;
-moz-border-radius-topright: 0.3em;
}
#content {
-moz-border-radius-topleft: 0.5em;
-moz-border-radius-bottomleft: 0.5em;
}
div.pBody {
-moz-border-radius-topright: 0.5em;
-moz-border-radius-bottomright: 0.5em;
}
/* same following the css3 draft specs, any browsers supporting this? */
#p-cactions ul li, #p-cactions ul li a {
border-radius-topleft: 0.5em;
border-radius-topright: 0.5em;
}
#content {
border-radius-topleft: 0.5em;
border-radius-bottomleft: 0.5em;
}
div.pBody {
border-radius-topright: 0.5em;
border-radius-bottomright: 0.5em;
}
/* make the background behind the content area and the tabs a light grey */
#content, #content table
#p-cactions ul li a { background: #F4F4F6; }
/* stop background image from scrolling with content area */
body { background-attachment: fixed; }
/* replace the book in the background with something else */
body { background: #ABBDE0; }
/* don't use any logo, move the boxes onto that area instead */
#p-logo { display: none }
#column-one { padding-top: 0; }
/* change background of unselected tabs */
#p-cactions ul li a { background: #B7B8B5; }
/* change background of selected tabs */
#p-cactions ul li.selected a { background: #F4F4F6; }
/* change border background of selected tabs */
#p-cactions li.selected { border-color: #aaaaaa; }
/* style the search box and the buttons below it */
input.searchButton {
background-color: #CFD3DF !important;
border: 1px outset !important;
}
/* put scrollbar on pre sections instead of ugly cutoff/overlap in firefox */
pre { overflow: auto; }