easyCss!

easyCss()

Add all functions and variables to the global scope.

easyCss()

CssSize(size, unit)

A constructor used in most functions in easyCss.

var size = new CssSize(30)
//size.measure => '30px'

addCssToSingleElement(el, css)

Add css to element. css is an object with your css rules, and el must be a DOM element.

var p = document.getElementById('p')
addCsstoSingleElement(p, {color:'red', 'background-color':'green'})

addCssByQuery(query, css)

Add css to all elements that match query.

addCssByQuery('body', {'background-color':'yellow'})
//Changes body's background color to yellow

grid() and flex()

grid(container, children, options)

Hi! I span 2 cells. Hi! I only take up one cell. HI! I take up 1 cell.
//Example above
easyCss()
var div = document.getElementById('gridsample')
grid(div, [
  {
    el:div.children[0],
    row:0,
    column:0,
    rowspan:2
  },
  {
    el:div.children[1],
    row:0,
    column:1
  },
  {
    el:div.children[2],
    row:1,
    column:1
  }
], {
  cellSize:new CssSize(100)
})

flex(container, children, options)

im span #1 im span #2 im span #3
var div = document.getElementById('flexsample')
flex(div, [
  {
    el:div.children[0],
    order:2,
    grow:5
  },
  {
    el:div.children[1],
    order:3,
    grow:1,
    length:new CssSize(50)
  },
  {
    el:div.children[2],
    order:1,
    grow:3
  }
], {
  direction:'column'
})

Others

place(el, x, y)

el is a valid html element, and x and y are valid CssSize objects.

var p = document.getElementById('p')
place(0, new CssSize(30), new CssSize(30))
// p would be placed at x: 30px, and y: 30px

Download

Download, or add this line of code in your html file

<script src="https://js-extras.shivankchhaya.repl.co/easyCss/easyCss.js"></script>