SteamStat.us - Sunset Theme

SteamStat.us - Bright and Vibrant Style

当前为 2024-12-04 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

/* ==UserStyle==
@name         SteamStat.us - Sunset Theme
@version      20241115.16.04
@namespace    https://github.com/Nick2bad4u/UserStyles
@description  SteamStat.us - Bright and Vibrant Style
@homepageURL  https://github.com/Nick2bad4u/UserStyles
@author       nick2bad4u
@license      UnLicense
==/UserStyle== */
@-moz-document domain("steamstat.us") {
	.title {
		margin: 10px 0;
		background: linear-gradient(
			145deg,
			#ff7f50,
			#00ffff,
			#ffd700
		);
		-webkit-background-clip: text;
		color: #fff;
		font-weight: 300;
		font-size: 2.6em;
		/* Bright Gradient Title */
		text-align: center;
		text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
		-webkit-text-fill-color: transparent;
	}

	a {
		/* Vibrant Links */
		color: #00ffff;
		font-weight: bold;
		text-decoration: none;
		text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
	}

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

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

	.good {
		/* Bright Lime Green */
		color: #32cd32;
		text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
	}

	.minor {
		/* Electric Purple */
		color: #ba55d3;
		font-weight: bold;
		text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
	}

	.major {
		/* Bright Gold */
		color: #ffd700;
		font-weight: bold;
		text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
	}

	#js-refresh {
		/* Refresh Indicator */
		color: #ff4500;
		font-weight: bolder;
		text-shadow: 0 0 8px rgba(255, 69, 0, 0.8);
	}

	.services,
	#psa,
	noscript {
		position: relative;
		box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.6);
		border: 2px solid #ffd700;
		border-radius: 6px;
		background: linear-gradient(
			145deg,
			#ff4500,
			#1e90ff
		);
		color: #ffffff;
		font-size: 1em;
		line-height: 1.5;
		text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
	}

	body {
		margin: 0;
		background: linear-gradient(
			145deg,
			#ff7f50,
			#1e90ff,
			#ffd700
		);
		color: #ffffff;
		font-weight: 300;
		font-size: 16px;
		font-family: 'Roboto', Arial, sans-serif;
		text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
	}

	[data-tooltip]:before {
		/* Tooltip 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: linear-gradient(
			145deg,
			#ffd700,
			#ba55d3,
			#1e90ff
		);
		padding: 8px;
		width: 96%;
		color: #ffffff;
		font-style: italic;
		font-weight: 300;
		text-align: left;
		text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
	}

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