-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathinteractive_config.css
More file actions
63 lines (53 loc) · 822 Bytes
/
interactive_config.css
File metadata and controls
63 lines (53 loc) · 822 Bytes
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
.main {
display: flex;
gap: 12px;
margin-bottom: 12px;
}
.container {
flex-basis: 50%;
border: solid 1px lightgrey;
padding: 8px;
}
#config-preview {
padding: 8px;
background-color: lightcyan;
}
#pins-container {
margin: 8px 0;
}
.pin {
margin-bottom: 8px;
display: flex;
flex-direction: column;
border-top: solid 1px lightgrey;
border-bottom: solid 1px lightgrey;
padding: 8px 0;
}
.pin-delete-btn {
margin-top: 4px;
align-self: flex-end;
background: none;
border: solid 1px grey;
border-radius: 2px;
color: red;
}
.pin-field {
margin-top: 8px;
border-width: 1px;
}
.pin-input-vals {
display: flex;
gap: 8px;
}
.preview-title {
margin: 0;
}
.input-number {
width: 40px;
}
.input-number__label {
text-transform: capitalize;
}
button {
cursor: pointer;
}