-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.css
62 lines (52 loc) · 926 Bytes
/
options.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
:root {
--main-bg-color: #ecf1f4;
--main-color: #242225;
--warn-color: #a8140c;
--line-color: #3b383c;
}
.hidden {
visibility: hidden;
}
body {
width: 720px;
margin-left: auto;
margin-right: auto;
margin-top: 0vh;
margin-bottom: 0vh;
}
#app {
padding: 1em;
flex-direction: row;
justify-items: center;
background-color: var(--main-bg-color);
color: var(--main-color);
}
#list-of-rule {
display: flex;
flex-direction: column;
gap: 0.5em;
}
#buttons-wrapper {
display: flex;
justify-content: space-around;
}
.rule-row {
display: flex;
justify-content: space-around;
}
.remove-rule-button {
color: var(--warn-color);
cursor: pointer;
}
hr {
width: 90%;
}
button {
border-radius: 0.2em;
border-width: thin;
border-color: var(--line-color);
color: var(--main-color);
}
input {
font-family: monospace;
}