blob: 2553cd9b166c62cc2122d29413ba7cd865e07cc3 (
plain)
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
|
.collection #collection { display: block }
#collection {
display: none;
text-align: center;
}
#collection .item {
text-align: center;
display: inline-block;
max-width: 49vw;
}
#collection .item img {
width: 49vw;
height: 63vw;
}
.product #product { display: block }
#product {
display: none;
}
#product .style {
text-transform: uppercase;
}
#product.loading #gallery,
#product.loading .content {
display: none;
}
#product.loading .loader {
display: block;
}
.gallery {
width: 100vw;
height: 63vw;
}
.gallery .item {
width: 100vw;
height: 63vw;
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
}
.search #search { display: block }
#search {
display: none;
}
|