-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive.css
103 lines (79 loc) · 1.55 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
@media (max-width: 1300px) {
}
@media (max-width: 1120px) {
}
@media (max-width: 992px) {
.hero_area {
height: none;
}
.header_section .main_nav {
flex: 1;
}
#navbarSupportedContent {
margin-top: 15px;
}
.slider_section {
padding-top: 45px;
}
.feature_section .feature_container .box {
padding: 30px 15px;
}
.feature_section .feature_container .box .img-box {
width: 75px;
}
.feature_section {
transform: none;
padding: 90px 0;
}
}
@media (max-width: 767px) {
.layout_padding {
padding-top: 90px;
padding-bottom: 90px;
}
.layout_padding-top {
padding-top: 90px;
}
.layout_padding-bottom {
padding-bottom: 90px;
}
.slider_section .detail-box {
padding-bottom: 45px;
}
.feature_section .feature_container {
flex-direction: column;
}
.feature_section .feature_container .box {
padding: 30px 15px;
}
.feature_section .feature_container .box:not(:nth-last-child(1)) {
margin-bottom: 15px;
}
.about_section .detail-box {
margin-bottom: 45px;
}
.professional_section .img-box {
display: none;
}
.contact_section form {
margin-bottom: 45px;
}
.info_section .info_items::before {
width: 1px;
height: 90%;
top: 25px;
}
}
@media (max-width: 576px) {
}
@media (max-width: 480px) {
}
@media (max-width: 400px) {
}
@media (max-width: 360px) {
}
@media (min-width: 1200px) {
.container {
max-width: 1170px;
}
}