User:Wayoshi/monobook.css

From the Super Mario Wiki, the Mario encyclopedia
< User:Wayoshi
Revision as of 17:02, August 2, 2006 by Wayoshi (talk | contribs)
Jump to navigationJump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
 /* Wayoshi's custom .css (Cascading Style Sheet) */ 

 @import "/index.php?title=Mediawiki:Monobook.css&action=raw&ctype=text/css";
 @import "/index.php?title=User:Wayoshi/monobook.css&action=raw&ctype=text/css";

 body {
   font-size: 10px;
   font-color: #a0f0a0;
   background #d9ffd9;
 }
 textarea {
   font-face: Arial;
   font-size: 12px;
 }

 /* 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;
 }

 /* move the catlinks box */
 #catlinks {  
  right:1em; 
  top:0.25em;
  max-width: 75%; /* this limits the box size, but doesn't set strictly */
  float: left;
  margin: 0.5em;
  padding: 0.2em;
 }

 /* format the catlinks itself */
 p.catlinks {
  font-size:80%;
  text-align:left;
  text-indent:1;
  text-transform: none;
  white-space:normal;
  margin: 0.2em;
 }