Welcome to SmashWiki! Log in or create an account and join the community, and don't forget to read this first!
Notices
The Skill parameter has been removed from Smasher infoboxes, and in its place are the new "Best historical ranking" and "Best tournament result" parameters. SmashWiki needs help adding these new parameters to Smasher infoboxes, refer to the guidelines here for what should be included in these new parameters.
When adding results to Smasher pages, include each tournament's entrant number in addition to the player's placement, and use the {{Trn}} template with the matching game specified. Please also fix old results on Smasher pages that do not abide to this standard. Refer to our Smasher article guidelines to see how results tables should be formatted.
Check out our project page for ongoing projects that SmashWiki needs help with.

User:Bandit/monobook.css: Difference between revisions

From SmashWiki, the Super Smash Bros. wiki
Jump to navigationJump to search
(Being unoriginal :D)
 
mNo edit summary
Line 8: Line 8:
/* Background */
/* Background */
body {
body {
     background: #7fdfff;
     background: #ffaa00;
     color: #000000;
     color: #000000;
}
}
Line 23: Line 23:


#footer {
#footer {
     background: #00009f;
     background: #9f4f00;
     color: #000000;
     color: #000000;
}
}
Line 29: Line 29:
/* Colour the number of characters added/removed in the recent changes */
/* Colour the number of characters added/removed in the recent changes */
.mw-plusminus-pos {
.mw-plusminus-pos {
     color: #003fff;
     color: #ff8000;
}
}


.mw-plusminus-neg {
.mw-plusminus-neg {
     color: #00007f;
     color: #ff0080;
}
}


Line 42: Line 42:
     margin: 1em 1em 1em 0;
     margin: 1em 1em 1em 0;
     background: #ffffff;
     background: #ffffff;
     border: 1px #00009f solid;
     border: 1px #9f0000 solid;
     border-collapse: collapse;
     border-collapse: collapse;
     color: #000000;
     color: #000000;
Line 48: Line 48:


table.wikitable th, table.wikitable td {
table.wikitable th, table.wikitable td {
     border: 1px #00009f solid;
     border: 1px #9f0000 solid;
     padding: 0.2em;
     padding: 0.2em;
}
}


table.wikitable th {
table.wikitable th {
     background: #7fdfff;
     background: #ffdf7f;
     color: #000000;
     color: #000000;
}
}
Line 65: Line 65:
/* "You have new messages" box */
/* "You have new messages" box */
.usermessage {
.usermessage {
     background: #00007f;
     background: #000000;
     border: 3px solid #000000;
     border: 3px solid #fffff;
     color: #dfffff;
     color: #ffffff;
     font-weight: normal;
     font-weight: normal;
     margin: .5em 0em .5em 0em;
     margin: .5em 0em .5em 0em;
Line 76: Line 76:
/* Appearance when MOUSE HOVERS OVER TABS */
/* Appearance when MOUSE HOVERS OVER TABS */
#p-cactions ul li a:hover {
#p-cactions ul li a:hover {
     background: #dfffff;
     background: #ffdfbf;
     color: #000000;
     color: #000000;
}
}
Line 88: Line 88:
/* Change color of NON SELECTED tabs */
/* Change color of NON SELECTED tabs */
#p-cactions ul li a {  
#p-cactions ul li a {  
     background: #0000ff;
     background: #ff0000;
     color: #dfffff;
     color: #dfffff;
}
}
Line 98: Line 98:
#column-one { padding-top: 140px !important; }
#column-one { padding-top: 140px !important; }


h5 { color: #00007f; }
h5 { color: #7f0000; }
a { color: #003fff; }
a { color: #ff3f00; }
a:visited { color: #00009f; }
a:visited { color: #ff0000; }
a:hover { text-decoration: underline; }
a:hover { text-decoration: underline; }
a.new { color: #ff0000; }
a.new { color: #aaaa00; }


/* Link colors */
/* Link colors */
Line 112: Line 112:
/* Sidebar */
/* Sidebar */
.pBody {
.pBody {
     background: #7fdfff;
     background: #ffaa00;
     color: #000000;
     color: #000000;
}
}


div.pBody {
div.pBody {
     background: #003fff;
     background: #ff3f00;
     border:3px solid #00007f;
     border:3px solid #7f0000;
}
}


Line 129: Line 129:
/* Table of Contents */
/* Table of Contents */
#toc {
#toc {
     border: 4px solid #003fff;
     border: 4px solid #ffaa00;
     color: #000000;
     color: #ffff00;
     background: #dfffff;
     background: #ff0000;
     padding: 5px;
     padding: 5px;
     font-size: 95%;
     font-size: 95%;
Line 138: Line 138:
/* Code boxes */
/* Code boxes */
code {
code {
     background: #dfffff;
     background: #ffdfbf;
     color: #000000;
     color: #000000;
}
}
pre {
pre {
     background: #dfffff;
     background: #ffdfbf;
     color: #000000;
     color: #000000;
     border: 1px dashed #00007f;
     border: 1px dashed #7f3f00;
     display: block;
     display: block;
     overflow: auto;
     overflow: auto;
}
}
#catlinks {
#catlinks {
   background: #dfffff;
   background: #ffdf00;
   border: 1px solid #00009f;
   border: 1px solid #9f4f00;
}
}



Revision as of 13:47, July 22, 2013

/*<pre><nowiki>*/

/*** Bold 'edit this page' link to encourage newcomers ***/
#ca-edit a {
    font-weight: bold !important;
}

/* Background */
body {
    background: #ffaa00;
    color: #000000;
}

#bodyContent {
    background: #ffffff;
    color: #000000;
}

#content {
    background: #ffffff;
    color: #000000;
}

#footer {
    background: #9f4f00;
    color: #000000;
}

/* Colour the number of characters added/removed in the recent changes */
.mw-plusminus-pos {
    color: #ff8000;
}

.mw-plusminus-neg {
    color: #ff0080;
}

/* Wikitable settings */

table.wikitable {
    text-align: center;
    margin: 1em 1em 1em 0;
    background: #ffffff;
    border: 1px #9f0000 solid;
    border-collapse: collapse;
    color: #000000;
}

table.wikitable th, table.wikitable td {
    border: 1px #9f0000 solid;
    padding: 0.2em;
}

table.wikitable th {
    background: #ffdf7f;
    color: #000000;
}

table.wikitable caption {
    margin-left: inherit;
    margin-right: inherit;
    font-weight: bold;
}

/* "You have new messages" box */
.usermessage {
     background: #000000;
     border: 3px solid #fffff;
     color: #ffffff;
     font-weight: normal;
     margin: .5em 0em .5em 0em;
     padding: 4px;
     vertical-align: middle;
}

/* Appearance when MOUSE HOVERS OVER TABS */
#p-cactions ul li a:hover {
    background: #ffdfbf;
    color: #000000;
}

/* Change color of SELECTED tabs */
#p-cactions ul li.selected a { 
    background: #ffffff;
    color: #00009f;
}

/* Change color of NON SELECTED tabs */
#p-cactions ul li a { 
    background: #ff0000;
    color: #dfffff;
}

*/

/* Link colours */

#column-one { padding-top: 140px !important; }

h5 { color: #7f0000; }
a { color: #ff3f00; }
a:visited { color: #ff0000; }
a:hover { text-decoration: underline; }
a.new { color: #aaaa00; }

/* Link colors */
.portlet a {
    color: #ffffff;
    background: none;
}

/* Sidebar */
.pBody {
    background: #ffaa00;
    color: #000000;
}

div.pBody {
    background: #ff3f00;
    border:3px solid #7f0000;
}

/* Area where it says your username, talk page, etc. */
#p-personal a {
    color: #000000;
    background: transparent;
}

/* Table of Contents */
#toc {
    border: 4px solid #ffaa00;
    color: #ffff00;
    background: #ff0000;
    padding: 5px;
    font-size: 95%;
}

/* Code boxes */
code {
    background: #ffdfbf;
    color: #000000;
}
pre {
    background: #ffdfbf;
    color: #000000;
    border: 1px dashed #7f3f00;
    display: block;
    overflow: auto;
}
#catlinks {
   background: #ffdf00;
   border: 1px solid #9f4f00;
}

html body.skin-monobook ul {
	list-style-image: url(/images/thumb/d/db/User.png/14px-User.png);
}
/*</nowiki></pre>*/