//! Dedicated styling system for Components
//! ---------------------------------------
//!
//!
//!
//!
//!
//!
//!

enum Styles {
    background,
    backgroundAttachment,
    backgroundColor,
    backgroundImage,
    backgroundPosition,
    backgroundRepeat,
    border,
    borderBottom,
    borderBottomColor,
    borderBottomStyle,
    borderBottomWidth,
    borderColor,
    borderLeft,
    borderLeftColor,
    borderLeftStyle,
    borderLeftWidth,
    borderRight,
    borderRightColor,
    borderRightStyle,
    borderRightWidth,
    borderStyle,
    borderTop,
    borderTopColor,
    borderTopStyle,
    borderTopWidth,
    borderWidth,
    clear,
    clip,
    color,
    cursor,
    display,
    filter,
    cssFloat,
    font,
    fontFamily,
    fontSize,
    fontVariant,
    fontWeight,
    height,
    left,
    letterSpacing,
    lineHeight,
    listStyle,
    listStyleImage,
    listStylePosition,
    listStyleType,
    margin,
    marginBottom,
    marginLeft,
    marginRight,
    marginTop,
    overflow,
    padding,
    paddingBottom,
    paddingLeft,
    paddingRight,
    paddingTop,
    pageBreakAfter,
    pageBreakBefore,
    position,
    strokeDasharray,
    strokeDashoffset,
    textAlign,
    textDecoration,
    textIndent,
    textTransform,
    top,
    verticalAlign,
    visibility,
    width,
    zIndex,
}