_buttons.scss 1.41 KB
.btn_ {
  display: block;
  float: left;
  height: 34px;
  line-height: 34px;
  color: #fff;
  text-align: center;

  border: 1px solid $violet-color;
  background: $violet-color;
  padding: 0 11px 0 11px;
  text-decoration: none;
  position: relative;
  //border-radius: 3px;
  @include Transition(0.2);
  &:hover {
    text-decoration: none;
    background: $violet-color-hover;
    border: 1px solid $violet-color-hover;
    //color: $violet-color;
  }
  &:active {
    color: #fff;
    background: $violet-color-active;
    border: 1px solid $violet-color-active;
  }

  &.btn_buy_basket {
    text-align: center;
    //float: right;
    overflow: hidden;;
    text-transform: uppercase;
    font-size: 14px;
    width: 110px;
    padding: 0;
    font-weight: 700;
    float: none;
    display: inline-block;
    margin-left: 26px;

    &:active {

      &:before {

      }
    }
    &.disabled {
      background: $disabledColor !important;
      border: 1px solid $disabledColor !important;
      color: $main-color !important;
      font-size: 11px;
      cursor: default;
      pointer-events: none;
    }
  }
  &.btn-bye-card {
    &.disabled {
      background: $disabledColor !important;
      border: 1px solid $disabledColor !important;
      color: $main-color !important;
      font-size: 11px;
      cursor: default;
      pointer-events: none;
    }
  }
}