Skip to content

Instantly share code, notes, and snippets.

@kareemkibue
Created July 25, 2014 22:25
Show Gist options
  • Save kareemkibue/281f109a1df79f3747fa to your computer and use it in GitHub Desktop.
Save kareemkibue/281f109a1df79f3747fa to your computer and use it in GitHub Desktop.
Selection CSS Styling SASS Mixin
@mixin selection {
::-moz-selection { @content; }
::selection { @content; }
}
/*use this mixin*/
@include selection {
/* STYLES e.g */
color: #fff; /*better to store colors as variables such as $base-color:#fff */
background-color: #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment