-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile-style.css
83 lines (67 loc) · 1.16 KB
/
mobile-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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* S-SCREEN (768px and smaller) */
@media only screen and (max-width: 768px) {
body {
display: block;
overflow-x: unset;
padding: 0 1rem;
}
.todo-wrapper {
margin-top: 4rem;
}
.todo-form {
margin-bottom: 4rem;
}
.task-input {
width: 94vw;
height: 5.5rem;
}
.task-input-btn {
position: absolute;
right: 2.5rem;
}
.filter-btn {
position: absolute;
top: 4rem;
right: 1rem;
}
.task {
margin-bottom: 1.7rem;
width: 94vw;
}
.task-status,
.task-status-done {
position: absolute;
}
.task-category {
position: absolute;
left: 4.3rem;
width: 8rem;
font-size: 1.4rem;
}
.task-text {
position: relative;
left: 12rem;
font-size: 1.8rem;
}
.task-edit-btn {
margin: 0;
}
.select-category-input-wrapper {
margin-bottom: 2rem;
}
.select-category-input-wrapper .task-category {
margin-left: 1rem;
}
.filter-content-wrapper .task-category {
margin-left: 2rem;
}
.filter-popup {
width: 95vw;
height: auto;
padding: 3.3rem 3rem 3.7rem;
}
.filter-col-right,
.filter-category-all {
font-size: 1.6rem;
}
}