owl.theme.default.min.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. .owl-theme .owl-dots,
  7. .owl-theme .owl-nav {
  8. text-align: center;
  9. -webkit-tap-highlight-color: transparent
  10. }
  11. .owl-theme .owl-nav {
  12. margin-top: 10px
  13. }
  14. .owl-theme .owl-nav [class*=owl-] {
  15. color: #FFF;
  16. font-size: 14px;
  17. margin: 5px;
  18. padding: 4px 7px;
  19. background: #D6D6D6;
  20. display: inline-block;
  21. cursor: pointer;
  22. border-radius: 3px
  23. }
  24. .owl-theme .owl-nav [class*=owl-]:hover {
  25. background: #869791;
  26. color: #FFF;
  27. text-decoration: none
  28. }
  29. .owl-theme .owl-nav .disabled {
  30. opacity: .5;
  31. cursor: default
  32. }
  33. .owl-theme .owl-nav.disabled+.owl-dots {
  34. margin-top: 10px
  35. }
  36. .owl-theme .owl-dots .owl-dot {
  37. display: inline-block;
  38. zoom: 1
  39. }
  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 .2s ease;
  48. border-radius: 30px
  49. }
  50. .owl-theme .owl-dots .owl-dot.active span,
  51. .owl-theme .owl-dots .owl-dot:hover span {
  52. background: #869791
  53. }