An open API service indexing awesome lists of open source software.

https://github.com/stylecow/stylecow-plugin-import

Stylecow plugin to concatenate the imported css files with relative paths in the main css file.
https://github.com/stylecow/stylecow-plugin-import

css deno preprocessor stylecow

Last synced: about 2 months ago
JSON representation

Stylecow plugin to concatenate the imported css files with relative paths in the main css file.

Awesome Lists containing this project

README

          

# stylecow plugin import

Stylecow plugin to include the @import css files with relative paths in the main css file.

You write:

```css
@import "my-styles.css";

.foo {
color: blue;
}
```

And stylecow converts to:

```css
.imported-foo {
font-size: 2em;
}
.other-imported-foo {
background: blue;
}
.foo {
color: blue;
}
```