_custom.scss 1.25 KB
header {
  a {
    .btn-like {
      //border: 1px solid $mainColor-active !important;
      color: $mainColor-active;
    }
  }
}

.category-carousel-box {
  background: #eee;
}

.zoom-img-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0, 0.85);

  left: 0;
  top: 0;
  text-align: center;
  z-index: 9999;
  display: table;
  div {
    width: 100vh;
    height: 100vh;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 16px;
    position: relative;
    img {
      max-width: 100%;
      max-height: 100%;
      position: relative;
      z-index: 3;
    }
  }
  i.close-zoom {
    position: absolute;
    width: 100%;
    height:100%;
    right: 0;
    top: 0;
    z-index: 2;
    &:before {
      font-family: FontAwesome;
      font-weight: normal;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      display: block;
      color: #fff;
      line-height: 32px;
      width: 32px;
      height: 32px;
      font-size: 21px;
      text-align: center;
      content: "\f00d";
      position: absolute;
      font-style: normal;
      top: 0;
      right: 0;
      cursor: pointer;
    }
  }
}
.image-zoom {
  img {
    cursor: pointer;
  }
}