LukasBombach / intentional-css

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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( _ )

About

License:MIT License


Languages

Language:HTML 69.5%Language:CSS 30.5%