_custom.scss
1.25 KB
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
header {
a {
.btn-like {
//border: 1px solid $mainColor-active !important;
color: $mainColor-active;
}
}
}
.category-carousel-box {
background: #eee;
}
.zoom-img-overlay {
position: fixed;
width: 100%;
height: 100%;
background: rgba(0,0,0, 0.85);
left: 0;
top: 0;
text-align: center;
z-index: 9999;
display: table;
div {
width: 100vh;
height: 100vh;
display: table-cell;
vertical-align: middle;
text-align: center;
padding: 16px;
position: relative;
img {
max-width: 100%;
max-height: 100%;
position: relative;
z-index: 3;
}
}
i.close-zoom {
position: absolute;
width: 100%;
height:100%;
right: 0;
top: 0;
z-index: 2;
&:before {
font-family: FontAwesome;
font-weight: normal;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: block;
color: #fff;
line-height: 32px;
width: 32px;
height: 32px;
font-size: 21px;
text-align: center;
content: "\f00d";
position: absolute;
font-style: normal;
top: 0;
right: 0;
cursor: pointer;
}
}
}
.image-zoom {
img {
cursor: pointer;
}
}