-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (69 loc) · 1.25 KB
/
style.css
File metadata and controls
80 lines (69 loc) · 1.25 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
body {
font-family: Arial, sans-serif;
padding: 20px;
background-color: #d4d4d4;
}
a {
color: rgb(0, 0, 0);
text-decoration: none;
}
a:hover {
color: rgba(0, 0, 0, 0.5);
}
h1, h3, p {
color: black;
text-align: center;
}
.proxy-list {
margin-top: 20px;
list-style-type: none;
padding: 0;
}
.proxy-list li {
color: black;
margin: 5px 0;
padding: 10px;
background-color: rgb(242, 242, 242, 0.6);
border: 0px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: space-between;
user-select: none;
}
.status {
font-size: 18px;
margin-right: 10px;
}
.yea {
color: rgb(0, 150, 0);
}
.nah {
color: rgb(255, 0, 0);
}
/* Tooltip container */
.control-tooltip {
position: relative;
display: inline-block;
cursor: default;
}
.control-tooltip::after {
content: "This tests whether the fetcher is working! If it's green, refresh the page.";
visibility: hidden;
width: 200px;
background-color: rgba(255, 255, 255, 0.9);
color: rgb(255, 0, 0);
text-align: center;
border-radius: 5px;
padding: 5px;
position: absolute;
bottom: 125%;
left: 50%;
margin-left: -100px;
opacity: 0;
transition: opacity 0.3s;
}
.control-tooltip:hover::after {
visibility: visible;
opacity: 1;
}