-
Notifications
You must be signed in to change notification settings - Fork 1
/
SteamStat.us-Re-Remastered-Green-BlackStyle.user.css
122 lines (110 loc) · 2.58 KB
/
SteamStat.us-Re-Remastered-Green-BlackStyle.user.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/* ==UserStyle==
@name SteamStat.us - Re-Remastered - Green/Black Style
@version 20241115.16.02
@namespace https://github.com/Nick2bad4u/UserStyles
@description SteamStat.us - Re-Remastered - Green/Black theme
@homepageURL https://github.com/Nick2bad4u/UserStyles
@author Nick2bad4u
@license UnLicense
==/UserStyle== */
@-moz-document domain("steamstat.us") {
.title {
/* Black/Green Status Title */
text-align: center;
margin: 10px 0;
font-size: 2.6em;
font-weight: 300;
color: #00ff00;
text-shadow: 2px 2px 8px rgba(0, 255, 0, 0.8);
}
a {
color: #32cd32;
text-decoration: none;
text-shadow: 1px 1px 4px rgba(50, 205, 50, 0.6);
font-weight: bold;
}
a:hover {
color: #ffffff;
text-decoration: underline;
}
.pull-right,
.service .status {
text-align: right;
float: right;
}
.good {
/* Bright Green */
color: #32cd32;
text-shadow: 1px 1px 6px rgba(50, 205, 50, 0.8);
}
.minor {
/* Light Green */
color: #98fb98;
text-shadow: 1px 1px 6px rgba(152, 251, 152, 0.8);
font-weight: bold;
}
.major {
/* Dark Green */
color: #006400;
text-shadow: 1px 1px 6px rgba(0, 100, 0, 0.8);
font-weight: bold;
}
#js-refresh {
/* Refreshing in idk seconds */
color: #32cd32;
text-shadow: 0 0 8px rgba(50, 205, 50, 0.8);
font-weight: bolder;
}
.services,
#psa,
noscript {
position: relative;
background: linear-gradient(145deg, #282a36, #191a21);
border: 1px solid #32cd32;
border-radius: 6px;
font-size: 1em;
line-height: 1.5;
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
color: #f8f8f2;
}
body {
margin: 0;
color: #00ff00;
background: #121212;
font-family: 'Roboto', Arial, sans-serif;
font-size: 16px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
font-weight: 300;
}
[data-tooltip]:before {
/* Time since last status change Box */
visibility: hidden;
opacity: 0;
font-size: 0.9em;
content: attr(data-tooltip);
overflow: hidden;
white-space: pre;
word-wrap: break-word;
position: absolute;
top: 0;
left: 2%;
width: 96%;
background: #21222c;
color: #00ff00;
text-align: left;
padding: 8px;
border-radius: 6px;
z-index: 1;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
font-style: italic;
font-weight: 300;
transition:
visibility 0s,
opacity 0.3s ease-in-out;
}
[data-tooltip]:hover:before {
visibility: visible;
opacity: 1;
}
}