-
Notifications
You must be signed in to change notification settings - Fork 14
/
style.css
59 lines (58 loc) · 938 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
body {
font: message-box;
display: flex;
flex-direction: column;
max-width: 800px;
margin: 0 auto;
}
header {
text-align: center;
}
table {
margin-bottom: 3px;
width: 100%;
}
td:nth-child(3) {
width: 0;
}
th:nth-child(4) {
min-width: 25%;
}
.button_container {
display: table-cell;
}
.button_container > button {
border: 0;
background-color: inherit;
padding: 0 2px 0 2px;
}
.button_container > button:hover {
background-color: revert;
}
input {
width: calc(100% - 7px);
}
.rule_label {
vertical-align: baseline;
}
thead {
position: sticky;
top: 0;
background-color: canvas;
}
body.popup {
width: 260px;
margin: 0.5em;
}
body.popup > button {
margin-top: 0.5em;
padding-top: 0.5em;
padding-bottom: 0.5em;
}
button#deactivate {
border: 2px groove red;
border-radius: 5px;
}
button#deactivate.off {
border: 2px groove green;
}