MediaWiki:Common.css: Difference between revisions

From Before I Play
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


.spoilers {
.spoiler {
     background: black;
     background: black;
     color: black;
     color: black;
Line 8: Line 8:
}
}


.spoilers:hover {
.spoiler:hover {
     background: black;
     background: black;
     color: white;
     color: white;
}
}

Revision as of 15:07, 16 August 2013

/* CSS placed here will be applied to all skins */

.spoiler {
    background: black;
    color: black;
display: inline;
padding: 0px 5px 0px 5px;
}

.spoiler:hover {
    background: black;
    color: white;
}