slick-theme.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. @charset 'UTF-8';
  2. /* Slider */
  3. .slick-loading .slick-list {
  4. background: #fff url("./ajax-loader.gif") center center no-repeat;
  5. }
  6. /* Icons */
  7. @font-face {
  8. font-family: "slick";
  9. font-weight: normal;
  10. font-style: normal;
  11. src: url("./fonts/slick.eot");
  12. src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"),
  13. url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  14. }
  15. /* Arrows */
  16. .slick-prev,
  17. .slick-next {
  18. font-size: 0;
  19. line-height: 0;
  20. position: absolute;
  21. top: 50%;
  22. display: block;
  23. width: 20px;
  24. height: 20px;
  25. padding: 0;
  26. -webkit-transform: translate(0, -50%);
  27. -ms-transform: translate(0, -50%);
  28. transform: translate(0, -50%);
  29. cursor: pointer;
  30. color: transparent;
  31. border: none;
  32. outline: none;
  33. background: transparent;
  34. }
  35. .slick-prev:hover,
  36. .slick-prev:focus,
  37. .slick-next:hover,
  38. .slick-next:focus {
  39. color: transparent;
  40. outline: none;
  41. background: transparent;
  42. }
  43. .slick-prev:hover:before,
  44. .slick-prev:focus:before,
  45. .slick-next:hover:before,
  46. .slick-next:focus:before {
  47. opacity: 1;
  48. }
  49. .slick-prev.slick-disabled:before,
  50. .slick-next.slick-disabled:before {
  51. opacity: 0.25;
  52. }
  53. .slick-prev:before,
  54. .slick-next:before {
  55. font-family: "slick";
  56. font-size: 20px;
  57. line-height: 1;
  58. opacity: 0.75;
  59. color: white;
  60. -webkit-font-smoothing: antialiased;
  61. -moz-osx-font-smoothing: grayscale;
  62. }
  63. .slick-prev {
  64. left: -25px;
  65. }
  66. [dir="rtl"] .slick-prev {
  67. right: -25px;
  68. left: auto;
  69. }
  70. .slick-prev:before {
  71. content: "←";
  72. }
  73. [dir="rtl"] .slick-prev:before {
  74. content: "→";
  75. }
  76. .slick-next {
  77. right: -25px;
  78. }
  79. [dir="rtl"] .slick-next {
  80. right: auto;
  81. left: -25px;
  82. }
  83. .slick-next:before {
  84. content: "→";
  85. }
  86. [dir="rtl"] .slick-next:before {
  87. content: "←";
  88. }
  89. /* Dots */
  90. .slick-dotted.slick-slider {
  91. margin-bottom: 30px;
  92. }
  93. .slick-dots {
  94. position: absolute;
  95. bottom: -25px;
  96. display: block;
  97. width: 100%;
  98. padding: 0;
  99. margin: 0;
  100. list-style: none;
  101. text-align: center;
  102. }
  103. .slick-dots li {
  104. position: relative;
  105. display: inline-block;
  106. width: 20px;
  107. height: 20px;
  108. margin: 0 5px;
  109. padding: 0;
  110. cursor: pointer;
  111. }
  112. .slick-dots li button {
  113. font-size: 0;
  114. line-height: 0;
  115. display: block;
  116. width: 20px;
  117. height: 20px;
  118. padding: 5px;
  119. cursor: pointer;
  120. color: transparent;
  121. border: 0;
  122. outline: none;
  123. background: transparent;
  124. }
  125. .slick-dots li button:hover,
  126. .slick-dots li button:focus {
  127. outline: none;
  128. }
  129. .slick-dots li button:hover:before,
  130. .slick-dots li button:focus:before {
  131. opacity: 1;
  132. }
  133. .slick-dots li button:before {
  134. font-family: "slick";
  135. font-size: 6px;
  136. line-height: 20px;
  137. position: absolute;
  138. top: 0;
  139. left: 0;
  140. width: 20px;
  141. height: 20px;
  142. content: "•";
  143. text-align: center;
  144. opacity: 0.25;
  145. color: black;
  146. -webkit-font-smoothing: antialiased;
  147. -moz-osx-font-smoothing: grayscale;
  148. }
  149. .slick-dots li.slick-active button:before {
  150. opacity: 0.75;
  151. color: black;
  152. }