Difference between revisions of "MediaWiki:Common.css"

From GbdevWiki
Jump to: navigation, search
(Created page with 'CSS placed here will be applied to all skins: *{ color:red; }')
 
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
*{
+
.rotate{
color:red;
+
-webkit-transform: rotate(-90deg);
 +
-moz-transform: rotate(-90deg);
 +
-o-transform: rotate(-90deg);
 +
}
 +
 
 +
.smaller{
 +
font-size: 75%;
 +
}
 +
.passed{
 +
color: #0c0;
 +
}
 +
.failed{
 +
color: #c00;
 +
}
 +
 
 +
.toptable td{
 +
vertical-align:top
 
}
 
}

Latest revision as of 19:56, 12 December 2010

/* CSS placed here will be applied to all skins */
.rotate{
-webkit-transform: rotate(-90deg); 
-moz-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
}

.smaller{
font-size: 75%;
}
.passed{
color: #0c0;
}
.failed{
color: #c00;
}

.toptable td{
vertical-align:top
}