@mixin hover() {
&:hover { @content; }
}
@mixin hover-focus() {
&:hover,
&:focus {
@content;
@mixin plain-hover-focus() {
&,
@mixin hover-focus-active() {
&:focus,
&:active {