MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
(48 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 */ | ||
/* | |||
* HYPERLINKS | |||
* INFOBOX | |||
* EXTRA COLORS | |||
*/ | |||
/* HYPERLINKS */ | |||
a, .mw-list-item span, li .mw-list-item span { | |||
color: #ff5951; | |||
} | |||
a:visited, a:link, | |||
.mw-list-item:visited span, .mw-list-item:link span, | |||
li .mw-list-item:visted span, li .mw-list-item:link span | |||
{ | |||
color: #a3332e; | |||
} | |||
a:hover, .mw-list-item:hover span, li .mw-list-item:hover span, | |||
a:active, .mw-list-item:active span, li .mw-list-item:active span { | |||
color: #a3332e; | |||
text-decoration: underline; | |||
} | |||
/* INFOBOX */ | |||
.infobox { | .infobox { | ||
border: | border: 2px #ff5951 solid; | ||
border-radius: 5px; | |||
width: 270px; | width: 270px; | ||
Line 8: | Line 35: | ||
} | } | ||
.infobox-title { | .infobox-title, .infobox-subtitle { | ||
text-align: center; | text-align: center; | ||
background-color: #ff5951; | background-color: #ff5951; | ||
color: #111; | color: #111; | ||
font-weight: bold; | |||
} | |||
.infobox-title { | |||
font-size: 1.5em; | |||
} | |||
.infobox-subtitle { | |||
line-height: 2; | |||
font-size: 1.25em; | |||
} | } | ||
.infobox-image { | .infobox-image { | ||
text-align: center; | text-align: center; | ||
} | |||
.infobox-table { | |||
border-collapse: collapse; | |||
width: 270px; | |||
padding: .1em .25em; | |||
} | |||
.infobox-row { | |||
border-top: 2px #ff5951 solid; | |||
} | } | ||
.infobox-parameter { | .infobox-parameter { | ||
font-size: 14px; | |||
text-align: left; | text-align: left; | ||
padding: .1em .5em; | |||
} | |||
.infobox-data { | |||
font-size: 14px; | |||
padding: .1em .5em; | |||
} | |||
/* EXTRA COLORS */ | |||
.networth-color { | |||
color: #4fe883; | |||
} | } |
Latest revision as of 03:18, 28 August 2025
/* CSS placed here will be applied to all skins */
/*
* HYPERLINKS
* INFOBOX
* EXTRA COLORS
*/
/* HYPERLINKS */
a, .mw-list-item span, li .mw-list-item span {
color: #ff5951;
}
a:visited, a:link,
.mw-list-item:visited span, .mw-list-item:link span,
li .mw-list-item:visted span, li .mw-list-item:link span
{
color: #a3332e;
}
a:hover, .mw-list-item:hover span, li .mw-list-item:hover span,
a:active, .mw-list-item:active span, li .mw-list-item:active span {
color: #a3332e;
text-decoration: underline;
}
/* INFOBOX */
.infobox {
border: 2px #ff5951 solid;
border-radius: 5px;
width: 270px;
float: right;
}
.infobox-title, .infobox-subtitle {
text-align: center;
background-color: #ff5951;
color: #111;
font-weight: bold;
}
.infobox-title {
font-size: 1.5em;
}
.infobox-subtitle {
line-height: 2;
font-size: 1.25em;
}
.infobox-image {
text-align: center;
}
.infobox-table {
border-collapse: collapse;
width: 270px;
padding: .1em .25em;
}
.infobox-row {
border-top: 2px #ff5951 solid;
}
.infobox-parameter {
font-size: 14px;
text-align: left;
padding: .1em .5em;
}
.infobox-data {
font-size: 14px;
padding: .1em .5em;
}
/* EXTRA COLORS */
.networth-color {
color: #4fe883;
}