-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
131 lines (118 loc) · 2.64 KB
/
style.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:[email protected]&display=swap');
body{
font-family: "Kode Mono", monospace;
background-color: black;
color: #dbf3ff;
text-shadow: 1px 1px 3px #35daff73;
}
#progressValue{
display: inline-block;
font-size: 31px;
}
#timeOutValue{
color: #dbf3ff;
background: #1a1a1a;
border: 1px solid #dbf3ff;
padding: 5px;
border-radius: 6px;
font-family: Kode monospace;
width: 35px;
}
.online { color: green; }
.offline { color: red; }
#progressBar {
width: 100%;
background-color: #f3f3f3;
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 10px;
overflow: hidden;
}
#progress {
width: 0;
height: 20px;
background-color: #4caf50;
border-radius: 5px;
text-align: center;
line-height: 20px;
color: white;
padding-right: 18px;
}
#loading-bar {
width: 55%;
height: 20px;
border: 1px solid #dbf3ff;
display: inline-flex;
/* overflow: hidden; */
padding: 4px;
}
.loading-bar-item {
height: 100%;
background: #dbf3ff;
box-shadow: 6px 1px 20px #35daffbf;
margin-left: 2px;
}
#currentUrl {
margin-top: 10px;
}
a{
all: unset;
cursor: pointer;
}
.creatorname{
color: white;
font-family: 'Kode Mono';
font-weight: bolder;
position: absolute;
top: 57px;
left: 169px;
font-size: 12px;
text-decoration: none;
letter-spacing: 2px;
}
button {
font-family: 'Kode Mono';
background-color: transparent;
color: #dbf3ff;
border: 2px solid #dbf3ff;
border-radius: 5px;
padding: 7px;
}
button:hover{
background-color: #dbf3ff;
color: black;
}
select{
font-family: 'Kode Mono';
background-color: transparent;
color: #dbf3ff;
border: 2px solid #dbf3ff;
border-radius: 5px;
padding: 7px;
}
/* option{
font-family: 'Kode Mono';
background-color: transparent;
color: #dbf3ff;
border: 2px solid #dbf3ff;
border-radius: 5px;
padding: 7px;
} */
option {
display: inline-block;
outline: 0;
cursor: pointer;
padding: 4px 11px;
font-size: 13px;
text-decoration: none;
line-height: 17px;
vertical-align: middle;
border: 1px solid;
border-radius: 6px;
color: #dbf3ff;
background-color: #1a1a1a;
border-color: #dbf3ff;
box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px 0px inset;
transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
transition-property: color, background-color, border-color;
}