2017-04-05 17:28:34 +02:00
|
|
|
.button {
|
|
|
|
background: $button-background;
|
|
|
|
border: 1px solid $button-font-color;
|
|
|
|
box-shadow: 3px 4px 0 rgba(0,0,0,0.1);
|
|
|
|
color: $button-font-color;
|
|
|
|
display: inline-block;
|
|
|
|
font-family: $button-font-family;
|
|
|
|
font-size: $button-font-size;
|
|
|
|
font-weight: $button-font-weight;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
padding: 10px 30px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
text-decoration: none;
|
2014-07-16 23:51:48 +02:00
|
|
|
|
2017-04-05 17:28:34 +02:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: none;
|
2017-02-23 20:25:19 +01:00
|
|
|
}
|
|
|
|
|
2017-04-05 17:28:34 +02:00
|
|
|
&:hover {
|
|
|
|
background: $button-font-color;
|
|
|
|
border: 1px solid $button-font-color;
|
|
|
|
color: $button-background;
|
2014-07-25 01:15:28 +02:00
|
|
|
}
|
2014-07-23 05:49:44 +02:00
|
|
|
|
2017-04-05 17:28:34 +02:00
|
|
|
&.primary {
|
|
|
|
background: $button-primary-background;
|
|
|
|
border: 1px solid darken($button-primary-background, 5%);
|
|
|
|
color: $button-primary-font-color;
|
2016-10-10 20:06:39 +02:00
|
|
|
|
2017-04-05 17:28:34 +02:00
|
|
|
&:hover {
|
|
|
|
background: lighten($button-primary-background, 5%);
|
|
|
|
}
|
|
|
|
}
|
2014-07-16 23:51:48 +02:00
|
|
|
}
|