blob: 4dace6ea546b4894195fd47c58715196e1d2571a (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
.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;
}
.closed #closed { display: block }
#closed {
display: none;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
transition: background 0.5s ease-in;
}
#closed .closed_store_msg {
position: absolute;
bottom: 20vh;
background: rgba(255,255,255,0.9);
padding-top: 20px;
padding-bottom: 10px;
text-align: center;
width: 100%;
}
|