MediaWiki:Common.css: Difference between revisions

Created page with "CSS placed here will be applied to all skins: Rounded type chart: .typechartcell { border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; -icab-border-radius: 5px; -o-border-radius: 5px; }"
 
mNo edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* Rounded type chart */
/* Rounded */
.typechartcell {
.rounded5 {
     border-radius: 5px;
     border-radius: 5px;
     -moz-border-radius: 5px;
     -moz-border-radius: 5px;
Line 9: Line 9:
     -icab-border-radius: 5px;
     -icab-border-radius: 5px;
     -o-border-radius: 5px;
     -o-border-radius: 5px;
}
.rounded10 {
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -icab-border-radius: 10px;
    -o-border-radius: 10px;
}
}