Jump to content

Module:Infobox/styles.css: Difference between revisions

From SchoolIdolWiki
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 186: Line 186:
}
}


/* Light Mode Styles */
body {
    background-color: #f8f9fa; /* Light background */
    color: #333; /* Dark text for readability */
    font-family: Arial, sans-serif;
}
.card {
    background-color: #ffffff; /* Card background */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px;
    margin: 20px;
    text-align: center;
}
.card-header {
    background-color: #007bff; /* Header background in blue */
    color: #ffffff; /* White text color */
    padding: 10px;
    border-radius: 8px 8px 0 0; /* Rounded top corners */
}
.logo {
    font-size: 48px; /* Larger font size for the logo */
    color: #007bff; /* Blue logo color */
}
.image-container {
    margin: 15px 0;
}
.image-container img {
    max-width: 100%; /* Responsive image */
    height: auto;
    border-radius: 8px; /* Rounded corners for image */
}
.details {
    margin-top: 10px;
    padding: 10px;
    background-color: #f1f1f1; /* Light grey background for details */
    border-radius: 5px; /* Rounded corners */
}
.details label {
    font-weight: bold; /* Bold labels */
}
.button {
    background-color: #007bff; /* Button background */
    color: #ffffff; /* Button text color */
    padding: 10px 20px;
    border: none;
    border-radius: 5px; /* Rounded button corners */
    cursor: pointer; /* Pointer cursor on hover */
}
.button:hover {
    background-color: #0056b3; /* Darken button on hover */
}


/* Since infobox is a table, many infobox templates take advantage of this to add columns and rows to the infobox itself rather than as part of a new table inside them. This class should be discouraged and removed on the long term, but allows us to at least identify these tables going forward
/* Since infobox is a table, many infobox templates take advantage of this to add columns and rows to the infobox itself rather than as part of a new table inside them. This class should be discouraged and removed on the long term, but allows us to at least identify these tables going forward

Revision as of 10:56, 14 April 2025

/* {{pp|small=y}} */
/*
 * Stuff from MediaWiki:Common.css on enwiki that is not present in common.css here
 */
 
/* Infoboxes */
.infobox {
	border: 1px solid #a2a9b1;
	color: black;
	padding: 0.2em;
	font-size: 88%;
	line-height: 1.7em;
	border-spacing: 3px;
	border-radius: 8px;
}

@media screen {
	.infobox {
		background-color: #f8f9fa;
    }
}

@media (max-width: 640px) {
	.infobox {
		width: 100%;
	}
    
	.infobox .nowrap {
		white-space: normal;
	}
}

@media (min-width: 640px) {
	.infobox {
		/* @noflip */
		margin: 0.5em 0 0.5em 1em;
		/* @noflip */
		float: right;
		/* @noflip */
		clear: right;
		width: 22em;
	}
}

.infobox-header {
	line-height: 2.1em;
	font-size: 100%;
	border-radius: 5px;
}
.infobox-label,
.infobox-above {
	line-height: 2.1em;
	background-color:#f2f2f2;
	border-radius: 5px;
}
.infobox-full-data,
.infobox-data,
.infobox-below,
.infobox-subheader,
.infobox-image,
.infobox-navbar,
/* Remove element selector when every .infobox thing is using the standard module/templates  */
.infobox th,
.infobox td {
	vertical-align: top;
}

.infobox-label,
.infobox-data,
/* Remove element selector when every .infobox thing is using the standard module/templates  */
.infobox th {
	text-align: center;
}
.infobox td {
	/* @noflip */
	text-align: left;
	letter-spacing: 0.2px;
}

/* Remove .infobox when element selectors above are removed */
.infobox .infobox-above,
.infobox .infobox-title,
/* Remove element selector when every .infobox thing is using the standard module/templates  */
.infobox caption {
	font-size: 125%;
	font-weight: bold;
	text-align: center;
}

.infobox-title,
/* Remove element selector when every .infobox thing is using the standard module/templates  */
.infobox caption {
	padding: 0.2em;
}

/* Remove .infobox when element selectors above are removed */
.infobox .infobox-header,
.infobox .infobox-subheader,
.infobox .infobox-image,
.infobox .infobox-full-data,
.infobox .infobox-below {
	text-align: center;
}

/* Remove .infobox when element selectors above are removed */
.infobox .infobox-navbar {
	/* @noflip */
	text-align: right;
}

 
 /* end stuff from common.css on enwiki */
 
/*
 * not strictly certain these styles are necessary since the modules now
 * exclusively output infobox-subbox or infobox, not both
 * just replicating the module faithfully
 */
.infobox-subbox {
	padding: 0;
	border: none;
	margin: -3px;
	width: auto;
	min-width: 100%;
	font-size: 100%;
	clear: none;
	float: none;
	background-color: transparent;
}

.infobox-3cols-child {
	margin: auto;
}

.infobox .navbar {
	font-size: 100%;
}

/* T281642 */
body.skin-minerva .infobox-header,
body.skin-minerva .infobox-subheader,
body.skin-minerva  .infobox-above,
body.skin-minerva .infobox-title,
body.skin-minerva  .infobox-image,
body.skin-minerva  .infobox-full-data,
body.skin-minerva .infobox-below {
	text-align: center;
}


@media screen and (prefers-color-scheme: dark) {
    .infobox {
        background-color: #1e1e2f; /* Dark background color */
        color: #f8f9fa; /* Light text color */
        border: 1px solid #5d5d5d; /* Darker border for contrast */
    }
    
    .infobox .infobox-label,
    .infobox .infobox-above,
    .infobox .infobox-title,
    .infobox .infobox-full-data,
    .infobox .infobox-below,
    .infobox .infobox-subheader {
        background-color: transparent; /* Ensure these stay transparent */
        color: #f8f9fa; /* Maintain legibility */
    }

    .infobox img {
        border-radius: 8px; /* Optional: round the image corners */
        max-width: 100%; /* Ensure images fit nicely */
        height: auto; /* Keep aspect ratio */
    }
    
    .infobox .infobox-navbar {
        background-color: #2e2e40; /* A shaded background for navbar if needed */
    }

    .infobox .infobox-label {
        background-color: #323245; /* Darker background for labels for distinction */
    }

    /* Adjust padding for full data areas */
    .infobox .infobox-full-data {
        padding: 0.5em; /* Increased padding for better aesthetics */
    }
}

/* Light Mode Styles */

body {
    background-color: #f8f9fa; /* Light background */
    color: #333; /* Dark text for readability */
    font-family: Arial, sans-serif;
}

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

.card-header {
    background-color: #007bff; /* Header background in blue */
    color: #ffffff; /* White text color */
    padding: 10px;
    border-radius: 8px 8px 0 0; /* Rounded top corners */
}

.logo {
    font-size: 48px; /* Larger font size for the logo */
    color: #007bff; /* Blue logo color */
}

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

.image-container img {
    max-width: 100%; /* Responsive image */
    height: auto;
    border-radius: 8px; /* Rounded corners for image */
}

.details {
    margin-top: 10px;
    padding: 10px;
    background-color: #f1f1f1; /* Light grey background for details */
    border-radius: 5px; /* Rounded corners */
}

.details label {
    font-weight: bold; /* Bold labels */
}

.button {
    background-color: #007bff; /* Button background */
    color: #ffffff; /* Button text color */
    padding: 10px 20px;
    border: none;
    border-radius: 5px; /* Rounded button corners */
    cursor: pointer; /* Pointer cursor on hover */
}

.button:hover {
    background-color: #0056b3; /* Darken button on hover */
}

/* Since infobox is a table, many infobox templates take advantage of this to add columns and rows to the infobox itself rather than as part of a new table inside them. This class should be discouraged and removed on the long term, but allows us to at least identify these tables going forward
Currently in use on: [[Module:Infobox3cols]]
Fixes issue described in https://phabricator.wikimedia.org/F55300125 on Vector 2022.
*/
@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;
  }
}