-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
68 lines (56 loc) · 1.03 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
@charset "utf-8";
* { font-family: Verdana, Geneva, sans-serif; }
body {
background-color: #fff;
color: #000;
}
.selectbox,
.form-text {
border-radius: 8px;
font-size: 14px;
padding: 4px;
}
.scroll-container {
border-radius: 8px;
margin: 10px 6px 6px;
overflow: hidden;
}
#content-area {
font-size: 14px;
height: 300px;
line-height: 140%;
overflow: scroll;
overflow-x: hidden;
padding: 6px 10px;
resize: none;
width: 618px;
}
.footer {
font-size: 10px;
text-align: right;
}
.footer a {
color: inherit;
text-decoration: none;
}
.footer a:hover {
color: #bcbcbc;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #2e2e2e;
color: #fff;
}
.selectbox {
background-color: #6b6b6b;
color: #fff;
}
#content-area {
background-color: #6b6b6b;
color: #fff;
}
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #b0bbbf; }
::-webkit-scrollbar-thumb { background: #393c3f; }
::-webkit-scrollbar-thumb:hover { background: #232527; }