forked from jayeshpp/react-product-carousel-zoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (62 loc) · 1.11 KB
/
style.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
html, body {
margin: 0px;
padding: 0px;
font-size: 12px;
}
/*Swipe CSS*/
.swipe {
overflow: hidden;
visibility: hidden;
position: relative;
}
.swipe-wrap {
overflow: hidden;
position: relative;
}
.swipe-wrap > div {
float: left;
width: 100%;
position: relative;
overflow: hidden;
}
.swipe-wrap > div img {
width: 100%;
}
.swipe-wrap > div video {
width: 100%;
}
.slider-thumbnails .slider-thumbnails-inner {
white-space: nowrap;
overflow-x: auto;
padding: 0px 5px 7px;
}
.slider-thumbnails .slider-thumbnails-inner > div {
width: 100px;
border: 1px solid #ffffff;
box-sizing: border-box;
margin-right: 5px;
display: inline-block;
}
.slider-thumbnails .slider-thumbnails-inner > div:last-child {
margin-right: 0px;
}
.slider-thumbnails .slider-thumbnails-inner > div.active {
border-color: darkgrey;
}
.slider-thumbnails .slider-thumbnails-inner > div img {
max-width: 100%;
height: auto;
vertical-align: top;
}
.slider-thumbnails {
color: white;
}
.fullscreen-slider {
position: fixed;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
z-index: 999;
background: white;
}