Difference between revisions of "MediaWiki:Monobook.css"

From Beywiki, the Beyblade Encyclopedia - Presented by the World Beyblade Organization
Jump to: navigation, search
Line 11: Line 11:
 
}
 
}
  
input[type="radio"],
+
/* make a few corners round, only supported by moz/firefox/other gecko browsers for now */
input[type="checkbox"] { border:none; }
+
#p-cactions ul li, #p-cactions ul li a { 
input[type="submit"] {
+
  -moz-border-radius-topleft: 1em;
    border: 1px solid #aaa !important;
+
  -moz-border-radius-topright: 1em;
    background-color: #f9f9f9 !important;
+
}
 +
#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;
 
}
 
}
/* make round corners for the rest */
+
 
input[type="submit"] {
 
  -moz-border-radius-topleft: 2px !important;
 
  -moz-border-radius-topright: 2px !important;
 
  -moz-border-radius-bottomleft: 2px;
 
  -moz-border-radius-bottomright: 2px;
 
}
 
input[type="submit"] {color: #aaa !important;}
 
input[type="submit"]:hover, input[type="submit"]:focus {background-color: #fff !important; color: #000 !important; cursor: pointer !important;}
 
  
 
*/
 
*/
Line 45: Line 58:
 
     background-color: #f9f9f9 !important;
 
     background-color: #f9f9f9 !important;
 
}
 
}
/* make round corners for the rest */
+
 
input[type="submit"] {
+
/* make a few corners round, only supported by moz/firefox/other gecko browsers for now */
  -moz-border-radius-topleft: 2px !important;  
+
#p-cactions ul li, #p-cactions ul li a {
  -moz-border-radius-topright: 2px !important;
+
  -moz-border-radius-topleft: 1em;
  -moz-border-radius-bottomleft: 2px;
+
  -moz-border-radius-topright: 1em;
  -moz-border-radius-bottomright: 2px;
+
}
}  
+
#content {
input[type="submit"] {color: #aaa !important;}
+
  -moz-border-radius-topleft: 1em;
input[type="submit"]:hover, input[type="submit"]:focus {background-color: #fff !important; color: #000 !important; cursor: pointer !important;}
+
  -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;
 +
}

Revision as of 06:34, 11 May 2008

/* 

body { font-family: "Verdana", Helvetica, sans-serif; }

body { 
background: #f5f5f5 url("http://www.beywiki.com/images/5/50/Beywikibg.jpg") 0px 0px no-repeat;
}

#p-nav,#p-search,#p-tb,#footer {
  opacity:0.83;
}

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


*/

body { 
background: #f5f5f5 url("http://www.beywiki.com/images/5/50/Beywikibg.jpg") 0px 0px no-repeat;
}

body { font-family: "Verdana", Helvetica, sans-serif; }

#p-nav,#p-search,#p-tb,#footer {
  opacity:0.83;
}

input[type="radio"],
input[type="checkbox"] { border:none; }
input[type="submit"] {
    border: 1px solid #aaa !important;
    background-color: #f9f9f9 !important;
}

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