blob: 37037221d291d68779f043fe6bce4556f9424cf1 [file] [log] [blame]
Michael Davis19475752017-02-23 18:30:23 -06001button, .button, input[type="submit"] {
2 font-weight: bold;
3 font-size: 1em;
4 text-transform: none;
5 border-radius: 3px;
6 padding: .8rem 3.5rem;
7 height: auto;
8 &:hover {
9 cursor: pointer;
10 }
11 &.disabled {
12 border: 2px solid $lightgrey;
13 color: $lightgrey;
14 }
15}
16
17.disabled {
18 button, .button, input[type="submit"] {
19 opacity: 0.2;
20 &:hover {
21 cursor: default;
22 background: transparent;
23 }
24 }
25}
26
27.btn-primary {
28 color: $primebtn__text;
29 background: $primebtn__bg;
30}
31.btn-secondary {
32 color: $secbtn__text;
33 background: transparent;
34 border: 2px solid $secbtn__border;
35 &:hover {
36 background: $lightbg__accent;
37 cursor: pointer;
38 background: $secbtn__bg;
39 }
40}