Jump to content

User:Consorti/monobook.css

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
 /*<nowiki><pre>*/
/************************************************************************/
/* 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: 1em;
  -moz-border-radius-topright: 1em;
}
#content { 
  -moz-border-radius-topleft: 1em; 
  -moz-border-radius-bottomleft: 1em;
}
div.pBody {
  -moz-border-radius-topright: 1em;
  -moz-border-radius-bottomright: 1em;
}

/* same following the css3 draft specs, any browsers supporting this? */
#p-cactions ul li, #p-cactions ul li a {  
  border-radius-topleft: 1em;
  border-radius-topright: 1em;
}
#content { 
  border-radius-topleft: 1em;
  border-radius-bottomleft: 1em;
}
div.pBody {
  border-radius-topright: 1em;
  border-radius-bottomright: 1em;
}


/************************************************************************/

/* Nuvologo */
/* Use one of these:
http://upload.wikimedia.org/wikipedia/commons/e/e1/Wikipedia-logo-en-Gold.png
http://upload.wikimedia.org/wikipedia/commons/7/7e/Barnstar-rotating.gif
http://upload.wikimedia.org/wikipedia/commons/7/78/Wikinews-trans_135px_ohne_text.png
http://upload.wikimedia.org/wikipedia/commons/7/76/WIKIFONDATION3D.PNG
http://upload.wikimedia.org/wikipedia/commons/2/2d/Wikimedia_without_text.png http://upload.wikimedia.org/wikipedia/commons/d/d2/Squash_WIkicommons_3.png
http://upload.wikimedia.org/wikipedia/commons/1/11/Barnstar.png
*/
/*
#p-logo { 
   background: url(http://upload.wikimedia.org/wikipedia/commons/e/e1/Wikipedia-logo-en-Gold.png) no-repeat; 
    display: none
    position:absolute; 
    top: 8;
    left: 100;
    right: 65;
    height: 0;
    width: 0;
    padding: 0 0 150px 150px;
    overflow: hidden;
}
*/


/************************************************************************/

/* put scrollbar on pre sections instead of ugly cutoff/overlap in firefox */
pre { overflow: auto; }


/************************************************************************/

#fundraising { display: none; }

/************************************************************************/
/* Dotted borders on pre look ugly, replace with a solid one */
#bodyContent pre {
    border: 1px solid #aaa;
}
/************************************************************************/

/*</pre></nowiki> */