Guest User

Untitled

a guest
Nov 21st, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. //Here is how we can control the selection colour for fonts
  2.  
  3. html {
  4. font: 16px $base-font-family;
  5. font-weight: 400;
  6. color: $color-dark;
  7. text-rendering: optimizeLegibility;
  8. -webkit-font-smoothing: antialiased;
  9.  
  10. //Styling for the font selection colors
  11. ::-moz-selection { background: $color-primary;
  12. color: $color-secondary-lighter;
  13. }
  14.  
  15. ::selection { background: $color-primary;
  16. color: $color-secondary-lighter;
  17. }
  18. }
  19.  
  20. //This is a simple way to keep branding consistent
Add Comment
Please, Sign In to add comment