SteamStat.us - Re-Remastered - Steam Style

SteamStat.us - Re-Remastered - Steam theme

当前为 2025-01-21 提交的版本,查看 最新版本

/* ==UserStyle==
@name         SteamStat.us - Re-Remastered - Steam Style
@version      20241115.16.03
@namespace    typpi.online
@supportURL   https://github.com/Nick2bad4u/UserStyles/issues
@description  SteamStat.us - Re-Remastered - Steam theme
@homepageURL  https://github.com/Nick2bad4u/UserStyles
@author       Nick2bad4u
@license      UnLicense
==/UserStyle== */

@-moz-document url("https://steamstat.us/")
{
	.title {
		margin: 10px 0;
		color: #b4d2ff;
		font-weight: 300;
		font-size: 2.6em;
		/* Steam Status Title */
		text-align: center;
		text-shadow: 2px 2px 8px rgb(0 0 0 / 80%);
	}

	a {
		color: #66c0f4;
		font-weight: 700;
		text-decoration: none;
		text-shadow: 1px 1px 4px rgb(0 0 0 / 60%);
	}

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

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

	.good {
		/* Soft Green */
		color: #8bc34a;
		text-shadow: 1px 1px 6px rgb(0 0 0 / 80%);
	}

	.minor {
		/* Soft Teal */
		color: #03a9f4;
		font-weight: 700;
		text-shadow: 1px 1px 6px rgb(0 0 0 / 80%);
	}

	.major {
		/* Soft Yellow */
		color: #ffeb3b;
		font-weight: 700;
		text-shadow: 1px 1px 6px rgb(0 0 0 / 80%);
	}

	#js-refresh {
		/* Refreshing in idk seconds */
		color: #82cffd;
		font-weight: bolder;
		text-shadow: 0 0 8px rgb(0 0 0 / 80%);
	}

	.services,
	#psa,
	noscript {
		position: relative;
		box-shadow: 0 4px 8px rgb(0 0 0 / 40%);
		border: 1px solid #4b4b4b;
		border-radius: 6px;
		background: linear-gradient(
			145deg,
			#2a2a2a,
			#1c1c1c
		);
		color: #eaeaea;
		font-size: 1em;
		line-height: 1.5;
		text-shadow: 0 0 6px rgb(0 0 0 / 60%);
	}

	body {
		margin: 0;
		background: #171a21;
		color: #b8c6dc;
		font-weight: 300;
		font-size: 16px;
		font-family: Roboto, Arial, sans-serif;
		text-shadow: 1px 1px 3px rgb(0 0 0 / 80%);
	}

	[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: #1b2838;
		padding: 8px;
		width: 96%;
		color: #c7d5e0;
		font-style: italic;
		font-weight: 300;
		text-align: left;
		text-shadow: 1px 1px 3px rgb(0 0 0 / 80%);
	}

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