<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Emoji styles
 * http://www.unicode.org/emoji/charts/full-emoji-list.html
 *
 * @author Ville Juppi
 */
.emoji
{
	text-decoration: none;
	font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", Times, Symbola, Aegyptus, Code2000, Code2001, Code2002, Musica, serif, LastResort;
}

.emoji.red
{
	color: red;
}

.emoji.blue
{
	color: #0091ff;
}

.emoji.white
{
	color: #fff;
}

.emoji.yellow
{
	color: #fffb00;
}

.emoji.white_background
{
	padding: 2px;
	background-color: #fff;
}

.emoji::after
{
	text-shadow: 0px 0px 4px white,
		0px 0px 4px white,
		0px 0px 4px white,
		0px 0px 4px white,
		0px 0px 4px white,
		0px 0px 4px white,
		0px 0px 4px white,
		0px 0px 4px white,
		0px 0px 4px white,
		0px 0px 4px white,
		0px 0px 4px white,
		0px 0px 4px white,
		0px 0px 4px white;
}

.skull_and_crossbones::after
{
	content: "\2620";
}

.anger_symbol::after
{
	content: "\1F4A2";
}

.collision::after
{
	content: "\1F4A5";
}

.sweat_droplets::after
{
	content: "\1F4A6";
}

.white_heavy_check_mark::after
{
	content: "\2705";
}

.ladder::after
{
	content: "\1FA9C";
}

.construction::after
{
	content: "\1F6A7";
}</pre></body></html>