-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproxyManager.css
93 lines (78 loc) · 1.43 KB
/
proxyManager.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
/* Styles for the snackbar */
#snackbar {
visibility: hidden;
min-width: 250px;
background-color: #333;
color: #fff;
text-align: center;
border-radius: 5px;
padding: 10px;
position: fixed;
z-index: 1;
left: 50%;
bottom: 30px;
transform: translateX(-50%);
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
#snackbar.show {
visibility: visible;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@keyframes fadein {
from {
bottom: 0;
opacity: 0;
}
to {
bottom: 30px;
opacity: 1;
}
}
@keyframes fadeout {
from {
bottom: 30px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
/* disabled element */
.disabled {
pointer-events: none;
/* Disables pointer events on the element */
opacity: 0.5;
/* Reduces opacity to visually indicate it's disabled */
}
/* floating button */
.fab {
position: fixed;
width: 40px;
height: 40px;
bottom: 40px;
left: 40px;
background-color: #0C9;
color: #FFF;
border-radius: 50px;
display: flex;
align-items: center;
justify-content: center;
}
/* .fab * {
margin-top: 22px;
} */
/* bracket element */
.bracket::before {
content: "[";
padding-right: 8px;
}
.bracket::after {
content: "]";
padding-left: 8px;
}
.rainbow-text {
background-image: linear-gradient(to left, violet, rgb(176, 36, 211), rgb(84, 84, 231), green, #d2d20f, #eb9c0b, red);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}