User:Wayoshi/monobook.css

From the Super Mario Wiki, the Mario encyclopedia
< User:Wayoshi
Revision as of 18:31, 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";

 /*green */
 #content, #content table
 #p-cactions ul li a { background: #fdfffd; }

 a { color: #070; }
 a:visited { color: #030; }
 a:active { color: #111; }
 #p-personal a.new { color: #f00; }
 #p-personal a.new:visited { color:#c00; }

 #bodyContent a.extiw:active { color: #0A0; }
 #bodyContent a.external { color: #222; }

 #p-logo a { background: url(http://www.mariowiki.com/images/1/1a/Wayoshilogo.jpg) 35% 50% no-repeat !important; }
 #p-logo { border: 1px solid #000000; }

 pre { border: 1px dashed #090; }

 #siteNotice {
   background: #fdfffd;
 }
 #navbox { 
   background: #fdfffd;
 }
 select {
   border: 1px solid #2fab6f; 
   color: #fefffe;
 }
 input.searchButton {
   background-color: #fdfffd;
 }
 #searchInput {
   border: 1px solid #2fab6f;
   background-color: #fdfffd;
 }
 textarea {
   font-family: Boukman Old Style;
   font-size: 14px;
 }

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