-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (44 loc) · 790 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
#server-list {
display: flex;
flex-direction: row;
}
body {
background: #000;
color: #fff;
}
.server {
display: grid;
grid-template-columns: 24em max-content;
border: 1px solid #fff;
padding: 0.25em;
cursor: pointer;
user-select: none;
}
.server:hover {
background: #222;
}
ul {
margin: 0;
padding: 0;
list-style: none;
display: flex;
flex-direction: column;
gap: 0.25em;
}
#add-server {
padding: 1em;
border: 1px solid #fff;
display: flex;
justify-content: center;
gap: 1em;
margin-bottom: 2em;
}
input, button {
background: #000;
border: 1px solid #fff;
color: inherit;
padding: 0.25em 0.5em;
}
input[type="submit"], input[type="button"], button {
cursor: pointer;
}