-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy path_buttons.scss
More file actions
76 lines (63 loc) · 1.09 KB
/
_buttons.scss
File metadata and controls
76 lines (63 loc) · 1.09 KB
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
73
74
75
76
a.button {
color: white;
&:hover {
color: white;
}
&.hollow {
color: $dark1;
}
}
.button {
@include transition;
background-color: $blue;
color: white;
&:hover {
background-color: darken($blue, 10%);
color: white;
}
&.hollow {
background-color: transparent;
border: 2px solid darken($light1, 10%);
&:hover,
&:active {
background-color: transparent;
border: 2px solid $lightpink;
}
}
&.primary {
background-color: $pink;
color: white;
&:hover,
&:active {
background-color: darken($pink, 10%);
color: white;
}
}
&.secondary {
background-color: $blue;
color: white;
&:hover,
&:active {
background-color: darken($blue, 10%);
color: white;
}
}
.fa {
font-size: 0.875em;
margin: 0.25em 1.5em;
&.left {
margin-left: -0.7em;
}
&.right {
margin-right: -0.7em;
}
&.fa-github {
font-size: 19px;
margin: initial;
padding-right: 10px;
}
&.fa-caret-up, &.fa-caret-down {
margin: initial;
}
}
}