Skip to content

Instantly share code, notes, and snippets.

@guyroutledge
Created October 18, 2013 13:44
Mixin for styling highlighted text
@mixin selection($background, $foreground:#fff) {
::-moz-selection { background: $background; color: $foreground; text-shadow: none; }
::selection { background: $background; color: $foreground; text-shadow: none; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment