html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #dd0;
}

/* Scale canvas with resize attribute to full size */
canvas[resize] {
    width: 100%;
    height: 100%;
}

body.add {
  cursor: url(add_node.svg), auto;
  cursor: -webkit-image-set(
   url('add_node.svg') 1x,
   url('add_node_x2.svg') 2x
  ) 0 0, auto;
}


body.handle-in,
body.handle-out {
  cursor: move;
}

body.segment {
  cursor: move;
}

body.close {
  cursor: url(close_path.svg), auto;
  cursor: -webkit-image-set(
   url('close_path.svg') 1x,
   url('close_path_x2.svg') 2x
  ) 0 0, auto;
} 