blob: 6b2f96935bf65269a20d329e5abab28742cfe681 (
plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
body {
padding-top: 70px;
}
/* Tabs */
#tabbar .nav-link {
color: #009570;
font-size: 18px;
padding-bottom: 15px;
padding-top: 15px;
}
#tabbar .nav-link.active {
color: #212529;
}
#tabbar .nav-link:hover {
color: #0f5a3a;
}
/* Sections */
.tab-content button {
font-size: 14px;
margin-bottom: 5px;
margin-top: 10px;
}
.filter-label {
display: block;
font-size: 16px;
position: relative;
padding-left: 15px;
padding-right: 15px;
padding-top: 10px;
padding-bottom: 10px;
margin-bottom: 0;
user-select: none;
vertical-align: middle;
}
.filter-label span {
display: flex;
min-height: 34px;
align-items: center;
justify-content: space-between;
}
.filter-label input[type="checkbox"] {
position: absolute;
opacity: 0;
height: 0;
width: 0;
}
.filter-label input[type="text"] {
width: 50px;
}
.filter-label:hover {
background-color: #91a0b0;
}
.filter-label.is-checked:hover {
background-color: #91a0b0;
}
.filter-label.is-checked {
background-color: #404c59;
color: white;
}
/* Preview pane */
#preview {
position: fixed;
height: 100vh;
margin-left: 66%;
width: 100%;
}
#submit-tasks {
display: flex;
flex-direction: column;
height: 80%;
}
#buttons {
display: flex;
justify-content: space-between;
}
#push {
background-color: #00e9b7;
margin-left: 5px;
width: 100%;
}
#selection {
height: 100%;
width: 100%;
}
|