Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 657 Bytes

README.md

File metadata and controls

31 lines (27 loc) · 657 Bytes

css.py

Want to make your css in python? Look no further than css.py!

Example Usage

from css import *

css = CSS({
    'body': {
        'background-color': Hex('000000'),
        'color': Hsl(0, 0, 0),
        'font-family': 'Arial',
        'font-size': px(12),
        'font-style': italic,
        'font-weight': bold,
        'text-align': center,
        'text-decoration': underline,
        'text-transform': uppercase,
    },
    'p': {
        'font-size': px(14),
        'font-style': normal,
        'font-weight': normal,
        'text-align': left,
        'text-decoration': none,
        'text-transform': lowercase,
    },
})