blob: 59cfc5bc259547cd31e4ee8c521db4cacd10c5b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
.button {
white-space: nowrap;
display: inline-block;
padding: 8px 15px 6px 15px;
background: $primary;
font-weight: normal;
text-transform: uppercase;
color: lighten($primary, 50%);
text-decoration: none;
-webkit-transition: all 0.15s ease;
transition: all 0.15s ease;
border-radius: 3px;
&:hover {
color: #fff;
background-color: lighten($primary, 10%);
text-decoration: none;
}
}
.button-white {
background: none;
color: #fff;
border: 2px solid #fff;
}
|