-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmediaQuery.css
More file actions
77 lines (71 loc) · 1.32 KB
/
mediaQuery.css
File metadata and controls
77 lines (71 loc) · 1.32 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
70
71
72
73
74
75
76
77
@media (max-width: 992px){
.listnav{
margin-left: 0px;
}
.listnav>ul>li{
margin-left: 50px;
justify-content: center;
align-items: center;
display: flex;
}
}
@media (width<800px){
.booking_nav{
grid-template-columns: 1fr;
gap: 1rem;
}
.booking_nav select{
width: 100%;
}
.booking_container form{
grid-template-columns: 1fr;
}
.fleets{
display: grid;
grid-template-columns: 1fr;
align-items: center;
}
.fleets_content{
width: 400px;
text-align: justify;
margin-left:auto ;
}
.fleets img{
width: 400px;
height: 400px;
padding-bottom: 12px;
}
.safety-items{
width: auto;
display:grid;
margin:auto;
}
.safety-items p{
font-size: .9rem;
}
.safety-items ul li{
margin-left: 10px;
line-height: 30px;
font-size: .8rem;
}
}
@media(width<700px){
.bb{
font-size: 2rem;
line-height: 2rem;
}
#flight_content{
/* display: grid; */
grid-template-columns: 1fr;
/* margin: auto; */
text-align: center;
}
#flight_content p {
font-size: 1rem;
margin-top: 0px;
margin-bottom: 0px;
}
#land, #dep{
font-size: 2rem;
}
}