File: comments2.less

package info (click to toggle)
less.js 3.13.0%2Bdfsg-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,032 kB
  • sloc: javascript: 23,275; makefile: 12; perl: 11; sh: 1
file content (31 lines) | stat: -rw-r--r-- 1,368 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@media all and/*! */(max-width:1024px) {}
@-webkit-keyframes hover /* Safari and Chrome */{  }
.bg {
  background-image: linear-gradient(#333 /*{comment}*/, #111);
}
#planadvisor,
/*comment*//*comment*/
.first,/*comment*//*comment*/.planning {
    margin:10px;
    total-width: @total-width;
}
@base                       :   1;
@column-width               :   @base * 6em;                //      Width of column             */
@gutter-width               :   2em;                        //      Width of column spacing     */
@columns                    :   12;                         //      Number of Columns           */
@gridsystem-width           :   (@column-width *            //      For calculating the total   */
                                    @columns) + (               //      width of the content area.  */
                                    @gutter-width *             //      We strongly recommend you   */
                                    @columns);                  //      do not change this formula. */
@total-width                :   @gridsystem-width;          //      set to 100% for fluid grid  */

// .............................................................................

.some-inline-comments {
    a: yes /* comment */;
    b: red /* comment */;
   @c: yes /* comment */;
   @d: red /* comment */;
    c: @c;
    d: @d;
}