User:Wayoshi/monobook.css: Difference between revisions

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
(font size fix)
No edit summary
Line 4: Line 4:
  @import "/index.php?title=User:Wayoshi/monobook.css&action=raw&ctype=text/css";
  @import "/index.php?title=User:Wayoshi/monobook.css&action=raw&ctype=text/css";


  /*green */
  /* light blue in namespace, light green otherwise */
  #content, #content table
  #content {
  #p-cactions ul li a { background: #fdfffd; }
    background: #FDFEFF; /* a light blue */
}
 
#content div.thumb {
    border-color: #FDFEFF;
}
 
.ns-0 * #content {
    background: white;
}
 
#mytabs li {
    background: #FDFEFF;
}
 
.ns-0 * #mytabs li {
    background: white;
}
 
#mytabs li a {
    background-color: #FDFEFF;
}
 
.ns-0 * #mytabs li a {
    background-color: white;
}
 
#p-cactions li a, #p-cactions li a:hover, #p-cactions li.selected a {
    background-color: #FDFEFF;
}
 
  .ns-0 * #p-cactions li a {
    background-color: #fdfffd;
}
 
.ns-0 * #p-cactions li.selected a, .ns-0 * #p-cactions li a:hover {
    background-color: white;
}
 
.ns-0 * #content div.thumb {
    border-color: white;
}


  body { font-family:Trebuchet MS; font-size:11px;}
  body { font-family:Trebuchet MS; font-size:11px;}

Revision as of 12:17, August 15, 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";

 /* light blue in namespace, light green otherwise */
 #content {
    background: #FDFEFF; /* a light blue */
 }

 #content div.thumb {
    border-color: #FDFEFF;
 }

 .ns-0 * #content {
    background: white;
 }

 #mytabs li {
    background: #FDFEFF;
 }

 .ns-0 * #mytabs li {
    background: white;
 }

 #mytabs li a {
    background-color: #FDFEFF;
 }

 .ns-0 * #mytabs li a {
    background-color: white;
 }

 #p-cactions li a, #p-cactions li a:hover, #p-cactions li.selected a {
    background-color: #FDFEFF;
 }

 .ns-0 * #p-cactions li a {
    background-color: #fdfffd;
 }

 .ns-0 * #p-cactions li.selected a, .ns-0 * #p-cactions li a:hover {
    background-color: white;
 }

 .ns-0 * #content div.thumb {
    border-color: white;
 }

 body { font-family:Trebuchet MS; font-size:11px;}
 a { color: #070; text-decoration: none; }
 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: #222; }
 #bodyContent a.external { color: #0a0; }

 #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;
 }