-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathresponsive.css
74 lines (69 loc) · 1.27 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
/* tablet size viewport */
@media (max-width: 1024px){
.flex-list{
flex-wrap: wrap;
}
.flex-list li{
width: 50%;
height: 400px;
}
.foot-notes{
height: 500px;
}
footer{
height: 1100px;
}
.fa-searchs{
visibility: visible;
}
.search{
visibility: hidden;
position: absolute;
}
}
/* smartphone/handphone */
@media (max-width: 670px){
.flex-list{
flex-direction: column;
}
.flex-list li, .img-container{
margin: 0 auto;
width: 100%;
height: 400px;
}
.container-main{
width: 100%;
}
.hp-viewport-hide{
visibility: hidden;
}
.menu-logo{
visibility: visible;
}
.hp-viewport{
position: absolute;
}
.header-shoping{
right: 10px;
}
.apple-header{
margin: 0 auto;
}
.menu-logo{
top: 18px;
left: 30px;
}
.footer-container, .footer-list-container{
width: 100%;
}
footer{
height: 800px;
}
.foot-notes{
height: 0;
}
.foot-notes ul li{
margin-bottom: 100px;
display: none;
}
}