-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
120 lines (100 loc) · 1.65 KB
/
Copy pathpopup.css
File metadata and controls
120 lines (100 loc) · 1.65 KB
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
body {
font-family: Arial, sans-serif;
width: 512px;
max-height: 768px;
margin: 0;
padding: 10px;
box-sizing: border-box;
overflow-y: auto;
background-color: #131313;
}
img {
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
ul {
list-style-type: none;
padding: 0;
}
li {
padding: 8px;
margin-bottom: 5px;
overflow-wrap: break-word;
cursor: pointer;
}
footer {
padding: 8px 0;
}
footer > p {
color: rgb(200, 200, 200);
text-align: center;
margin: 0;
}
footer > p > a,
footer > p > a:visited {
color: rgb(0, 168, 252);
}
::-webkit-scrollbar {
width: 0.5em;
}
::-webkit-scrollbar-thumb:hover {
background: rgb(31, 31, 31);
}
::-webkit-scrollbar-track {
background: #131313;
}
::-webkit-scrollbar-thumb {
background: #313131;
}
@supports not selector(::-webkit-scrollbar) {
* {
scrollbar-color: #0081ff transparent;
}
}
.footer-emoji {
height: 14px;
vertical-align: middle;
display: inline-block;
}
nav {
display: flex;
margin-bottom: 16px;
}
nav > button {
width: 50%;
height: 40px;
border-style: none;
background-color: transparent;
cursor: pointer;
color: rgb(180, 180, 180);
}
nav > button.active {
color: white;
border-bottom-style: solid;
border-bottom-width: 1px;
border-bottom-color: rgb(80, 136, 88);
}
.blank-archive {
background-color: #2a2a2a;
padding: 8px 48px;
}
.blank-archive > * {
text-align: center;
}
.blank-archive > h1 {
font-size: 15px;
font-weight: 500;
color: rgb(225, 225, 225);
}
.blank-archive > p {
font-size: 12px;
font-weight: 400;
color: rgb(190, 200, 220);
}
.blank-archive > p:nth-child(2) {
margin-bottom: 0;
}
.blank-archive > p:last-child {
margin-top: 0;
}