CRLF.scss 558 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. $nice-blue: #5B83AD;
  2. $light-blue: $nice-blue + #111;
  3. // Comment 1
  4. /*
  5. * Comment 2
  6. */
  7. #header {
  8. // Comment 3
  9. /*
  10. * Comment 4
  11. */
  12. color: @light-blue;
  13. }
  14. @media only screen and (max-width: 600px) {
  15. // Comment 1
  16. /*
  17. * Comment 5
  18. */
  19. body {
  20. background-color: lightblue; // Comment 6
  21. color: red; /* Comment 7 */
  22. }
  23. }
  24. @mixin create-rules($padding) {
  25. //
  26. // Comment 8
  27. //
  28. .abc {
  29. padding: $padding;
  30. }
  31. /**
  32. * Comment 9
  33. */
  34. .def {
  35. padding: $padding;
  36. }
  37. }