Blame view

frontend/web/css/_buttons.scss 1.13 KB
c420c609   alex   first commit
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
  .btn_ {

    display: block;

    float: left;

    height: 46px;

    line-height: 46px;

    color: #fff;

    text-align: center;

    font-size: 16px;

    text-transform: uppercase;

    min-width: 175px;

    border: 1px solid $orange-color;

    background: $orange-color;

    padding: 0 11px 0 11px;

    text-decoration: none;

    position: relative;

    border-radius: 46px;

    @include Transition(0.2);

    &:hover {

      text-decoration: none;

      background: $orange-color-hover;

      border: 1px solid $orange-color-hover;

      //color: $orange-color;

    }

    &:active {

      color: #fff;

      background: $orange-color-active;

      border: 1px solid $orange-color-active;

    }

  }

  

  

  .bye-link-wrapp {

    margin-top: 28px;

    text-align: center;

    .btn_ {

      display: inline-block;

      position: relative;

      float: none;

      &:before, &:after {

        position: absolute;

        width: 87px;

        height: 1px;

        background: #9e9e9e;

        top: 50%;

        margin-top: -1px;

      content: '';

      }

      &:before {

        left: -87px;

        margin-left: -20px;

      }

      &:after {

        right: -87px;

        margin-right: -20px;

      }

    }

  }