Jump to content

Module:2-ary truth table/styles.css

From Wikipedia, the free encyclopedia
.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%);
	}
}