Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

76 rindas
1.1 KiB

  1. .mod_iso_productlist.product-slider,
  2. .mod_iso_relatedproducts {
  3. .product_list {
  4. display: block;
  5. }
  6. .product {
  7. padding: 0;
  8. }
  9. .slick-arrow {
  10. position: absolute;
  11. top: calc(135px - 20px);
  12. text-indent: -9999px;
  13. font-size: 1px;
  14. line-height: 1px;
  15. background: none;
  16. border: none;
  17. width: 40px;
  18. height: 40px;
  19. z-index: 50;
  20. cursor: pointer;
  21. &:before,
  22. &:after {
  23. content: "";
  24. display: block;
  25. position: absolute;
  26. left: 50%;
  27. top: 50%;
  28. width: 10px;
  29. height: 2px;
  30. background: $font;
  31. @include transition();
  32. }
  33. &:before {
  34. transform: translate(-50%, -50%) rotate(45deg);
  35. }
  36. &:after {
  37. transform: translate(-50%, -50%) rotate(-45deg);
  38. }
  39. &.slick-prev {
  40. left: -12px;
  41. &:before {
  42. margin-top: 3px;
  43. }
  44. &:after {
  45. margin-top: -3px;
  46. }
  47. }
  48. &.slick-next {
  49. right: -12px;
  50. &:before {
  51. margin-top: -3px;
  52. }
  53. &:after {
  54. margin-top: 3px;
  55. }
  56. }
  57. &:hover {
  58. &:before,
  59. &:after {
  60. background: $secondary;
  61. }
  62. }
  63. }
  64. }