User:TotalSpaceshipGuy3/monobook.css: Difference between revisions

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
(Can't browse without a CSS! ;-))
 
mNo edit summary
 
Line 1: Line 1:
h1 {
h1 {
     color: goldenrod;
     color: goldenrod;
     font-weight: underline;
     font-weight: underline;
Line 6: Line 6:
     padding-bottom: .17em;
     padding-bottom: .17em;
     border-bottom: 1px solid #aaa;
     border-bottom: 1px solid #aaa;
}
}


h2 {
h2 {
     color: darkblue;
     color: darkblue;
     font-weight: underline;
     font-weight: underline;
Line 15: Line 15:
     padding-bottom: .17em;
     padding-bottom: .17em;
     border-bottom: 1px solid #aaa;
     border-bottom: 1px solid #aaa;
}
}


h3 {
h3 {
     color: darkgreen;
     color: darkgreen;
     font-weight: underline;
     font-weight: underline;
Line 24: Line 24:
     padding-bottom: .17em;
     padding-bottom: .17em;
     border-bottom: 1px solid #aaa;
     border-bottom: 1px solid #aaa;
}
}


h4 {
h4 {
     color: brown;
     color: brown;
     font-weight: underline;
     font-weight: underline;
Line 33: Line 33:
     padding-bottom: .17em;
     padding-bottom: .17em;
     border-bottom: 1px solid #aaa;
     border-bottom: 1px solid #aaa;
}
}


h5 {
h5 {
     color: blue;
     color: blue;
     font-weight: underline;
     font-weight: underline;
Line 42: Line 42:
     padding-bottom: .17em;
     padding-bottom: .17em;
     border-bottom: 1px solid #aaa;
     border-bottom: 1px solid #aaa;
}
}


h6 {
h6 {
     color: green;
     color: green;
     font-weight: underline;
     font-weight: underline;
Line 51: Line 51:
     padding-bottom: .17em;
     padding-bottom: .17em;
     border-bottom: 1px solid #aaa;
     border-bottom: 1px solid #aaa;
}
}


h1 { font-size: 190%; }
h1 { font-size: 190%; }
h2 { font-size: 150%; }
h2 { font-size: 150%; }
h3, h4, h5, h6 {
h3, h4, h5, h6 {
     border-bottom: none;
     border-bottom: none;
     font-weight: bold;
     font-weight: bold;
}
}
h3 { font-size: 120%; }
h3 { font-size: 120%; }
h4 { font-size: 110%; }
h4 { font-size: 110%; }
h5 { font-size: 100%; }
h5 { font-size: 100%; }
h6 { font-size: 80%;  }
h6 { font-size: 80%;  }
h1, h2 {
h1, h2 {
     border-bottom: none;
     border-bottom: none;
     font-weight: underline;
     font-weight: underline;
}
}


/*To make the base font different*/
/*To make the base font different*/
body {
body {
     font-size: 10px;
     font-size: 10px;
     font-family: Comic Sans MS;
     font-family: Comic Sans MS;
Line 76: Line 76:
  }
  }


/* make a few corners round, only supported by moz/firefox/other gecko browsers for now */
/* make a few corners round, only supported by moz/firefox/other gecko browsers for now */
   #p-cactions ul li, #p-cactions ul li a {   
   #p-cactions ul li, #p-cactions ul li a {   
   -moz-border-radius-topleft: 1em;
   -moz-border-radius-topleft: 1em;

Latest revision as of 16:42, May 6, 2007

 h1 {
    color: goldenrod;
    font-weight: underline;
    margin: 0;
    padding-top: .5em;
    padding-bottom: .17em;
    border-bottom: 1px solid #aaa;
 }

 h2 {
    color: darkblue;
    font-weight: underline;
    margin: 0;
    padding-top: .5em;
    padding-bottom: .17em;
    border-bottom: 1px solid #aaa;
 }

 h3 {
    color: darkgreen;
    font-weight: underline;
    margin: 0;
    padding-top: .5em;
    padding-bottom: .17em;
    border-bottom: 1px solid #aaa;
 }

 h4 {
    color: brown;
    font-weight: underline;
    margin: 0;
    padding-top: .5em;
    padding-bottom: .17em;
    border-bottom: 1px solid #aaa;
 }

 h5 {
    color: blue;
    font-weight: underline;
    margin: 0;
    padding-top: .5em;
    padding-bottom: .17em;
    border-bottom: 1px solid #aaa;
 }

 h6 {
    color: green;
    font-weight: underline;
    margin: 0;
    padding-top: .5em;
    padding-bottom: .17em;
    border-bottom: 1px solid #aaa;
 }

 h1 { font-size: 190%; }
 h2 { font-size: 150%; }
 h3, h4, h5, h6 {
    border-bottom: none;
    font-weight: bold;
 }
 h3 { font-size: 120%; }
 h4 { font-size: 110%; }
 h5 { font-size: 100%; }
 h6 { font-size: 80%;  }
 h1, h2 {
    border-bottom: none;
    font-weight: underline;
 }

 /*To make the base font different*/
 body {
    font-size: 10px;
    font-family: Comic Sans MS;
    background-repeat: repeat-x;
    background-color: #FFFFCC;
 }

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