mirror of
https://github.com/less/less.js.git
synced 2026-01-23 06:07:56 -05:00
29 lines
731 B
Plaintext
29 lines
731 B
Plaintext
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
|
|
|
|
@import url(/absolute/something.css) screen and (color) and (max-width: 600px);
|
|
|
|
@var: 100px;
|
|
@import url("//ha.com/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");
|
|
|
|
@import (less, multiple) "import/import-test-d.css" screen and (max-width: 601px);
|
|
|
|
@import (multiple) "import/import-test-e" screen and (max-width: 602px);
|
|
|
|
@import (less, multiple) url("import/import-test-d.css") screen and (max-width: 603px);
|
|
|
|
@media print {
|
|
@import (multiple) "import/import-test-e";
|
|
}
|
|
|
|
@charset "UTF-8"; // climb on top #2126
|
|
|