SteamStat.us - Windows 95 Theme

SteamStat.us - Windows 95 theme

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ==UserStyle==
@name         SteamStat.us - Windows 95 Theme
@version      20241119.00.11
@namespace    https://github.com/Nick2bad4u/UserStyles
@description  SteamStat.us - Windows 95 theme
@homepageURL  https://github.com/Nick2bad4u/UserStyles
@author       Nick2bad4u
@license      UnLicense
==/UserStyle== */
@-moz-document domain("steamstat.us") {
	/* Main title styling with Windows 95 look */
	.title {
		display: flex;
		position: relative;
		justify-content: center;
		align-items: center;
		margin: 10px 0;
		border: 2px solid #ffffff;
		border-right-color: #808080;
		border-bottom-color: #808080;
		background-color: #c0c0c0; /* Light gray background */
		padding: 5px;
		color: black;
		font-weight: bold;
		font-size: 2em;
		font-family: 'MS Sans Serif', Tahoma, Verdana,
			Arial, sans-serif;
		text-align: center;
	}

	/* Logo addition with Windows 95 logo */
	.title::after {
		display: inline-block;
		margin-left: 10px;
		background: url('https://i.gyazo.com/e96376514655b9307ce82826b1ae2691.png')
			no-repeat center;
		background-size: contain;
		width: 150px;
		height: 50px;
		content: '';
	}

	/* Link styling */
	a {
		color: #0000ee; /* Standard link color */
		font-weight: normal;
		font-family: 'MS Sans Serif', Tahoma, Verdana,
			Arial, sans-serif;
		text-decoration: underline;
	}

	a:hover {
		color: #551a8b; /* Visited link color */
	}

	/* Status colors */
	.good {
		color: black;
	}
	.minor {
		color: #808080; /* Dark gray */
	}
	.major {
		color: #ff0000; /* Red */
	}

	/* Refresh button styling */
	#js-refresh {
		cursor: pointer;
		border: 2px solid #ffffff;
		border-right-color: #808080;
		border-bottom-color: #808080;
		background-color: #c0c0c0;
		padding: 2px 5px;
		color: black;
		font-weight: bold;
		font-family: 'MS Sans Serif', Tahoma, Verdana,
			Arial, sans-serif;
	}

	#js-refresh:active {
		border-top-color: #808080;
		border-right-color: #ffffff;
		border-bottom-color: #ffffff;
		border-left-color: #808080;
	}

	/* Container styling */
	.services,
	#psa,
	noscript,
	footer,
	div.regions-title.sep {
		margin: 10px;
		border: 2px solid #ffffff;
		border-right-color: #808080;
		border-bottom-color: #808080;
		background-color: #c0c0c0; /* Light gray */
		padding: 10px;
		color: black;
		font-family: 'MS Sans Serif', Tahoma, Verdana,
			Arial, sans-serif;
	}

	/* Body styling */
	body {
		margin: 0;
		background-color: #008080; /* Teal background */
		font-family: 'MS Sans Serif', Tahoma, Verdana,
			Arial, sans-serif;
	}

	/* Tooltip customization */
	[data-tooltip]:before {
		position: absolute;
		top: -30px;
		left: 0;
		visibility: hidden;
		opacity: 0;
		z-index: 1000;
		border: 1px solid #000000;
		background-color: #ffffe0; /* Light yellow */
		padding: 5px;
		width: 200px;
		content: attr(data-tooltip);
		color: black;
		font-size: 0.8em;
		font-family: 'MS Sans Serif', Tahoma, Verdana,
			Arial, sans-serif;
	}
	[data-tooltip]:hover:before {
		visibility: visible;
		opacity: 1;
	}

	/* Buttons */
	button {
		cursor: pointer;
		border: 2px solid #ffffff;
		border-right-color: #808080;
		border-bottom-color: #808080;
		background-color: #c0c0c0;
		padding: 2px 5px;
		color: black;
		font-family: 'MS Sans Serif', Tahoma, Verdana,
			Arial, sans-serif;
	}
	button:active {
		border-top-color: #808080;
		border-right-color: #ffffff;
		border-bottom-color: #ffffff;
		border-left-color: #808080;
	}

	/* Remove modern scrollbars */
	::-webkit-scrollbar {
		width: 16px;
	}
	::-webkit-scrollbar-track {
		border-top: 2px solid #ffffff;
		border-right: 2px solid #808080;
		border-bottom: 2px solid #808080;
		border-left: 2px solid #ffffff;
		background: #c0c0c0;
	}
	::-webkit-scrollbar-thumb {
		border: 1px solid #808080;
		background: #e0e0e0;
	}
}