MediaWiki:Common.css/src/template/living preferences.scss

From Terraria Wiki
Jump to navigation Jump to search
/********* [[Template:Living preferences]] *********/

.living-preferences {

	$love-green: #56e55670;
	$like-lime: #b7e55670;
	$dislike-orange: #e5bd5670;
	$hate-red: #e55a5670;

	// the Legacy theme's blue "th" background doesn't mix well with these
	// partly transparent colors, hence the extra rules to fix the colors

	.love {
		background-color: $love-green;
		@theme Legacy {
			th {
				background-color: $love-green;
			}
		}
	}

	.like {
		background-color: $like-lime;
		@theme Legacy {
			th {
				background-color: $like-lime;
			}
		}
	}

	.dislike {
		background-color: $dislike-orange;
		@theme Legacy {
			th {
				background-color: $dislike-orange;
			}
		}
	}

	.hate {
		background-color: $hate-red;
		@theme Legacy {
			th {
				background-color: $hate-red;
			}
		}
	}
}