AB
Button hover
Function lightening by 15%
Transition colors ease in out?
Size: a a a
AB
AB
AB
VK
Д
AP
AB
AB
VK
@mixin button($color-base) {
color: $color-base;
transition: .2s;
&:hover {
color: lighten($color-base, 10%);
}
}
.button {
@include button(#ff0000);
}
VK
AB
@mixin button($color-base) {
color: $color-base;
transition: .2s;
&:hover {
color: lighten($color-base, 10%);
}
}
.button {
@include button(#ff0000);
}
m
ZA
ZA
m
ZA
m