-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive.css
118 lines (98 loc) · 1.99 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
@media (max-width: 1024px) {}
@media (max-width: 768px) {
.nav {
position: static;
}
.nav_container {
justify-content: space-between;
}
.nav_link_1 {
display: none;
flex-direction: column;
position: absolute;
top: 4rem;
right: 0rem;
background-color: #b6ded6;
height: 4rem;
width: 100%;
z-index: 100;
}
.nav_link_1.expand {
display: flex;
flex-direction: row;
justify-content: center;
z-index: 10;
height: 3rem;
}
.nav_link_search {
display: none;
}
.nav_mob_search.expand {
position: static;
z-index: 0;
}
.nav_toggle {
display: block;
}
.nav_mob_search {
display: block;
}
.header_fake {
display: none;
}
.slider {
max-height: 8rem;
min-height: 5rem;
height: max-content;
}
.slides {
height: 8rem;
}
.slide img {
object-fit: contain;
}
button.prev,
button.next {
background-color: transparent;
padding: 0 0;
box-shadow: none;
color: white;
}
.contact_lower {
flex-direction: column-reverse;
align-items: center;
}
.contact_detail {
width: max-content;
}
.aboutUs_main_img {
display: none;
}
.aboutUs_main_text {
margin: .5rem 1rem;
}
}
@media (max-width: 480px) {
.slider {
height: 5rem;
}
.footer_upper {
flex-direction: column;
margin-left: 1rem;
}
.prohead,.subhead{
font-size: 1.5rem;
}
.footer_lower {
text-align: center;
}
.contact_form input {
width: 15rem;
}
.contact_form button {
padding: .5rem 5rem;
}
.empty_cart_image{
width: 15rem;
}
}