MediaWiki:Common.css: Difference between revisions
Appearance
Created page with "→CSS placed here will be applied to all skins: .infobox { background: #eee; border: 1px solid #aaa; float: right; margin: 0 0 1em 1em; padding: 1em; width: 400px; } .infobox-title { font-size: 2em; text-align: center; } .infobox-image { text-align: center; } .infobox-table th { text-align: right; vertical-align: top; width: 120px; } .infobox-table td { vertical-align: top; }" |
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 */ | ||
/* Infobox container */ | |||
.infobox { | .infobox { | ||
width: 300px; | |||
border: 1px solid #aaa; | border: 1px solid #aaa; | ||
background-color: #f9f9f9; | |||
font-family: Arial, sans-serif; | |||
font-size: 14px; | |||
color: #333; | |||
padding: 10px; | |||
} | } | ||
.infobox | |||
font-size: | /* H1 title style */ | ||
.infobox h1 { | |||
font-size: 18px; | |||
text-align: center; | text-align: center; | ||
margin-bottom: 10px; | |||
} | } | ||
.infobox | |||
/* Image style */ | |||
.infobox img { | |||
display: block; | |||
margin: 0 auto 10px auto; | |||
max-width: 100%; | |||
height: auto; | |||
border: 1px solid #ccc; | |||
} | } | ||
.infobox- | |||
/* Section header style */ | |||
.infobox .section-title { | |||
background-color: #ddd; | |||
padding: 5px; | |||
font-weight: bold; | |||
margin-top: 10px; | |||
margin-bottom: 5px; | |||
} | } | ||
.infobox | |||
/* Numbered list style */ | |||
.infobox ol { | |||
padding-left: 20px; | |||
margin: 0; | |||
} | } | ||
Revision as of 13:34, 28 January 2026
/* CSS placed here will be applied to all skins */
/* Infobox container */
.infobox {
width: 300px;
border: 1px solid #aaa;
background-color: #f9f9f9;
font-family: Arial, sans-serif;
font-size: 14px;
color: #333;
padding: 10px;
}
/* H1 title style */
.infobox h1 {
font-size: 18px;
text-align: center;
margin-bottom: 10px;
}
/* Image style */
.infobox img {
display: block;
margin: 0 auto 10px auto;
max-width: 100%;
height: auto;
border: 1px solid #ccc;
}
/* Section header style */
.infobox .section-title {
background-color: #ddd;
padding: 5px;
font-weight: bold;
margin-top: 10px;
margin-bottom: 5px;
}
/* Numbered list style */
.infobox ol {
padding-left: 20px;
margin: 0;
}