Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.

Module:Scope Classification/styles.css: Difference between revisions

From Amaranth Legacy, available at amaranth-legacy.community
No edit summary
m Changed protection settings for "Module:Scope Classification/styles.css" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) [cascading]
 
(No difference)

Latest revision as of 10:42, September 11, 2025

.template-scope_classification {
	table-layout: fixed;
	border-collapse: separate;
	border-spacing: var(--space-xs) var(--space-sm);
	width: 75%;
	margin: 0 auto;
}

.template-scope_classification th {
	border-bottom: solid var(--border-width-thick) var(--color-amaranth-legacy-scope);
	box-shadow: var(--color-amaranth-legacy-scope) 0 0 10px;
    clip-path: inset(0 0 -10px 0);
	background: var(--color-surface-1);
	padding: var(--space-xxs);
}

.template-scope_classification td {
	text-align: center;
	width: 25%;
	border-bottom: solid var(--border-width-thick) var(--color-amaranth-legacy-scope);
	box-shadow: var(--color-amaranth-legacy-scope) 0 0 10px;
    clip-path: inset(0 0 -10px 0);
	background: var(--color-surface-1);
}

.template-scope_classification td ul {
	margin: 0;
	list-style: none;
}

@media screen and (max-width: 639px) {
	.template-scope_classification {
		width: 100%;
		border-spacing: var(--space-xxs) var(--space-xs);
	}
	
	.template-scope_classification td {
		width: calc(100% / 3);
	}
}