SteamStat.us - Re-Remastered - Pink/Black Style

SteamStat.us - Re-Remastered - Pink/Black theme

/* ==UserStyle==
@name         SteamStat.us - Re-Remastered - Pink/Black Style
@version      20241115.16.02
@namespace    https://github.com/Nick2bad4u/UserStyles
@description  SteamStat.us - Re-Remastered - Pink/Black theme
@homepageURL  https://github.com/Nick2bad4u/UserStyles
@author       Nick2bad4u
@license      UnLicense
==/UserStyle== */

@-moz-document domain("steamstat.us") {
	.title {
		margin: 10px 0;
		color: #ff79c6;
		font-weight: 300;
		font-size: 2.6em;
		/* Black/Pink Status Title */
		text-align: center;
		text-shadow: 2px 2px 8px
			rgba(255, 0, 128, 0.8);
	}

	a {
		color: #ff92df;
		font-weight: bold;
		text-decoration: none;
		text-shadow: 1px 1px 4px
			rgba(255, 20, 147, 0.6);
	}

	a:hover {
		color: #ffffff;
		text-decoration: underline;
	}

	.pull-right,
	.service .status {
		float: right;
		text-align: right;
	}

	.good {
		/* Neon Green */
		color: #50fa7b;
		text-shadow: 1px 1px 6px rgba(0, 128, 0, 0.8);
	}

	.minor {
		/* Neon Blue */
		color: #8be9fd;
		font-weight: bold;
		text-shadow: 1px 1px 6px rgba(0, 0, 255, 0.8);
	}

	.major {
		/* Neon Yellow */
		color: #f1fa8c;
		font-weight: bold;
		text-shadow: 1px 1px 6px
			rgba(255, 255, 0, 0.8);
	}

	#js-refresh {
		/* Refreshing in idk seconds */
		color: #ff92df;
		font-weight: bolder;
		text-shadow: 0 0 8px rgba(255, 105, 180, 0.8);
	}

	.services,
	#psa,
	noscript {
		position: relative;
		box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
		border: 1px solid #5a2a5b;
		border-radius: 6px;
		background: linear-gradient(
			145deg,
			#282a36,
			#191a21
		);
		color: #f8f8f2;
		font-size: 1em;
		line-height: 1.5;
		text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
	}

	body {
		margin: 0;
		background: #121212;
		color: #ff79c6;
		font-weight: 300;
		font-size: 16px;
		font-family: 'Roboto', Arial, sans-serif;
		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
	}

	[data-tooltip]:before {
		/* Time since last status change Box */
		visibility: hidden;
		opacity: 0;
		overflow: hidden;
		content: attr(data-tooltip);
		font-size: 0.9em;
		white-space: pre;
		word-wrap: break-word;
		position: absolute;
		top: 0;
		left: 2%;
		z-index: 1;
		transition:
			visibility 0s,
			opacity 0.3s ease-in-out;
		border-radius: 6px;
		background: #21222c;
		padding: 8px;
		width: 96%;
		color: #ff79c6;
		font-style: italic;
		font-weight: 300;
		text-align: left;
		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
	}

	[data-tooltip]:hover:before {
		visibility: visible;
		opacity: 1;
	}
}