aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/button.scss
blob: 75d2cb1d4324acaa2d8cbcbd66a07fa585cd8c56 (plain) (blame)
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
69
70
71
72
@import './config.scss';

.franz-form__button {
  position: relative;
  background: $theme-brand-primary;
  display: block;
  padding: 10px 20px;
  color: #FFF;
  border-radius: 3px;
  transition: background 0.5s;
  text-align: center;

  &:hover {
    background: darken($theme-brand-primary, 5%);
  }

  &:active {
    transition: none;
    background: lighten($theme-brand-primary, 5%);
  }

  &:disabled {
    opacity: 0.2;
  }

  &.franz-form__button--secondary {
    background: $theme-gray-lighter;
    color: $theme-gray;

    &:hover {
      background: darken($theme-gray-lighter, 5%);
    }

    &:active {
      background: lighten($theme-gray-lighter, 5%);
    }
  }

  &.franz-form__button--danger {
    background: $theme-brand-danger;

    &:hover {
      background: darken($theme-brand-danger, 5%);
    }

    &:active {
      background: lighten($theme-brand-danger, 5%);
    }
  }

  &.franz-form__button--inverted {
    background: none;
    padding: 10px 20px;
    border: 2px solid $theme-brand-primary;
    color: $theme-brand-primary;
    transition: background 0.5s, color 0.5s;

    &:hover {
      background: darken($theme-brand-primary, 5%);
      color: #FFF;
    }
  }

  .loader {
    position: relative;
    width: 20px;
    height: 12px;
    z-index: 9999;
    display: inline-block;
    margin-right: 5px;
  }
}