/* --------------------------
* ::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;
}