Skip to content

Singleware/oss

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Object Style Sheets

This package provides some classes to help you create CSS statements at runtime in a easy way.

Usage

import * as OSS from '@singleware/oss';

const stylesheet = new OSS.Stylesheet();
const style = stylesheet.select('.my-class');

style.display = 'block';
style.padding = '1rem';
style.boxSizing = 'border-box';

const css = stylesheet.toString();

Install

Using npm:

npm i @singleware/oss

License

MIT © Silas B. Domingos