Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
(110% font size) |
(heading font sizes) |
||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
/* larger font */ | /* larger font */ | ||
Line 12: | Line 6: | ||
font-size: 110%; | font-size: 110%; | ||
} | } | ||
+ | |||
+ | /* heading font sizes */ | ||
+ | h1 {font-size: 1.6em; font-weight: bold;} | ||
+ | h2 {font-size: 1.5em; font-weight: bold;} | ||
+ | h3 {font-size: 1.3em; font-weight: bold;} | ||
+ | h4 {font-size: 1.2em; font-weight: bold;} | ||
+ | h5 {font-size: 1.1em; font-weight: bold;} | ||
+ | h6 {font-size: 1.0em; font-weight: bold;} | ||
/* wikitable/prettytable */ | /* wikitable/prettytable */ |
Revision as of 17:40, 21 February 2014
/* CSS placed here will be applied to all skins */
/* larger font */
body, input, textarea {
font-size: 110%;
}
/* heading font sizes */
h1 {font-size: 1.6em; font-weight: bold;}
h2 {font-size: 1.5em; font-weight: bold;}
h3 {font-size: 1.3em; font-weight: bold;}
h4 {font-size: 1.2em; font-weight: bold;}
h5 {font-size: 1.1em; font-weight: bold;}
h6 {font-size: 1.0em; font-weight: bold;}
/* wikitable/prettytable */
table.wikitable,
table.prettytable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
.wikitable th, .wikitable td,
.prettytable th, .prettytable td {
border: 1px #aaa solid;
padding: 0.2em 0.4em;
}
.wikitable th,
.prettytable th {
background: #f2f2f2;
text-align: center;
}
.wikitable caption,
.prettytable caption {
font-weight: bold;
}
/* ambox */
.ambox {
border: 1px #aaa solid;
border-collapse: collapse;
background-color: #ffe;
margin-bottom: 0.5em;
}
.ambox td {
padding: 0.3em;
border: none;
}
/* anav */
.anav {
margin-top: 5px;
margin-bottom: 5px;
border: 1px #aaa solid;
border-collapse: collapse;
background-color: #ffe;
}
.anav td {
padding: 0.5em;
border: none;
}
.anav th {
padding: 0em;
border: none;
font-weight: bold;
background-color: #33CC00;
}
/* GeSHi borders */
div.mw-geshi {
padding: 1em;
margin: 1em 0;
border: 1px dashed #2fab6f;
background-color: #f9f9f9;
}
/* custom highlight for text */
.hl-orange {
color: #ff8c00;
font-weight: bold;
}
.hl-teal {
color: #008080;
font-weight: bold;
}
.hl-red {
color: #ff0000;
font-weight: bold;
}
.hl-blue {
color: #0000ff;
font-weight: bold;
}
.hl-pink {
color: #ff1493;
font-weight: bold;
}