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.
- Host: GitHub
- URL: https://github.com/stylecow/stylecow-plugin-import
- Owner: stylecow
- License: mit
- Created: 2014-08-03T20:50:52.000Z (almost 12 years ago)
- Default Branch: deno
- Last Pushed: 2020-09-12T21:18:05.000Z (almost 6 years ago)
- Last Synced: 2025-10-12T00:57:55.346Z (9 months ago)
- Topics: css, deno, preprocessor, stylecow
- Language: JavaScript
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
}
```