Newer
Older
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
/* DEFAULT button shortcode styles */
a.button {
background: #ccc;
color: #fff;
text-decoration: none;
font-weight: bold;
padding: 20px 25px;
display: inline-block;
text-transform: uppercase;
margin-bottom: 20px;
border: 0;
&:hover,
&:focus {
background: #999999;
}
/* SIZE button styles */
&.small {
padding: 10px 15px;
font-size: 0.9em;
}
&.large {
padding: 30px 35px;
font-size: 1.2em;
}
/* COLOR button styles */
&.primary {
background: #004099;
&:hover,
&:focus {
background: #00265a;
}
}
&.alternate {
background: #044c37;
&:hover,
&:focus {
background: #06805b
}
}
}