You are viewing the MafiaScum.net Wiki. To play the game, visit the forum.
User:Wgeurts/monobook.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* | |||
**This stylesheet is used to make the Monobook skin look like mafBlack.** | |||
**It's made by wgeurt's who is also working on an actual mafBlack wiki skin.** | |||
*/ | |||
/* Backgrounds */ | |||
/* Changes the base background */ | |||
body{ | body{ | ||
background-color: #000000 | background-color: #000000; | ||
/* IE10 Consumer Preview */ | /* IE10 Consumer Preview */ | ||
background-image: -ms-linear-gradient(top, #000000 0%, #3a3a3a 2%, #000000 50%); | background-image: -ms-linear-gradient(top, #000000 0%, #3a3a3a 2%, #000000 50%); | ||
/* Mozilla Firefox */ | /* Mozilla Firefox */ | ||
background-image: -moz-linear-gradient(top, #000000 0%, #3a3a3a 2%, #000000 50%); | background-image: -moz-linear-gradient(top, #000000 0%, #3a3a3a 2%, #000000 50%); | ||
/* Opera */ | /* Opera */ | ||
background-image: -o-linear-gradient(top, #000000 0%, #3a3a3a 0%, #000000 50%); | background-image: -o-linear-gradient(top, #000000 0%, #3a3a3a 0%, #000000 50%); | ||
/* Webkit (Safari/Chrome 10) */ | /* Webkit (Safari/Chrome 10) */ | ||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3a3a3a), color-stop(0.5, #000000)); | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3a3a3a), color-stop(0.5, #000000)); | ||
/* Webkit (Chrome 11+) */ | /* Webkit (Chrome 11+) */ | ||
background-image: -webkit-linear-gradient(top, #000000 0%, #3a3a3a 0%, #000000 50%); | background-image: -webkit-linear-gradient(top, #000000 0%, #3a3a3a 0%, #000000 50%); | ||
/* W3C Markup, IE10 Release Preview */ | /* W3C Markup, IE10 Release Preview */ | ||
background-image: linear-gradient(to bottom, #000000 0%, #3a3a3a 0%, #000000 50%); | background-image: linear-gradient(to bottom, #000000 0%, #3a3a3a 0%, #000000 50%); | ||
color: | } | ||
/* Content Background */ | |||
div#content { | |||
background-color: #454545; | |||
/* IE10 Consumer Preview */ | |||
background-image: -ms-linear-gradient(top, #404040 0%, #454545 20%); | |||
/* Mozilla Firefox */ | |||
background-image: -moz-linear-gradient(top, #404040 0%, #454545 20%); | |||
/* Opera */ | |||
background-image: -o-linear-gradient(top, #404040 0%, #454545 20%); | |||
/* Webkit (Safari/Chrome 10) */ | |||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #404040), color-stop(0.2, #454545)); | |||
/* Webkit (Chrome 11+) */ | |||
background-image: -webkit-linear-gradient(top, #404040 0%, #454545 20%); | |||
/* W3C Markup, IE10 Release Preview */ | |||
background-image: linear-gradient(to bottom, #404040 0%, #454545 20%); | |||
border-left-width: 2px; | |||
border: 1px solid #3a3a3a; | |||
} | } |
Revision as of 18:35, 11 December 2014
/* **This stylesheet is used to make the Monobook skin look like mafBlack.** **It's made by wgeurt's who is also working on an actual mafBlack wiki skin.** */ /* Backgrounds */ /* Changes the base background */ body{ background-color: #000000; /* IE10 Consumer Preview */ background-image: -ms-linear-gradient(top, #000000 0%, #3a3a3a 2%, #000000 50%); /* Mozilla Firefox */ background-image: -moz-linear-gradient(top, #000000 0%, #3a3a3a 2%, #000000 50%); /* Opera */ background-image: -o-linear-gradient(top, #000000 0%, #3a3a3a 0%, #000000 50%); /* Webkit (Safari/Chrome 10) */ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3a3a3a), color-stop(0.5, #000000)); /* Webkit (Chrome 11+) */ background-image: -webkit-linear-gradient(top, #000000 0%, #3a3a3a 0%, #000000 50%); /* W3C Markup, IE10 Release Preview */ background-image: linear-gradient(to bottom, #000000 0%, #3a3a3a 0%, #000000 50%); } /* Content Background */ div#content { background-color: #454545; /* IE10 Consumer Preview */ background-image: -ms-linear-gradient(top, #404040 0%, #454545 20%); /* Mozilla Firefox */ background-image: -moz-linear-gradient(top, #404040 0%, #454545 20%); /* Opera */ background-image: -o-linear-gradient(top, #404040 0%, #454545 20%); /* Webkit (Safari/Chrome 10) */ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #404040), color-stop(0.2, #454545)); /* Webkit (Chrome 11+) */ background-image: -webkit-linear-gradient(top, #404040 0%, #454545 20%); /* W3C Markup, IE10 Release Preview */ background-image: linear-gradient(to bottom, #404040 0%, #454545 20%); border-left-width: 2px; border: 1px solid #3a3a3a; }