MediaWiki:Common.css: Difference between revisions

From ProtoFab
Jump to navigation Jump to search
Content deleted Content added
No edit summary
hide "talk" tabs
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* Keep header and page clean */
.mw-page-container {
.mw-page-container {
max-width: 100%;
max-width: 100%;
Line 16: Line 15:
}
}


/* Clean tables */
.wikitable {
.wikitable {
font-size: 0.95rem;
font-size: 0.95rem;
Line 27: Line 25:
}
}


/* Make general content safer on small screens */
img,
img,
video,
video,
Line 40: Line 37:
}
}


/* Mobile layout */
/* Main page layout */
.mp-banner {
background: lightblue;
border: 1px solid #000;
padding: 2rem 1rem;
text-align: center;
font-size: 2.2rem;
font-weight: 700;
color: #000;
margin: 0 0 1rem 0;
}

.mp-toplinks {
display: grid;
grid-template-columns: repeat(3, 1fr);
background: lightblue;
border: 1px solid #000;
margin: 0 0 1.25rem 0;
}

.mp-toplink {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
min-height: 100px;
padding: 1rem;
border-right: 2px solid #000;
box-sizing: border-box;
}

.mp-toplink:last-child {
border-right: none;
}

.mp-sections {
display: grid;
grid-template-columns: 1fr 1fr 0.8fr;
border: 1px solid #cedff2;
background: #f5fffa;
}

.mp-section {
padding: 1rem;
border-right: 1px solid #a2a9b1;
box-sizing: border-box;
}

.mp-section:last-child {
border-right: none;
}

.mp-section h2 {
margin: 0 0 0.75rem 0;
padding: 0.5rem 0.75rem;
text-align: center;
font-size: 1.25rem;
background: #eaecf0;
border: 1px solid #a2a9b1;
}

.mp-section ul {
margin: 0;
padding-left: 1.2rem;
}

.mp-section li {
margin: 0.45rem 0;
}

.mp-section a {
white-space: normal;
word-break: break-word;
}

@media (max-width: 768px) {
@media (max-width: 768px) {
/* Reduce page side padding */
.mw-body,
.mw-body,
.vector-body {
.vector-body {
Line 49: Line 119:
}
}


/* Welcome banner */
.mp-banner {
font-size: 1.5rem;
.mainpage-banner {
width: 100% !important;
padding: 1.2rem 0.8rem;
box-sizing: border-box;
line-height: 1.4;
padding: 1rem !important;
font-size: 1.5rem !important;
line-height: 1.4 !important;
text-align: center;
}
}


.mp-toplinks,
/* Top quick links table must stop behaving like a table */
.mp-sections {
.mainpage-links,
grid-template-columns: 1fr;
.mainpage-links tbody,
.mainpage-links tr {
display: block !important;
width: 100% !important;
}
}


.mp-toplink,
.mainpage-links td,
.mainpage-links th {
.mp-section {
border-right: none;
display: block !important;
border-bottom: 1px solid #a2a9b1;
width: 100% !important;
box-sizing: border-box;
text-align: center;
padding: 1rem 0.75rem !important;
border-left: none !important;
border-right: none !important;
border-top: 1px solid #a2a9b1 !important;
white-space: normal !important;
}
}


.mainpage-links tr:first-child td:first-child,
.mp-toplink:last-child,
.mainpage-links tr:first-child th:first-child {
.mp-section:last-child {
border-top: none !important;
border-bottom: none;
}
}
}


/* Main section table must also stop behaving like a table */
.mainpage-sections,
.mainpage-sections tbody,
.mainpage-sections tr {
display: block !important;
width: 100% !important;
}


/* Hide "discussion" + "talk" tabs -- Demis 2026-05-28 */
.mainpage-sections td,
#ca-talk { display: none !important; }
.mainpage-sections th {
display: block !important;
#ca-talk { display: none !important; }
width: 100% !important;
box-sizing: border-box;
padding: 0.9rem !important;
white-space: normal !important;
border-left: none !important;
border-right: none !important;
}

.mainpage-sections th {
text-align: center;
font-size: 1.1rem;
}

/* Let long links wrap normally */
.mainpage-sections a,
.mainpage-links a {
white-space: normal !important;
word-break: break-word;
}

/* Optional: make normal wikitable content scroll instead of crushing */
.wikitable {
display: block;
width: 100%;
overflow-x: auto;
white-space: nowrap;
}
}

Latest revision as of 01:06, 28 May 2026

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

.mw-page-container {
	max-width: 100%;
}

.vector-header-container,
.vector-sticky-header-container {
	border-bottom: 1px solid #eaecf0;
}

.mw-body {
	font-size: 0.98rem;
	line-height: 1.6;
}

.wikitable {
	font-size: 0.95rem;
	border-collapse: collapse;
}

.wikitable th,
.wikitable td {
	padding: 0.5em 0.75em;
}

img,
video,
iframe {
	max-width: 100%;
	height: auto;
}

pre,
code {
	overflow-x: auto;
}

/* Main page layout */
.mp-banner {
	background: lightblue;
	border: 1px solid #000;
	padding: 2rem 1rem;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 700;
	color: #000;
	margin: 0 0 1rem 0;
}

.mp-toplinks {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: lightblue;
	border: 1px solid #000;
	margin: 0 0 1.25rem 0;
}

.mp-toplink {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 100px;
	padding: 1rem;
	border-right: 2px solid #000;
	box-sizing: border-box;
}

.mp-toplink:last-child {
	border-right: none;
}

.mp-sections {
	display: grid;
	grid-template-columns: 1fr 1fr 0.8fr;
	border: 1px solid #cedff2;
	background: #f5fffa;
}

.mp-section {
	padding: 1rem;
	border-right: 1px solid #a2a9b1;
	box-sizing: border-box;
}

.mp-section:last-child {
	border-right: none;
}

.mp-section h2 {
	margin: 0 0 0.75rem 0;
	padding: 0.5rem 0.75rem;
	text-align: center;
	font-size: 1.25rem;
	background: #eaecf0;
	border: 1px solid #a2a9b1;
}

.mp-section ul {
	margin: 0;
	padding-left: 1.2rem;
}

.mp-section li {
	margin: 0.45rem 0;
}

.mp-section a {
	white-space: normal;
	word-break: break-word;
}

@media (max-width: 768px) {
	.mw-body,
	.vector-body {
		padding-left: 0.75rem !important;
		padding-right: 0.75rem !important;
	}

	.mp-banner {
		font-size: 1.5rem;
		padding: 1.2rem 0.8rem;
		line-height: 1.4;
	}

	.mp-toplinks,
	.mp-sections {
		grid-template-columns: 1fr;
	}

	.mp-toplink,
	.mp-section {
		border-right: none;
		border-bottom: 1px solid #a2a9b1;
	}

	.mp-toplink:last-child,
	.mp-section:last-child {
		border-bottom: none;
	}
}


/* Hide "discussion" + "talk" tabs -- Demis 2026-05-28 */
#ca-talk { display: none !important; }
#ca-talk { display: none !important; }