/intentional-css

Primary LanguageHTMLMIT LicenseMIT

intentional-css

Positioning

// position: absolute | sticky
// left: x
// top: y
function pos(
  x: number | "left" | "center" | "right", 
  y: number | "top" | "center" | "bottom", 
  scroll?: boolean = false
);
// position: relative OR added to pos
// left: x
// top: y
// OR
// translate x y ?
function move(x: number, y: number);

Text

text(bold italic underline)
font( _ )