User:Rjt/timeless.css: Difference between revisions
From Game Making Tools Wiki
< User:Rjt
|  (Removed everything, as it's default now!) Tag: Blanking | m (Infobox colour change) | ||
| Line 1: | Line 1: | ||
| /*	Variables	*/ | |||
| :root { | |||
| 	--colour_tertiary:lightyellow; | |||
| } | |||
| /*	Infoboxes	*/ | |||
| table#infobox { | |||
| 	background-color:var(--colour_tertiary); | |||
| 	border:var(--colour_secondary) 3px dashed; | |||
| 	box-shadow:0.5em 0.5em 0px rgba(50,0,0,0.25) | |||
| 	display:block; | |||
| 	float:right; | |||
| 	margin:1em 0 1em 1em; | |||
| 	padding:1em; | |||
| 	text-align:left; | |||
| 	width:auto; | |||
| } | |||
| } | |||
| table#infobox tr.list > td, | |||
| table#infobox tr.list > th { | |||
| 	border-top:var(--colour_secondary) 1px dashed; | |||
| 	vertical-align:top; | |||
| } | |||
| table#infobox tr.item-end > td { | |||
| 	border-bottom:var(--colour_secondary) 1px dashed; | |||
| } | |||
| table#infobox td.date { | |||
| 	text-align:right; | |||
| } | |||
Revision as of 02:59, 9 August 2020
/*	Variables	*/
:root {
	--colour_tertiary:lightyellow;
}
/*	Infoboxes	*/
table#infobox {
	background-color:var(--colour_tertiary);
	border:var(--colour_secondary) 3px dashed;
	box-shadow:0.5em 0.5em 0px rgba(50,0,0,0.25)
	display:block;
	float:right;
	margin:1em 0 1em 1em;
	padding:1em;
	text-align:left;
	width:auto;
}
}
table#infobox tr.list > td,
table#infobox tr.list > th {
	border-top:var(--colour_secondary) 1px dashed;
	vertical-align:top;
}
table#infobox tr.item-end > td {
	border-bottom:var(--colour_secondary) 1px dashed;
}
table#infobox td.date {
	text-align:right;
}
