-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive.css
128 lines (107 loc) · 1.82 KB
/
responsive.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@media screen and (max-width:458px) {
html {
font-size: 80%;
}
.filter {
justify-content: space-evenly;
}
#all,
#pending,
#completed,
#deleted,
#clearAll {
height: 23px;
padding: 1px;
margin: 10px auto;
}
#pending {
width: 5rem;
}
#completed {
width: 6rem;
}
#clearAll {
width: 4rem;
font-size: 0.87rem;
}
#deleted {
width: 5rem;
}
#inputTask {
height: 30px;
margin: 15px 3px;
padding-left: 10px;
}
#addBtn {
height: 30px;
margin: 15px 3px;
}
#date {
height: 30px;
margin: 15px 0px;
padding-left: 4px;
}
}
@media screen and (max-width:380px) {
html {
font-size: 71%;
}
#inputTask {
height: 23px;
margin: 12px 3px;
padding-left: 10px;
font-size: 8px;
}
#addBtn {
height: 23px;
font-size: 6px !important;
margin: 12px 3px;
font-weight: normal;
}
#date {
height: 23px;
margin: 12px 0px;
font-size: 5.5px;
padding-left: 4px;
}
#all,
#pending,
#completed,
#deleted,
#clearAll {
height: 21px;
padding: 1px;
margin: 10px auto;
font-size: 9px;
}
#list-container li {
margin-bottom: 4px;
}
h1 {
margin-bottom: 5px;
}
}
@media screen and (max-width:320px) {
html {
font-size: 65%;
}
#all,
#pending,
#completed,
#deleted,
#clearAll {
font-size: 8px;
}
}
@media screen and (max-width:275px) {
html {
font-size: 47%;
}
* {
overflow: hidden;
}
#clearAll {
width: 4rem;
font-size: 0.7rem;
}
}