Jump to content

MediaWiki:Common.css: Difference between revisions

From Polytoria
No edit summary
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 */


/*
* HYPERLINKS
* INFOBOX
* THEME
*/
/* HYPERLINKS */
a, .mw-list-item span, li .mw-list-item span {
a, .mw-list-item span, li .mw-list-item span {
color: #ff5951;
color: #ff5951;
Line 18: Line 26:
}
}


 
/* INFOBOX */
 
.infobox {
.infobox {
border: 2px #ff5951 solid;
border: 2px #ff5951 solid;
Line 50: Line 57:
.infobox-parameter {
.infobox-parameter {
text-align: left;
text-align: left;
}
/* THEME */
body {
    background: #181818;
    color: #fff;
}
}

Revision as of 01:00, 27 August 2025

/* CSS placed here will be applied to all skins */

/*
 * HYPERLINKS
 * INFOBOX
 * THEME
 */


/* 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 {
	text-align: center;
	font-size: 1.5em;
	background-color: #ff5951;
	color: #111;
	font-weight: bold;
}

.infobox-image {
	text-align: center;
}

.infobox-table {
	width: 270px;
}

.infobox-table tbody .separator {
	border-bottom: 2px #ff5951 solid;
}

.infobox-parameter {
	text-align: left;
}

/* THEME */
body {
    background: #181818;
    color: #fff;
}