ae432de6
Alexey Boroda
first commit
|
1
2
3
4
5
6
7
|
/*
* Core Owl Carousel CSS File
* v1.3.2
*/
/* clearfix */
.owl-carousel .owl-wrapper:after {
|
9870b2b4
Alexey Boroda
-In process
|
8
9
10
11
12
13
|
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
|
ae432de6
Alexey Boroda
first commit
|
14
|
}
|
ae432de6
Alexey Boroda
first commit
|
15
|
/* display none until init */
|
9870b2b4
Alexey Boroda
-In process
|
16
17
18
19
20
|
.owl-carousel{
display: none;
position: relative;
width: 100%;
-ms-touch-action: pan-y;
|
ae432de6
Alexey Boroda
first commit
|
21
|
}
|
9870b2b4
Alexey Boroda
-In process
|
22
23
24
25
|
.owl-carousel .owl-wrapper{
display: none;
position: relative;
-webkit-transform: translate3d(0px, 0px, 0px);
|
ae432de6
Alexey Boroda
first commit
|
26
|
}
|
9870b2b4
Alexey Boroda
-In process
|
27
28
29
30
|
.owl-carousel .owl-wrapper-outer{
overflow: hidden;
position: relative;
width: 100%;
|
ae432de6
Alexey Boroda
first commit
|
31
|
}
|
9870b2b4
Alexey Boroda
-In process
|
32
33
34
35
36
37
|
.owl-carousel .owl-wrapper-outer.autoHeight{
-webkit-transition: height 500ms ease-in-out;
-moz-transition: height 500ms ease-in-out;
-ms-transition: height 500ms ease-in-out;
-o-transition: height 500ms ease-in-out;
transition: height 500ms ease-in-out;
|
ae432de6
Alexey Boroda
first commit
|
38
|
}
|
9870b2b4
Alexey Boroda
-In process
|
39
40
41
|
.owl-carousel .owl-item{
float: left;
|
ae432de6
Alexey Boroda
first commit
|
42
|
}
|
ae432de6
Alexey Boroda
first commit
|
43
|
.owl-controls .owl-page,
|
9870b2b4
Alexey Boroda
-In process
|
44
45
|
.owl-controls .owl-buttons div{
cursor: pointer;
|
ae432de6
Alexey Boroda
first commit
|
46
|
}
|
ae432de6
Alexey Boroda
first commit
|
47
|
.owl-controls {
|
9870b2b4
Alexey Boroda
-In process
|
48
49
50
51
52
53
|
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
ae432de6
Alexey Boroda
first commit
|
54
55
56
|
}
/* mouse grab icon */
|
9870b2b4
Alexey Boroda
-In process
|
57
58
|
.grabbing {
cursor:url(grabbing.png) 8 8, move;
|
ae432de6
Alexey Boroda
first commit
|
59
60
61
|
}
/* fix */
|
9870b2b4
Alexey Boroda
-In process
|
62
63
64
65
66
67
68
69
|
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item{
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
|
ae432de6
Alexey Boroda
first commit
|
70
|
}
|