MediaWiki:Common.css: Difference between revisions

From DDraceNetwork
(Add template note, warning, tip from arch wiki: https://wiki.archlinux.org/index.php?title=MediaWiki:Common.css&oldid=738215)
(add comment about css usage)
Line 5: Line 5:
padding: 8px 32px;
padding: 8px 32px;
}
}
/* Tile template */


.display-tile {
.display-tile {

Revision as of 18:27, 13 August 2022

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

.templatequote {
	border-left: 4px solid #eaecf0;
	padding: 8px 32px;
}

/* Tile template */

.display-tile {
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
	background-size: 512px 512px;
	width: 32px;
	height: 32px;
}

.display-tile.entities {
	background-image: url('/images/d/d4/DDNet_entities_overlay.png');
}
.display-tile.game {
	background-image: url('/images/3/3d/DDNet_editor_entities.png');
}
.display-tile.front {
	background-image: url('/images/2/27/DDNet_editor_front.png');
}
.display-tile.tele {
	background-image: url('/images/4/45/DDNet_editor_tele.png');
}
.display-tile.speedup {
	background-image: url('/images/f/ff/DDNet_editor_speedup.png');
}
.display-tile.switch {
	background-image: url('/images/8/8e/DDNet_editor_switch.png');
}
.display-tile.tune {
	background-image: url('/images/6/64/DDNet_editor_tune.png');
}

/* Note, Warning, Tip templates */

div.template-box {
    padding: 5px;
    border: thin solid black;
    margin: 0.5em 0;
    overflow: hidden;
}
div.template-box.template-box-note {
    background-color: #ddf;
    border-color: #bbd;
}
div.template-box.template-box-warning {
    background-color: #fdd;
    border-color: #dbb;
}
div.template-box.template-box-tip {
    background-color: #dfd;
    border-color: #bdb;
}