1/* Slider */
2.slick-slider
3{
4 position: relative;
5
6 display: block;
7 box-sizing: border-box;
8
9 -webkit-user-select: none;
10 -moz-user-select: none;
11 -ms-user-select: none;
12 user-select: none;
13
14 -webkit-touch-callout: none;
15 -khtml-user-select: none;
16 -ms-touch-action: pan-y;
17 touch-action: pan-y;
18 -webkit-tap-highlight-color: transparent;
19}
20
21.slick-list
22{
23 position: relative;
24
25 display: block;
26 overflow: hidden;
27
28 margin: 0;
29 padding: 0;
30}
31.slick-list:focus
32{
33 outline: none;
34}
35.slick-list.dragging
36{
37 cursor: pointer;
38 cursor: hand;
39}
40
...
</html>