slick-theme.css 3.1 KB

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