| 1 |
/** |
| 2 |
* Owl Carousel v2.3.4 |
| 3 |
* Copyright 2013-2018 David Deutsch |
| 4 |
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE |
| 5 |
*/ |
| 6 |
/* |
| 7 |
* Default theme - Owl Carousel CSS File |
| 8 |
*/ |
| 9 |
.owl-theme .owl-nav { |
| 10 |
margin-top: 10px; |
| 11 |
text-align: center; |
| 12 |
-webkit-tap-highlight-color: transparent; } |
| 13 |
.owl-theme .owl-nav [class*='owl-'] { |
| 14 |
color: #FFF; |
| 15 |
font-size: 14px; |
| 16 |
margin: 5px; |
| 17 |
padding: 4px 7px; |
| 18 |
background: #D6D6D6; |
| 19 |
display: inline-block; |
| 20 |
cursor: pointer; |
| 21 |
border-radius: 3px; } |
| 22 |
.owl-theme .owl-nav [class*='owl-']:hover { |
| 23 |
background: #869791; |
| 24 |
color: #FFF; |
| 25 |
text-decoration: none; } |
| 26 |
.owl-theme .owl-nav .disabled { |
| 27 |
opacity: 0.5; |
| 28 |
cursor: default; } |
| 29 |
|
| 30 |
.owl-theme .owl-nav.disabled + .owl-dots { |
| 31 |
margin-top: 10px; } |
| 32 |
|
| 33 |
.owl-theme .owl-dots { |
| 34 |
text-align: center; |
| 35 |
-webkit-tap-highlight-color: transparent; } |
| 36 |
.owl-theme .owl-dots .owl-dot { |
| 37 |
display: inline-block; |
| 38 |
zoom: 1; |
| 39 |
*display: inline; } |
| 40 |
.owl-theme .owl-dots .owl-dot span { |
| 41 |
width: 10px; |
| 42 |
height: 10px; |
| 43 |
margin: 5px 7px; |
| 44 |
background: #D6D6D6; |
| 45 |
display: block; |
| 46 |
-webkit-backface-visibility: visible; |
| 47 |
transition: opacity 200ms ease; |
| 48 |
border-radius: 30px; } |
| 49 |
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { |
| 50 |
background: #869791; } |
| 51 |
|