mirror of
https://github.com/less/less.js.git
synced 2026-02-08 14:05:24 -05:00
16 lines
360 B
Plaintext
16 lines
360 B
Plaintext
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
|
|
|
|
@import url(something.css) screen and (color) and (max-width: 600px);
|
|
|
|
@var: 100px;
|
|
@import url("file.css") (min-width:@var);
|
|
|
|
#import-test {
|
|
.mixin;
|
|
width: 10px;
|
|
height: (@a + 10%);
|
|
}
|
|
@import "import/import-test-e" screen and (max-width: 600px);
|
|
|
|
@import url("import/import-test-a.less");
|