-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
97 lines (77 loc) · 1.64 KB
/
responsive.css
File metadata and controls
97 lines (77 loc) · 1.64 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
@media (max-width: 1300px) {}
@media (max-width: 1120px) {}
@media (max-width: 992px) {
.hero_area {
min-height: auto;
}
.custom_nav-container .navbar-nav {
padding-top: 15px;
padding-left: 0;
align-items: center;
}
.user_option{
justify-content: center;
margin-top: 15px;
}
.custom_nav-container .navbar-nav .nav-item .nav-link {
padding: 5px 25px;
margin: 5px 0;
}
.slider_section .carousel-indicators {
margin-top: 45px;
}
.offer_section .box {
flex-direction: column;
align-items: center;
text-align: center;
}
.offer_section .box .img-box {
margin-right: 0;
margin-bottom: 15px;
}
}
@media (max-width: 767px) {
.about_section .detail-box,
.book_section .form_container {
margin-bottom: 45px;
}
.about_section .row {
flex-direction: column-reverse;
}
.offer_section .box {
flex-direction: row;
text-align: left;
}
.offer_section .box .img-box {
margin-right: 15px;
margin-bottom: 0;
}
}
@media (max-width: 576px) {}
@media (max-width: 480px) {}
@media (max-width: 430px) {
.offer_section .box {
flex-direction: column;
text-align: center;
}
.offer_section .box .img-box {
margin-right: 0;
margin-bottom: 15px;
}
}
@media (max-width: 376px) {
.slider_section .detail-box h1 {
font-size: 3rem;
}
}
@media (min-width: 1200px) {
.container {
max-width: 1170px;
}
}
@media (min-width:576px) and (max-width:991px) {
.rent_solution_container .col-md-4.col-sm-6 {
float: left;
width: 50%;
}
}