User:Wayoshi/monobook.css: Difference between revisions

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
m (*begins to fume over # of edits necessary for one color*)
mNo edit summary
Line 13: Line 13:
  #p-personal a.new { color: #f00; }
  #p-personal a.new { color: #f00; }
  #p-personal a.new:visited { color:#c00; }
  #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; }
  pre { border: 1px dashed #090; }

Revision as of 18:31, August 2, 2006

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