https://github.com/itsjonq/casein
Casein: Writing Sass/CSS with Javascript
https://github.com/itsjonq/casein
Last synced: about 1 month ago
JSON representation
Casein: Writing Sass/CSS with Javascript
- Host: GitHub
- URL: https://github.com/itsjonq/casein
- Owner: ItsJonQ
- Created: 2017-06-24T23:02:25.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-25T20:52:40.000Z (about 9 years ago)
- Last Synced: 2025-02-18T00:04:07.819Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 15.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Casein 🔸
Writing Sass/CSS with Javascript
Experimenting!
## Setup
Run `npm install` to instal things.
## Testing
Running `node index.js` will output:
```css
.c-button {
-webkit-appearance: none;
appearance: none;
box-sizing: border-box;
cursor: pointer;
outline: none;
vertical-align: middle;
-webkit-user-select: none;
user-select: none;
background: red;
border-radius: 4px;
font-size: 1em; }
.c-button:hover {
background: #ff1414; }
.c-button:active {
background: #eb0000; }
.co {
background-color: red;
color: blue;
padding: 10px;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.2); }
.co__child {
background-color: red;
color: blue;
padding: 10px; }
```