-
Notifications
You must be signed in to change notification settings - Fork 21
/
display.css
170 lines (158 loc) · 3.3 KB
/
display.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#settingsDiv {
visibility: hidden;
padding: 1em;
overflow-y: auto;
color: rgb(48, 57, 66);
background-color: #ffffff;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: Cantarell, 'Segoe UI', Tahoma, sans-serif;
box-shadow: 0 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15);
background: white;
z-index: 8000;
}
#settingsDiv input[type='checkbox'],
#settingsDiv input[type='radio'] {
width: 13px;
height: 13px;
margin-right: 0.6em; /* As in the chrome://settings page */
margin-top: -3px;
vertical-align: middle;
}
#settingsDiv label {
display: inline-block;
color: rgb(48, 57, 66);
}
#settingsDiv input[type='text'] {
box-sizing: border-box;
color: rgb(68, 68, 68);
background-color: white;
border-color: rgb(191, 191, 191);
min-height: 2em;
border-radius: 2px;
font: inherit;
padding: 3px;
}
#settingsDiv button {
background-image: -webkit-linear-gradient(#ededed, #ededed 38%, #dedede);
border: 1px solid rgba(0, 0, 0, 0.25);
border-radius: 2px;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08),
inset 0 1px 2px rgba(255, 255, 255, 0.75);
color: #444;
font: inherit;
margin: 0 1px 0 0;
outline: none;
text-shadow: 0 1px 0 rgb(240, 240, 240);
}
#settingsDiv a {
vertical-align: middle;
text-decoration: none;
color: rgb(17, 85, 204);
}
#settingsDiv button:hover {
background-image: -webkit-linear-gradient(#f0f0f0, #f0f0f0 38%, #e0e0e0);
border-color: rgba(0, 0, 0, 0.3);
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12),
inset 0 1px 2px rgba(255, 255, 255, 0.95);
color: black;
}
#settingsShade {
z-index: 7999;
visibility: hidden;
position: fixed;
top: 0;
left: 0;
background-color: rgba(100, 100, 100, 0.45);
width: 100%;
height: 100%;
opacity: 0;
}
.fadeIn {
animation: fadeIn 200ms forwards;
}
.fadeOut {
animation: fadeOut 200ms forwards;
}
@keyframes fadeIn {
0% {
opacity: 0;
visibility: visible;
}
100% {
opacity: 1;
visibility: visible;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
visibility: visible;
}
99% {
opacity: 0;
visibility: visible;
}
100% {
opacity: 0;
visibility: hidden;
}
}
.banchecker-pagination input[type='button'] {
display: inline-block;
line-height: 24px;
background-color: rgba(103, 193, 245, 0.2);
border: 1px transparent;
border-radius: 3px;
cursor: pointer;
padding: 0px 16px;
color: #66c0f4;
}
.banchecker-pagination input[type='button']:hover {
background-color: #66c0f4;
border-color: #66c0f4;
color: #fff;
}
.banchecker-verdict {
position: absolute;
color: #ebebeb;
top: 0;
right: 0;
width: auto;
max-width: 28px;
height: 100%;
transition: all 0.3s;
z-index: 10;
cursor: default;
display: flex;
align-items: center;
}
.banchecker-verdict:hover {
max-width: 235px;
}
.banchecker-verdict div {
flex: 0 0 28px;
text-align: center;
overflow: hidden;
}
.banchecker-verdict:hover div {
flex: 0 0 0;
}
.banchecker-verdict span {
padding: 10px;
white-space: pre;
}
.banchecker-verdict.banned {
background-color: rgba(255, 0, 0, 0.4);
}
.banchecker-verdict.banned:hover {
background-color: rgba(255, 0, 0, 0.9);
}
.banchecker-verdict.clean {
background-color: rgba(0, 255, 0, 0.2);
}
.banchecker-verdict.clean:hover {
background-color: rgba(0, 150, 0, 0.9);
}