-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (53 loc) · 952 Bytes
/
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
body {
padding: 20px;
}
#browser-wrapper {
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.3);
}
#browser-head {
background-color: rgba(39, 40, 74, 0.8);
border-radius: 10px 10px 0 0;
text-align: center;
color: white;
}
#browser-body {
background-color: rgba(0, 0, 0, 0.8);
padding: 5px;
border-radius: 0 0 10px 10px;
}
#id {
display: block;
}
#server-list {
background-color: rgba(0, 0, 0, 0.5);
border-color: white;
border-radius: 10px;
color: white;
width: 100%;
padding: 5px;
margin: 0 auto;
}
#server-list-head th {
border-bottom: 1px solid white;
border-collapse: separate;
border-spacing: 5px 5px;
}
tbody > tr:hover {
background: rgba(0, 0, 255, 0.3);
cursor: pointer;
}
input {
border-radius: 7px;
}
button {
border-radius: 7px;
background-color: rgba(0, 0, 0, 0.5);
color: white;
}
#browser-tools {
padding: 10px;
}
#browser-direct-input {
width: 60%;
}