Jump to content

MediaWiki:Common.css: Difference between revisions

From Survivalcraft Wiki
No edit summary
No edit summary
Line 93: Line 93:
.gallery-container {
.gallery-container {
display:inline-block;
display:inline-block;
margin: 1rem 1rem 1rem 0;
margin: 1rem 0 1rem 0;
border: 1px solid #ccc;
border: 1px solid #ccc;
width: 300px;
width: 300px;

Revision as of 00:03, 31 July 2025

/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* Changes the font-family style of all content */
#content, body, h1, h2, h3,h4, h5 {
	font-family: 'Rubik', sans-serif !important;
}

.mw-heading3 h3 {
	font-weight: 400;
}

.mw-head-base {
	background-color: #dfdbc3;
}

.mw-logo-wordmark {
	color: #101418;
	font-weight: 500;
}

.mw-logo-icon {
}

/* Removes all default CSS icons */
#content a.external {
    background: none !important;
    padding: 0 !important;
}

/* Infobox Classes */
.game-infobox {
	font-family: Rubik;
	border-spacing: 0;
	border-collapse: separate;
	float: right; 
	margin: 0.5rem 10px 0.5rem 2rem;
	max-width: 270px;
	min-width: 200px;
}
.game-infobox-title {
	background-color: #287308;
	color: white;
	padding: 0.75rem 3rem 0.75rem 3rem;
	font-size: 18px;
}
.game-infobox-header {
	width: 240px;
	background-color: #287308;
	color: white;
	font-size: 14px;
	padding: 0.5rem;
}
.game-infobox-attribute {
	width: 70px;
	font-size: 12px;
	padding: 0.5rem;
}
.game-infobox-argument {
	font-size: 12px;
	padding: 0.5rem;
}
.game-infobox tr th, .game-infobox tr td {
	  border-right: 1px solid rgba(40,115,8,0.5);
	  border-bottom: 1px solid rgba(40,115,8,0.5);
}
.game-infobox tr th:first-child,
.game-infobox tr td:first-child {
  border-left: 1px solid rgba(40,115,8,0.5);
}
.game-infobox tr th {
  border-top: 1px solid rgba(40,115,8,0.5);
}
.game-infobox tr:first-child th:first-child {
  border-top-left-radius: 2px;
}
.game-infobox tr:first-child th:last-child {
  border-top-right-radius: 2px;
}
.game-infobox tr:last-child td:first-child {
  border-bottom-left-radius: 2px;
}
.game-infobox tr:last-child td:last-child {
  border-bottom-right-radius: 2px;
}

.message-box {
	padding: 0.5em 0.5em 0.5em 0.5em;
	margin: 1em 0.5em 1em 0.5em;
}

/* Gallery Classes */
.gallery-container {
	display:inline-block;
	margin: 1rem 0 1rem 0;
	border: 1px solid #ccc;
	width: 300px;
}
.gallery-container:hover {
	border: 1px solid #777;
}
.gallery-caption {
	font-size: 12px;
	padding: 15px;
    text-align: center;
}

/* Viewport Containers */
@media(max-height: 993px) {
	.game-infobox {
		float: none;
	}
}