Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:B9s LED table/styles.css: Difference between revisions

Template page
(oops, i forgot this is not used anymore)
(padding fix for citizen skin)
(One intermediate revision by the same user not shown)
Line 1: Line 1:
/* NOT USED ANYMORE - kept for historical reasons */
.b9s-table {
.b9s-table {
text-align: center;
text-align: center;
Line 19: Line 17:
@media screen and (prefers-color-scheme: dark) {
@media screen and (prefers-color-scheme: dark) {
/* only timeless has a dark theme skin right now */
/* only timeless has a dark theme skin right now */
body.skin-timeless .b9s-table,
body.skin-timeless .b9s-table {
html.skin-theme-clientpref-os body.skin-citizen .b9s-table {
--loaded:  var(--loaded-d);
--loaded:  var(--loaded-d);
--missing: var(--missing-d);
--missing: var(--missing-d);
Line 27: Line 24:
}
}


html.skin-theme-clientpref-night body.skin-citizen .b9s-table {
html.skin-citizen-dark .b9s-table {
--loaded:  var(--loaded-d);
--loaded:  var(--loaded-d);
--missing: var(--missing-d);
--missing: var(--missing-d);
Line 33: Line 30:
}
}


/*html.skin-citizen-dark .b9s-table td {
html.skin-citizen-dark .b9s-table td {
padding: 10px; /* default padding is 10px 20px 10px 0 but it looks weird with bg colors  
padding: 10px; /* default padding is 10px 20px 10px 0 but it looks weird with bg colors */
}*/
}


.b9s-loaded  { background-color: var(--loaded)  }
.b9s-loaded  { background-color: var(--loaded)  }
.b9s-missing { background-color: var(--missing) }
.b9s-missing { background-color: var(--missing) }
.b9s-corrupt { background-color: var(--corrupt) }
.b9s-corrupt { background-color: var(--corrupt) }

Revision as of 10:11, 6 October 2022

.b9s-table {
	text-align: center;
	
	--loaded-l:  #c8ffc8;
	--missing-l: #ffc8c8;
	--corrupt-l: #c8c8ff;
	
	--loaded-d:  #4b804b;
	--missing-d: #804b4b;
	--corrupt-d: #4b4b80;
	
	--loaded:  var(--loaded-l);
	--missing: var(--missing-l);
	--corrupt: var(--corrupt-l);
}

@media screen and (prefers-color-scheme: dark) {
	/* only timeless has a dark theme skin right now */
	body.skin-timeless .b9s-table {
		--loaded:  var(--loaded-d);
		--missing: var(--missing-d);
		--corrupt: var(--corrupt-d);
	}
}

html.skin-citizen-dark .b9s-table {
	--loaded:  var(--loaded-d);
	--missing: var(--missing-d);
	--corrupt: var(--corrupt-d);
}

html.skin-citizen-dark .b9s-table td {
	padding: 10px; /* default padding is 10px 20px 10px 0 but it looks weird with bg colors */
}

.b9s-loaded  { background-color: var(--loaded)  }
.b9s-missing { background-color: var(--missing) }
.b9s-corrupt { background-color: var(--corrupt) }