-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
44 lines (38 loc) · 852 Bytes
/
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
.FluidSlider-container {
width: 100%;
overflow: hidden;
}
.FluidSlider-list:after,
.FluidSlider-list:before {
content: "";
display: table;
}
.FluidSlider-list:after {
clear: both;
}
.FluidSlider-list {
list-style-type: none;
position: relative;
width: 100%;
padding: 0;
}
.FluidSlider-item {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-right: 0.5em solid transparent;
border-left: 0.5em solid transparent;
float: left;
}
.FluidSlider-item img {
width: 100%;
}
.FluidSlider-container.is-touchmoving img,
.FluidSlider-container.is-touchmoving a {
-webkit-user-select: none; /* Chrome all / Safari all */
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */
-o-user-select: none;
user-select: none;
pointer-events: none;
}