Difference between revisions of "MediaWiki:Common.css"

From SHA2017
Jump to: navigation, search
Line 29: Line 29:
 
.mentioneduser a:hover {
 
.mentioneduser a:hover {
 
     text-decoration: none;
 
     text-decoration: none;
 +
}
 +
 +
.10columns
 +
{
 +
-moz-column-count:10;
 +
-moz-column-gap:5px;
 +
-webkit-column-count:10;
 +
-webkit-column-gap:5px;
 +
column-count:10;
 +
column-gap:5px;
 
}
 
}

Revision as of 22:19, 4 March 2016

/* CSS placed here will be applied to all skins . LOLHAX */
.mw-wiki-logo {
    background-image: url('/images/5/52/Shawiki.png') !important;
}

/* Mentioneduser, user information boxes on mouse over. */
.mentioneduser a {
position: relative;
}

.mentioneduser a span {display: none; z-index: 1000;}

.mentioneduser a:hover span {
display: block;
position: absolute; 
top: 5px; 
left: -50%; 
width: 200px;
padding: 5px; 
margin: 10px; 
z-index: 1000;
color: #AAA; 
background: white;
font: 10px Verdana, sans-serif; 
border: 1px solid silver;
text-decoration: none;
}

.mentioneduser a:hover {
    text-decoration: none;
}

.10columns
{
	-moz-column-count:10;
	-moz-column-gap:5px;
	-webkit-column-count:10;
	-webkit-column-gap:5px;
	column-count:10;
	column-gap:5px;
}