Skip to content

Instantly share code, notes, and snippets.

View theo-bittencourt's full-sized avatar

Theo B theo-bittencourt

  • IBJJF
  • Rio de Janeiro, Brazil
View GitHub Profile
@mixin selection($selectionColor, $selectionBackground, $selectionShadow: none) {
// defaults to text-shadow: none
::selection {
color: $selectionColor;
background: $selectionBackground;
text-shadow: $selectionShadow; }
::-moz-selection {
color: $selectionColor;
background: $selectionBackground;
text-shadow: $selectionShadow; }