-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmediaqueries.css
More file actions
69 lines (61 loc) · 1.31 KB
/
Copy pathmediaqueries.css
File metadata and controls
69 lines (61 loc) · 1.31 KB
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
@media screen and (max-width: 1015px) {
.thirdInputSection h2 {
line-height: 30px;
margin-bottom: 10px;
}
}
@media screen and (max-width: 993px) {
#searchBtn, #secondSearchBtn {
width: fit-content;
}
.secondInputSection {
flex-wrap: wrap;
}
}
@media screen and (max-width: 984px) {
body {
padding-left: 0px;
padding-right: 0px;
}
.container {
padding: 10px;
}
}
@media screen and (max-width: 689px) {
.secondInputSection {
flex-direction: column;
padding-top: 15px;
width: 100%;
}
.secondInputSection #start_date, .secondInputSection #end_date {
width: 55%;
}
#secondSearchBtn {
width: 55%;
}
}
@media screen and (max-width: 623px) {
.secondInputSection {
flex-direction: column;
padding-top: 15px;
width: 100%;
}
.secondInputSection #start_date, .secondInputSection #end_date {
width: 60%;
}
#secondSearchBtn {
width: 60%;
}
}
@media screen and (max-width: 431px) {
.inputSection {
flex-direction: column;
width: 100%;
}
.inputSection input {
width: 60%;
}
#searchBtn {
width: 60%;
}
}