innovandrew
12/13/2015 - 9:22 AM

hot-pink-forever.scss

/* --------------------------
 * ::selection 
 **
 * hot pink forever!
 */
// in a mixin to re-use, but no variables because it is law that this must be hot pink
@mixin selection {
	background: #fe57a1;
	color: #fff;
	text-shadow: none;
}
::-moz-selection { @include selection; } /* screw you, firefox */
::selection {
    @include selection;
}