This repository has been archived by the owner on Apr 29, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
popup.css
100 lines (90 loc) · 2.05 KB
/
popup.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
#scroll-hide {
overflow-x: hidden;
overflow-y: hidden;
}
.btn, #delay, .alert {
margin: 5px;
}
form {
margin-right: -5px;
margin-left: 5px;
}
.btn, .alert, #content {
display: none;
}
body {
padding-top: 15px;
}
#info {
margin-top: -24px;
}
#stats {
margin-top: 20px;
text-align: right;
float: right;
}
#wait-spider {
height: 150px;
margin-top: 20px;
text-align: center;
}
#wait {
margin: 20px;
text-align: center;
}
#help {
float: right;
margin-right: 5px;
}
.hot-header {
position: relative;
}
.remove-column {
position: absolute;
right: 0;
}
#hot {
overflow: hidden;
}
#infinateScrollElement {
margin-left: 5px;
}
html {
scrollbar-face-color: #646464;
scrollbar-base-color: #646464;
scrollbar-3dlight-color: #646464;
scrollbar-highlight-color: #646464;
scrollbar-track-color: #000;
scrollbar-arrow-color: #000;
scrollbar-shadow-color: #646464;
}
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background-color: #646464;}
::-webkit-scrollbar-track-piece { background-color: #000;}
::-webkit-scrollbar-thumb { height: 50px; background-color: #666; border-radius: 3px;}
::-webkit-scrollbar-corner { background-color: #646464;}
::-webkit-resizer { background-color: #666;}
/* Buttons */
::-webkit-scrollbar-button:single-button {
background-color: #646464;
display: block;
border-style: solid;
height: 13px;
width: 16px;
}
/* Up */
::-webkit-scrollbar-button:single-button:vertical:decrement {
border-width: 0 8px 8px 8px;
border-color: transparent transparent #000 transparent;
}
::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
border-color: transparent transparent #646464 transparent;
}
/* Down */
::-webkit-scrollbar-button:single-button:vertical:increment {
border-width: 8px 8px 0 8px;
border-color: #000 transparent transparent transparent;
}
::-webkit-scrollbar-button:vertical:single-button:increment:hover {
border-color: #646464 transparent transparent transparent;
}