User:Iritscen/monobook.css
From OniGalore
Note: After saving, you have to bypass your browser's cache to see the changes. Internet Explorer: hold down the Ctrl key and click the Refresh or Reload button. Firefox: hold down the Shift key while clicking Reload (or press Ctrl-Shift-R). Google Chrome and Safari users can just click the Reload button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/* Clearer diff-gazing */
/* Normally, when MediaWiki shows you the difference between two revisions of a page, the comparison text columns
are in a smaller font size than 100%, and text removed from one side is colored red on the other side. This is
particularly evil formatting for a colorblind person to have to deal with. Wikipedia's user pages are filled with custom
CSS pages to fix these kinds of irritations. */
.diffchange, .diffchange-inline
{
font-weight: bold;
color: black;
}
td.diff-addedline, td.diff-deletedline, td.diff-context
{
font-size: 100%;
}
/* Change the background image/color */
/*body
{
background:#CCCCCC;
background-image:url("http://iritscen.oni2.net/temp/test.jpg");
background-attachment:fixed;
}*/
/* Fix the sidebar in place when scrolling */
div[id=column-one] /* using the attribute selector hides this from IE */
{
position: fixed;
height: 100%; /* if you shrink the browser too small, the side column will */
overflow: auto; /* become scrollable, so stuff is always accessible, albeit ugly */
z-index: 2;
}
/* Fix the footer so it looks nice and doesn't overlap the sidebar */
#footer
{
margin-left: 13.6em;
border-left: solid 1px rgb(250, 189, 35);
}
/* Rounded corners (WebKit browsers only) */
#p-cactions ul li, #p-cactions ul li a
{
-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px;
}
#content
{
-webkit-border-top-left-radius: 8px;
-webkit-border-bottom-left-radius: 8px;
}
#p-navigation .pBody, #p-search .pBody, #p-tb .pBody
{
-webkit-border-top-right-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
}