@import 'nib'

global-reset()

@keyframes rotate_clockwise
  from
    transform rotate(0deg)
  to
    transform rotate(360deg)

@keyframes zoom_fade
  from
    opacity   1
    transform scale(1)
  to
    opacity   0
    transform scale(3)

font(size = 10pt, family = null)
  if family is null
    font size 'Lucida Sans Unicode', 'Lucida Sans', Lucida, sans-serif
  else
    font size family

center(width, height)
  absolute    left 50% top 50%
  width       width
  height      height
  margin-left (-(width / 2))
  margin-top  (-(height / 2))

color_background = white
color_green      = #090
color_red        = #900
color_text       = #333

html
  width  100%
  height 100%

body
  font()
  width            100%
  height           100%
  background-color color_background
  color            color_text
  overflow         hidden

.green
  color color_green

.red
  color color_red

@import 'home'
@import 'graph'
@import 'toolbox'