16 lines
220 B
CSS
16 lines
220 B
CSS
@import 'some.css.file.css';
|
|
@import 'some/other.css.file.CSS';
|
|
@import 'some.css' all;
|
|
@import "some.print.css" print;
|
|
.mixin {
|
|
color: red;
|
|
}
|
|
.mixin {
|
|
color: red;
|
|
}
|
|
.import {
|
|
color: red;
|
|
width: 6px;
|
|
height: 9px;
|
|
}
|