Jump to content

Module:Infobox/styles.css

From SchoolIdolWiki
/* {{pp|small=y}} */
/*
 * Stuff from MediaWiki:Common.css on enwiki that is not present in common.css here
 */

/* Infoboxes */
.infobox {
	padding: 0.2em;
	font-size: 88%;
	line-height: 1.7em;
	border-spacing: 3px;
	border-radius: 8px;
}

/* Light Mode Styles */
html[data-mw-color-scheme="light"] .infobox {
	background-color: #f8f9fa;
	color: black;
	border: 1px solid #a2a9b1;
}

html[data-mw-color-scheme="light"] .infobox .infobox-label,
html[data-mw-color-scheme="light"] .infobox .infobox-above {
	background-color: #f2f2f2;
	color: black;
}

html[data-mw-color-scheme="light"] .infobox .infobox-title,
html[data-mw-color-scheme="light"] .infobox .infobox-above,
html[data-mw-color-scheme="light"] .infobox .infobox-full-data,
html[data-mw-color-scheme="light"] .infobox .infobox-below,
html[data-mw-color-scheme="light"] .infobox .infobox-subheader {
	background-color: transparent;
	color: black;
}

html[data-mw-color-scheme="light"] .infobox img {
	border-radius: 8px;
	max-width: 100%;
	height: auto;
}

html[data-mw-color-scheme="light"] .infobox .infobox-navbar {
	background-color: transparent;
	color: black;
}

/* Dark Mode Styles */
html[data-mw-color-scheme="dark"] .infobox {
	background-color: #1e1e2f;
	color: #f8f9fa;
	border: 1px solid #5d5d5d;
}

html[data-mw-color-scheme="dark"] .infobox .infobox-label,
html[data-mw-color-scheme="dark"] .infobox .infobox-above {
	background-color: transparent;
	color: #f8f9fa;
}

html[data-mw-color-scheme="dark"] .infobox .infobox-title,
html[data-mw-color-scheme="dark"] .infobox .infobox-above,
html[data-mw-color-scheme="dark"] .infobox .infobox-full-data,
html[data-mw-color-scheme="dark"] .infobox .infobox-below,
html[data-mw-color-scheme="dark"] .infobox .infobox-subheader {
	background-color: transparent;
	color: #f8f9fa;
}

html[data-mw-color-scheme="dark"] .infobox img {
	border-radius: 8px;
	max-width: 100%;
	height: auto;
}

html[data-mw-color-scheme="dark"] .infobox .infobox-navbar {
	background-color: #2e2e40;
	color: #f8f9fa;
}

html[data-mw-color-scheme="dark"] .infobox .infobox-label {
	background-color: #323245;
	color: #f8f9fa;
}

html[data-mw-color-scheme="dark"] .infobox .infobox-full-data {
	padding: 0.5em;
}

/* General Styles */
body {
	background-color: #f8f9fa;
	color: #333;
	font-family: Arial, sans-serif;
}

.card {
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	margin: 20px;
	text-align: center;
}

.card-header {
	background-color: #007bff;
	color: #ffffff;
	padding: 10px;
	border-radius: 8px 8px 0 0;
}

.logo {
	font-size: 48px;
	color: #007bff;
}

.image-container {
	margin: 15px 0;
}

.image-container img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.details {
	margin-top: 10px;
	padding: 10px;
	background-color: #f1f1f1;
	border-radius: 5px;
}

.details label {
	font-weight: bold;
}

.button {
	background-color: #007bff;
	color: #ffffff;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.button:hover {
	background-color: #0056b3;
}

/* Media Query for Responsive Design */
@media (min-width: 640px) {
	body.skin--responsive .infobox-table {
		display: table !important;
	}
	body.skin--responsive .infobox-table > caption {
		display: table-caption !important;
	}
	body.skin--responsive .infobox-table > tbody {
		display: table-row-group;
	}
	body.skin--responsive .infobox-table tr {
		display: table-row !important;
	}
	body.skin--responsive .infobox-table th,
	body.skin--responsive .infobox-table td {
		padding-left: inherit;
		padding-right: inherit;
	}
}