Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diokuz/pila
CSS excluder
https://github.com/diokuz/pila
Last synced: 11 days ago
JSON representation
CSS excluder
- Host: GitHub
- URL: https://github.com/diokuz/pila
- Owner: Diokuz
- Created: 2014-01-17T07:51:09.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-30T05:28:21.000Z (over 10 years ago)
- Last Synced: 2024-10-12T05:23:51.996Z (about 1 month ago)
- Language: JavaScript
- Size: 189 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Pila - tool for removing CSS code.
Example:
```css
a {
background: red;
}
.baron {
color: red;
background: white;
}
.baron {
background: pila;
}
```goes to
```css
a {
background: red;
}
.baron {
color: red;
}
```and a.baron will have box-shadow: red.