You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

46 lines
779 B

// for social buttons
@mixin social-buttons-color ($color, $state-color) {
background-color: $color;
color: $white;
&:focus,
&:hover {
background-color: $state-color;
color: $white;
}
&:active,
&:focus,
&:active:focus {
box-shadow: none;
}
&.btn-simple {
color: $state-color;
background-color: transparent;
background-image: none !important;
box-shadow: none;
border: none;
&:hover,
&:focus,
&:hover:focus,
&:active,
&:hover:focus:active {
color: $state-color;
background: transparent !important;
box-shadow: none !important;
}
}
&.btn-neutral {
color: $color;
background-color: $white;
&:hover,
&:focus,
&:active {
color: $state-color;
}
}
}