-
Notifications
You must be signed in to change notification settings - Fork 3
/
config-modal.css
66 lines (57 loc) · 972 Bytes
/
config-modal.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
#config-modal {
position: absolute;
display: none;
overflow: hidden;
height: 0;
opacity: 0;
pointer-events: none;
transition: 600ms ease-in-out;
}
#config-modal.show {
padding: 8px;
display: initial;
flex-flow: column;
height: initial;
opacity: 1;
pointer-events: initial;
background: #2e3749;
color: white;
right: 5px;
top: 208px;
border-radius: 5px;
width: 315px;
}
#config-modal.show form {
display: flex;
flex-flow: column;
gap: 16px;
}
#config-modal-close {
cursor: pointer;
}
.modal-heading {
display: flex;
gap: 8px;
}
.modal-heading h4 {
font-size: 1rem;
font-weight: bold;
}
#config-modal.show h5 {
font-size: 0.8rem;
}
.config-modal-input {
display: block;
background-color: #818da0;
border: 0;
border-radius: 3px;
width: 100%;
padding: 8px;
}
.config-modal-input:placeholder-shown {
color: #9fabbd;
}
.config-modal-input-container label {
margin-bottom: 0;
font-size: 0.8rem;
}