Blame view

frontend/web/css/_buttons.scss 1.38 KB
b60a88b8   Anastasia   - main page
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  .btn_ {
    cursor: pointer;
    display: block;
    float: left;
    height: 44px;
    line-height: 43px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    @include gradientBtn;
    padding: 0 11px 0 11px;
    text-decoration: none !important;
    position: relative;
    @include Transition(0.3);
    border-radius: 44px;
    border: 1px solid $turquoise-color;
    box-shadow: 0px 0px 12px 0px rgba(151, 151, 151, 0.35);
    &:hover {
      text-decoration: none;
      @include gradientBtnHover;
      border: 1px solid $blue-color;
    }
    &:active {
      box-shadow: none;
  
    }
  
    &.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;
      }
    }
  }