slick-theme.css 3.1 KB

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