Created
July 25, 2014 22:25
-
-
Save kareemkibue/281f109a1df79f3747fa to your computer and use it in GitHub Desktop.
Selection CSS Styling SASS Mixin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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