blob: d7d84d0bcfc51037810accf409d075c12d4acd87 (
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
|
.task-form-container {
box-sizing: border-box;
display: flex;
flex-wrap: wrap
}
.task-form-container>* {
box-sizing: border-box
}
.task-form-container>* {
width: 1%
}
.task-form-main-column {
width: 60%
}
@media (max-width: 1000px) {
.task-form-main-column {
width: 100%
}
}
.task-form-main-column input[type="text"] {
width: 700px;
max-width: 99%
}
.task-form-secondary-column {
max-width: 250px;
min-width: 200px;
max-height: 600px;
padding-left: 10px;
overflow: auto;
width: 20%
}
@media (max-width: 1000px) {
.task-form-secondary-column {
width: 100%;
max-width: 99%;
max-height: none
}
}
@media (max-width: 768px) {
.task-form-secondary-column {
padding-left: 0
}
}
.task-form-secondary-column label:first-child {
margin-top: 0
}
@media (max-width: 1000px) {
.task-form-secondary-column label:first-child {
margin-top: 10px
}
}
.task-form-bottom {
width: 100%
}
.task-form-bottom label {
display: inline-block
}
|