Blame view

ambshoes/css/_buttons.scss 1.41 KB
81add67c   alex   first
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
  .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;

      }

    }

  }