deb-python-lesscpy/test/css/imports.css
Sascha Peilicke a556030931 Move tests to root dir
In essence, tests are not an importable submodule anymore but an
independent piece of code that won't be installed in a user's
site-packages directory.
2014-02-02 13:28:58 +01:00

21 lines
394 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;
}
@import "styles.css";
@import url("styles.css");
@import url("druck.css") print;
@import url("foo.css") projection,tv;
@import url("bar.css") handheld and (max-width:500px);