Guest User

Untitled

a guest
Nov 21st, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $text: blue;
  2. $accent: green;
  3.  
  4. .article {
  5. &__title {
  6. color: $accent;
  7. }
  8.  
  9. // Applies margin only, when .article__title is present
  10. &__title + &__text {
  11. margin-top: 15px;
  12. }
  13.  
  14. &__text {
  15. color: $text;
  16. }
  17. }
  18.  
  19.  
  20. /* compiled css */
  21. .article__title {
  22. color: green;
  23. }
  24. .article__title + .article__text {
  25. margin-top: 15px;
  26. }
  27. .article__text {
  28. color: blue;
  29. }
Add Comment
Please, Sign In to add comment