_button.css
787 Bytes
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
.button {
display: inline-block;
min-width: 310px;
min-height: 100px;
border: 1px solid $black;
background: $white;
color: $black;
font-size: 20px;
padding: 0 10px;
-webkit-appearance: button;
&.button-solid {
background: $black;
color: $white;
&:disabled {
background: $grey;
color: $white;
}
}
&.button-round {
border-radius: 4px;
}
&.button-small {
min-width: 180px;
min-height: 70px;
}
&.button-large {
min-width: 700px;
min-height: 100px;
}
&:disabled {
border: 1px solid $grey;
color: $grey;
}
}
.button-ghost {
background-color: transparent;
border: none;
outline: none;
}