Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Created page with ".two-ary-truth-table th { font-weight: normal; } .two-ary-truth-table abbr { text-decoration: none; } .two-ary-truth-table tr td:nth-child(1), .two-ary-truth-table tr td:nth-child(2) { font-weight: bold; } .two-ary-truth-table td { text-align: center; padding-left: 14px; padding-right: 14px; } .two-ary-truth-table-false { background-color: var(--background-color-base, #fff); } .two-ary-truth-table-true { background-color: hsl(0, 100%, 90%); } .two-ary-truth..."
 
No edit summary
 
Line 1: Line 1:
/* [[Category:CSS from Wikimedia]] */
/* [[Category:Module CSS pages]] */
.two-ary-truth-table th {
.two-ary-truth-table th {
font-weight: normal;
font-weight: normal;

Latest revision as of 22:53, 3 March 2025

/* [[Category:CSS from Wikimedia]] */
/* [[Category:Module CSS pages]] */
.two-ary-truth-table th {
	font-weight: normal;
}

.two-ary-truth-table abbr {
	text-decoration: none;
}

.two-ary-truth-table tr td:nth-child(1),
.two-ary-truth-table tr td:nth-child(2) {
	font-weight: bold;
}

.two-ary-truth-table td {
	text-align: center;
	padding-left: 14px;
	padding-right: 14px;
}

.two-ary-truth-table-false {
	background-color: var(--background-color-base, #fff);
}

.two-ary-truth-table-true {
	background-color: hsl(0, 100%, 90%);
}

.two-ary-truth-table-border {
	border-left: 2px solid var(--border-color-interactive, #72777d);
}

@media screen {
	html.skin-theme-clientpref-night .two-ary-truth-table-true {
		background-color: hsl(0, 100%, 10%);
	}
}

@media screen and (prefers-color-scheme: dark) {
	html.skin-theme-clientpref-os .two-ary-truth-table-true {
		background-color: hsl(0, 100%, 10%);
	}
}