22 lines
359 B
Plaintext
22 lines
359 B
Plaintext
/*
|
|
CSS imports
|
|
*/
|
|
@import 'some.css.file.css';
|
|
@import 'some/other.css.file.CSS';
|
|
/*
|
|
CSS imports (media)
|
|
*/
|
|
@import 'some.css' all;
|
|
@import "some.print.css" print;
|
|
/*
|
|
Less imports
|
|
*/
|
|
@import './imports/import.less';
|
|
@import './imports/import.less'; // redundant
|
|
@import './imports/import_f'; // No ext
|
|
.import {
|
|
.mixin;
|
|
.mixf(6px);
|
|
height: @imported;
|
|
}
|