-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglide.core.min.css
55 lines (54 loc) · 978 Bytes
/
glide.core.min.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
.glide{
position:relative;
width:100%;
box-sizing:border-box
}
.glide *{
box-sizing:inherit
}
.glide__track{
overflow:hidden
}
.glide__slides{
position:relative;
width:100%;
list-style:none;
backface-visibility:hidden;
transform-style:preserve-3d;
touch-action:pan-Y;
overflow:hidden;
padding:0;
white-space:nowrap;
display:flex;
flex-wrap:nowrap;
will-change:transform
}
.glide__slides--dragging{
user-select:none
}
.glide__slide{
width:100%;
height:100%;
flex-shrink:0;
white-space:normal;
user-select:none;
-webkit-touch-callout:none;
-webkit-tap-highlight-color:transparent
}
.glide__slide a{
user-select:none;
-webkit-user-drag:none;
-moz-user-select:none;
-ms-user-select:none
}
.glide__arrows{
-webkit-touch-callout:none;
user-select:none
}
.glide__bullets{
-webkit-touch-callout:none;
user-select:none
}
.glide--rtl{
direction:rtl
}