_home-sliders.scss
925 Bytes
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
63
64
65
66
67
68
69
70
71
72
73
74
.sliders_ {
overflow: hidden;
display: block;
img {
width: 100%;
max-width: 100%;
}
&.main_slider {
.item {
text-align: center;
}
img {
width: auto;
}
}
}
.owl-stage-outer, .owl-stage, .owl-item {
float: left;
position: relative;
z-index: 2;
}
.owl-item {
}
/*dots*/
.owl-dots {
position: absolute;
bottom: 20px;
left: 0;
width: 100%;
text-align: center;
padding: 0 15px;
z-index: 2;
.owl-dot {
display: inline-block;
width: 12px;
height: 12px;
border-radius: 100%;
background: $link-color;
cursor: pointer;
margin-right: 8px;
margin-top: 8px;
&.active {
background: $checkboxColor;
@include Transition(0.2);
}
}
}
.withBg {
.owl-dot {
@include Shadow4;
&.active {
background: #fff;
}
}
}
/*******/
.owl-carousel {
.slider-grid {
width: 100% !important;
}
}