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
77
78
79
80
|
///
/// Big Picture by Pixelarity
/// pixelarity.com | hello@pixelarity.com
/// License: pixelarity.com/license
///
/* Button */
input[type="button"],
input[type="submit"],
input[type="reset"],
.button,
button {
@include vendor('appearance', 'none');
@include vendor('transition', 'background-color #{_duration(transition)} ease-in-out');
background-color: _palette(accent1, bg);
border: 0;
border-radius: 3.5em;
color: _palette(accent1, fg);
cursor: pointer;
display: inline-block;
height: 3.5em;
line-height: 3.5em;
outline: 0;
padding: 0 2em 0 2em;
position: relative;
text-align: center;
text-decoration: none;
&.down {
width: 5em;
height: 5em;
line-height: 4.5em;
padding: 0;
background-image: url('images/dark-arrow.svg');
background-position: center center;
background-repeat: no-repeat;
text-indent: -10em;
overflow: hidden;
&.anchored {
bottom: 0;
border-bottom: 0;
border-radius: 3em 3em 0 0;
height: 4.5em;
margin-left: -2.5em;
}
}
&.anchored {
position: absolute;
left: 50%;
}
&:hover {
background-color: lighten(_palette(accent1, bg), 5);
}
&:active {
background-color: darken(_palette(accent1, bg), 5);
}
&.style2 {
background-color: transparent;
border: solid 2px _palette(border);
color: inherit;
&:hover {
background-color: transparentize(_palette(border), 0.75);
}
&:active {
background-color: transparentize(_palette(border), 0.625);
}
&.down {
background-image: url('images/arrow.svg');
}
}
}
|