User:Wayoshi/monobook.css: Difference between revisions

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
mNo edit summary
(time for a change - to purple)
Line 3: Line 3:
  @import "/index.php?title=Mediawiki:Monobook.css&action=raw&ctype=text/css";
  @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";
  @import "/index.php?title=User:Wayoshi/monobook.css&action=raw&ctype=text/css";
#usermessage {background: #F99; border: 1px dashed #F00; }
   
   
  /*green */
  /*green */
  #content, #content table
  #content, #content table
  #p-cactions ul li a { background: #fdfffd; }
  #p-cactions ul li a { background: #fffdff; }


  body { font-family:Arial; font-size:10px;}
  body { font-family:Arial; font-size:10px;}
  a { color: #080; text-decoration: none; }
  a { color: #808; text-decoration: none; }
  a:visited { color: #050; }
  a:visited { color: #505; }
  a:active { color: #111; }
  a:active { color: #111; }
  #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: #222; }
  #bodyContent a.extiw:active { color: #202; }
  #bodyContent a.external { color: #0a0; }
  #bodyContent a.external { color: #a0a; }


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


  pre { border: 1px dashed #090; }
  pre { border: 1px dashed #909; }


  #siteNotice {
  #siteNotice {
   background: #fdfffd;
   background: #fffdff;
  }
  }
  #navbox {  
  #navbox {  
   background: #fdfffd;
   background: #fffdff;
  }
  }
  select {
  select {
   border: 1px solid #2fab6f;  
   border: 1px solid #6f2f6f;  
  }
  }
  input.searchButton {
  input.searchButton {
   background-color: #fdfffd;
   background-color: #fffdff;
  }
  }
  #searchInput {
  #searchInput {
   border: 1px solid #2fab6f;
   border: 1px solid #6f2f6f;
   background-color: #fdfffd;
   background-color: #fffdff;
  }
  }
  textarea {
  textarea {

Revision as of 23:20, October 12, 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: #fffdff; }

 body { font-family:Arial; font-size:10px;}
 a { color: #808; text-decoration: none; }
 a:visited { color: #505; }
 a:active { color: #111; }
 #p-personal a.new { color: #f00; }
 #p-personal a.new:visited { color:#c00; }

 #bodyContent a.extiw:active { color: #202; }
 #bodyContent a.external { color: #a0a; }

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

 #siteNotice {
   background: #fffdff;
 }
 #navbox { 
   background: #fffdff;
 }
 select {
   border: 1px solid #6f2f6f; 
 }
 input.searchButton {
   background-color: #fffdff;
 }
 #searchInput {
   border: 1px solid #6f2f6f;
   background-color: #fffdff;
 }
 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;
 }