2018-12-27 16:31:28 -08:00
|
|
|
.sl-c-button {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
margin: 0;
|
|
|
|
border: 0 {
|
|
|
|
radius: sl-px-to-rem(4px);
|
|
|
|
};
|
|
|
|
padding: sl-px-to-rem(12px) sl-px-to-rem(16px);
|
|
|
|
background: $sl-color--iron;
|
|
|
|
box-shadow: 0 2px 1px rgba($sl-color--midnight-blue, .125);
|
|
|
|
color: darken($sl-color--hopbush, 10%);
|
|
|
|
cursor: pointer;
|
2012-11-28 08:23:08 -08:00
|
|
|
|
2013-10-11 16:06:20 -04:00
|
|
|
&:hover,
|
2018-12-27 16:31:28 -08:00
|
|
|
&:focus { color: darken($sl-color--bouquet, 10%); }
|
2012-11-28 08:23:08 -08:00
|
|
|
|
2018-12-27 16:31:28 -08:00
|
|
|
&:active { color: darken($sl-color--venus, 10%); }
|
|
|
|
|
|
|
|
&--primary {
|
|
|
|
background-color: darken($sl-color--hopbush, 10%);
|
|
|
|
|
|
|
|
&,
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active { color: $sl-color--white; }
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus { background-color: darken($sl-color--bouquet, 10%); }
|
2013-02-08 19:10:33 -08:00
|
|
|
|
2018-12-27 16:31:28 -08:00
|
|
|
&:active { background-color: darken($sl-color--venus, 10%); }
|
|
|
|
}
|
2013-10-09 06:30:53 -04:00
|
|
|
}
|