aboutsummaryrefslogtreecommitdiff
path: root/app/assets/sass/_buttons.scss
blob: 760d5ec6b19525fe94993bccf2dc3dffa884785c (plain)
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
.btn {
  border-radius: $border-radius-base;
  padding: $padding-base $padding-lg;
  font-size: $font-size-base;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;

  &-default {
    border: 1px solid $blue;
    color: $blue;
    background-color: #fff;

    &:hover {
      background-color: $light-blue;
    }
  }

  &-lg {
    padding: $padding-base $padding-lg*2;
    font-size: round($font-size-base * 1.2);
  }

  &-danger {
    border: 1px solid $red;
    color: $red;
    text-transform: uppercase;
    background-color: #fff;

    &:hover {
      background-color: $light-red;
    }
  }

  &-primary {
    border: 0;
    background: $blue;
   //  background-image: linear-gradient(to bottom, $blue, $dark-blue);
    box-shadow: 1px 1px 1px $gray;
    color: #ffffff;

    &:hover {
      background: $dark-blue;
      // background-image: linear-gradient(to bottom, $dark-blue, $blue);
    }
  }
}