Blame view

frontend/web/css/_buttons.scss 700 Bytes
bc9815fa   Anastasia   layout
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
  .btn_ {
    display: block;
    float: left;
    height: 48px;
    line-height: 48px;
    color: #fff;
    text-align: center;
    background: $blue-color;
    padding: 0 11px 0 11px;
    text-decoration: none;
    position: relative;
   font-weight: 700;
    font-size: 14px;
    @include Transition(0.2);
    &:hover {
      text-decoration: none;
      background: $blue-color-hover;
    }
    &:active {
  
      background: $blue-color-active;
  
    }
  
  
    &.btn-bye-card {
      &.disabled {
        background: $disabledColor !important;
        border: 1px solid $disabledColor !important;
        color: $main-color !important;
        font-size: 11px;
        cursor: default;
        pointer-events: none;
      }
    }
  }
  
  .fix-items-title-height {
  
  }