Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

71 wiersze
1.3 KiB

  1. /**
  2. * Owl Carousel v2.2.1
  3. * Copyright 2013-2017 David Deutsch
  4. * Licensed under ()
  5. */
  6. /*
  7. * Default theme - Owl Carousel CSS File
  8. */
  9. .owl-theme .owl-nav
  10. {
  11. margin-top: 10px;
  12. text-align: center;
  13. -webkit-tap-highlight-color: transparent;
  14. z-index: 10000;
  15. background: red;
  16. }
  17. .owl-theme .owl-nav [class*='owl-']
  18. {
  19. color: #FFF;
  20. font-size: 14px;
  21. margin: 5px;
  22. padding: 4px 7px;
  23. background: #D6D6D6;
  24. display: inline-block;
  25. cursor: pointer;
  26. border-radius: 3px;
  27. }
  28. .owl-theme .owl-nav [class*='owl-']:hover
  29. {
  30. background: #869791;
  31. color: #FFF;
  32. text-decoration: none;
  33. }
  34. .owl-theme .owl-nav .disabled
  35. {
  36. opacity: 0.5;
  37. cursor: default;
  38. }
  39. .owl-theme .owl-nav.disabled + .owl-dots
  40. {
  41. margin-top: 10px;
  42. }
  43. .owl-theme .owl-dots
  44. {
  45. text-align: center;
  46. -webkit-tap-highlight-color: transparent;
  47. }
  48. .owl-theme .owl-dots .owl-dot
  49. {
  50. display: inline-block;
  51. zoom: 1;
  52. *display: inline;
  53. }
  54. .owl-theme .owl-dots .owl-dot span
  55. {
  56. width: 10px;
  57. height: 10px;
  58. margin: 5px 7px;
  59. background: #CFCFD0;
  60. display: block;
  61. -webkit-backface-visibility: visible;
  62. transition: opacity 200ms ease;
  63. border-radius: 30px;
  64. }
  65. .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span
  66. {
  67. background: #A19799;
  68. }