/app/node_modules/less/test/css/comments.css
CSS | 56 lines | 19 code | 1 blank | 36 comment | 0 complexity | 12ef20804da94d8cd7a60bb3d397c604 MD5 | raw file
Possible License(s): MIT, Apache-2.0
1/******************\ 2* * 3* Comment Header * 4* * 5\******************/ 6/* 7 8 Comment 9 10*/ 11/* 12 * Comment Test 13 * 14 * - cloudhead (http://cloudhead.net) 15 * 16 */ 17/* Colors 18 * ------ 19 * #EDF8FC (background blue) 20 * #166C89 (darkest blue) 21 * 22 * Text: 23 * #333 (standard text) // A comment within a comment! 24 * #1F9EC9 (standard link) 25 * 26 */ 27/* @group Variables 28------------------- */ 29#comments { 30 /**/ 31 color: red; 32 /* A C-style comment */ 33 34 background-color: orange; 35 font-size: 12px; 36 /* lost comment */ 37 content: "content"; 38 border: 1px solid black; 39 padding: 0; 40 margin: 2em; 41} 42/* commented out 43 #more-comments { 44 color: grey; 45 } 46*/ 47.selector, 48.lots, 49.comments { 50 color: #808080, /* blue */ #ffa500; 51 -webkit-border-radius: 2px /* webkit only */; 52 -moz-border-radius: 8px /* moz only with operation */; 53} 54#last { 55 color: #0000ff; 56}