Featured Properties Slider

mail@pastecode.io avatar
unknown
plain_text
20 days ago
957 B
3
Indexable
Never
/* Update prev&next buttons colors - WB Nicolas V */
div.featured-properties-section .container .slick-links-nav {
  .link {
    color: #000;
    opacity: 0.9;
  }
  .link:hover {
    opacity: 1;
      color: #000;
  }
  .link:after {
    background: #000;
  }
  .link:not(.slick-disabled):before {
    background: #000 !important;
    opacity: 0.6;
  }
  .link:not(.slick-disabled):hover:before {
    opacity: 1;
  }
  .link.slick-disabled {
    color: #000!important;
    opacity: 0.5;
  }
  .link.slick-disabled:hover {
    color: #000!important;
    opacity: 0.7;
  }
  span.spacer {
    background: #000!important;
  }
}
/* END */

/*Fix mobile full width button Featured Properties - Producer - by WB Nicolas V*/

@media (max-width: 568px){
    div.featured-properties-section .btn {
        width: 100%;
    }
    .featured-properties-button-holder {
        margin-top: 20px!important;
    }
}
/* END */
Leave a Comment