Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. // ----
  2. // libsass (v3.2.5)
  3. // ----
  4.  
  5. @mixin mq-hoge {
  6. @media (max-width: 100px) {
  7. @content;
  8. }
  9. }
  10.  
  11. .hoge {
  12. background-color:tomato;
  13. @include mq-hoge {
  14. background-color:red;
  15. }
  16. }
  17.  
  18. .hoge__elm {
  19. background-color:limegreen;
  20. @include mq-hoge {
  21. background-color:tomato;
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement