MediaWiki:Common.css: Difference between revisions

From Olentangy Park Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 80: Line 80:
.navbox th {
.navbox th {
background-color: lightgrey;
background-color: lightgrey;
padding: 5px;
min-width: 150px;
min-width: 150px;
}
}

Revision as of 22:40, 19 March 2024

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

.infobox {
    float: right;
    background: #eee;
    margin: 0 0 1em 1em;
    border: 1px dashed #aaa;
    padding: 1em;
    font-size: 10pt;
    width: 300px;
}
.infobox-title {
    font-size: 12pt;
    font-weight: bold;
    text-align: center;
}
.infobox-image {
    text-align: center;
}
.infobox th {
    text-align: left;
    vertical-align: top;
    width: 140px;
}
.infobox td {
    vertical-align: top;
}

.copycode {
    background: #f3f3f3;
    margin: 0;
    padding: 1em;
    font-size: 10pt;
    width: 600px;
}

.notice {
    background: #eee;
    margin: 30px auto;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    font-size: 10pt;
    width: 60%;
}

.mw-references-wrap {
  font-size: 9pt;
}

.summary-text {
	font-family: 'Linux Libertine', 'Georgia', 'Times', serif;
	font-size: 16pt;
}

/* Navbox */

.navbox {
	font-size: 0.75rem;
	line-height: 1.5;
}

.navbox ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	column-gap: 25px;
}

.navbox ul li {
	color: gray;
	list-style: disc;
}

.navbox ul li a {
	white-space: nowrap;
	word-wrap: break-word;
}

.navbox th {
	background-color: lightgrey;
	padding: 5px;
	min-width: 150px;
}

.navbox-title th {
	background-color: lightgrey;
}