CRLF.less 341 B

1234567891011121314151617181920212223242526
  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. }