SteamStat.us - Bright and Vibrant Style
当前为
/* ==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;
}
}