Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. // ----
  2. // libsass (v3.2.5)
  3. // ----
  4.  
  5. @mixin typog--one-word-header() {
  6. font-size: 100px;
  7. font-weight: 800;
  8. color: #fff; // default
  9. @content;
  10. }
  11.  
  12. // Now let's apply default
  13. .thingy {
  14. @include typog--one-word-header();
  15. }
  16. .thingy--black {
  17. @include typog--one-word-header() {
  18. color: #000;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement