Theme Inspinia
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

slick-theme.css 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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. margin-top: -10px;
  28. padding: 0;
  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. {
  40. color: transparent;
  41. outline: none;
  42. background: transparent;
  43. }
  44. .slick-prev:hover:before,
  45. .slick-prev:focus:before,
  46. .slick-next:hover:before,
  47. .slick-next:focus:before
  48. {
  49. opacity: 1;
  50. }
  51. .slick-prev.slick-disabled:before,
  52. .slick-next.slick-disabled:before
  53. {
  54. opacity: .25;
  55. }
  56. .slick-prev:before,
  57. .slick-next:before
  58. {
  59. font-family: 'slick';
  60. font-size: 20px;
  61. line-height: 1;
  62. opacity: .75;
  63. color: white;
  64. -webkit-font-smoothing: antialiased;
  65. -moz-osx-font-smoothing: grayscale;
  66. }
  67. .slick-prev
  68. {
  69. left: -25px;
  70. }
  71. [dir='rtl'] .slick-prev
  72. {
  73. right: -25px;
  74. left: auto;
  75. }
  76. .slick-prev:before
  77. {
  78. content: '←';
  79. }
  80. [dir='rtl'] .slick-prev:before
  81. {
  82. content: '→';
  83. }
  84. .slick-next
  85. {
  86. right: -25px;
  87. }
  88. [dir='rtl'] .slick-next
  89. {
  90. right: auto;
  91. left: -25px;
  92. }
  93. .slick-next:before
  94. {
  95. content: '→';
  96. }
  97. [dir='rtl'] .slick-next:before
  98. {
  99. content: '←';
  100. }
  101. /* Dots */
  102. .slick-slider
  103. {
  104. margin-bottom: 30px;
  105. }
  106. .slick-dots
  107. {
  108. position: absolute;
  109. bottom: -45px;
  110. display: block;
  111. width: 100%;
  112. padding: 0;
  113. list-style: none;
  114. text-align: center;
  115. }
  116. .slick-dots li
  117. {
  118. position: relative;
  119. display: inline-block;
  120. width: 20px;
  121. height: 20px;
  122. margin: 0 5px;
  123. padding: 0;
  124. cursor: pointer;
  125. }
  126. .slick-dots li button
  127. {
  128. font-size: 0;
  129. line-height: 0;
  130. display: block;
  131. width: 20px;
  132. height: 20px;
  133. padding: 5px;
  134. cursor: pointer;
  135. color: transparent;
  136. border: 0;
  137. outline: none;
  138. background: transparent;
  139. }
  140. .slick-dots li button:hover,
  141. .slick-dots li button:focus
  142. {
  143. outline: none;
  144. }
  145. .slick-dots li button:hover:before,
  146. .slick-dots li button:focus:before
  147. {
  148. opacity: 1;
  149. }
  150. .slick-dots li button:before
  151. {
  152. font-family: 'slick';
  153. font-size: 6px;
  154. line-height: 20px;
  155. position: absolute;
  156. top: 0;
  157. left: 0;
  158. width: 20px;
  159. height: 20px;
  160. content: '•';
  161. text-align: center;
  162. opacity: .25;
  163. color: black;
  164. -webkit-font-smoothing: antialiased;
  165. -moz-osx-font-smoothing: grayscale;
  166. }
  167. .slick-dots li.slick-active button:before
  168. {
  169. opacity: .75;
  170. color: black;
  171. }