comments2.less 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. @media all and/*! */(max-width:1024px) {}
  2. @-webkit-keyframes hover /* Safari and Chrome */{ }
  3. .bg {
  4. background-image: linear-gradient(#333 /*{comment}*/, #111);
  5. }
  6. #planadvisor,
  7. /*comment*//*comment*/
  8. .first,/*comment*//*comment*/.planning {
  9. margin:10px;
  10. total-width: @total-width;
  11. }
  12. @base : 1;
  13. @column-width : @base * 6em; // Width of column */
  14. @gutter-width : 2em; // Width of column spacing */
  15. @columns : 12; // Number of Columns */
  16. @gridsystem-width : (@column-width * // For calculating the total */
  17. @columns) + ( // width of the content area. */
  18. @gutter-width * // We strongly recommend you */
  19. @columns); // do not change this formula. */
  20. @total-width : @gridsystem-width; // set to 100% for fluid grid */
  21. // .............................................................................
  22. .some-inline-comments {
  23. a: yes /* comment */;
  24. b: red /* comment */;
  25. @c: yes /* comment */;
  26. @d: red /* comment */;
  27. c: @c;
  28. d: @d;
  29. }