/**
 * Fix user-agent
 */

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/**
 * Canvas
 */

.whiteboard {
  height: 100%;
  width: 70%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

#quizzer {
  height: 100%;
  width: 30%;
  position: absolute;
  left: 70%;
  right: 0;
  bottom: 0;
  top: 0;
}

.colors {
  position: fixed;
  height: 48px;
}

.color {
  display: inline-block;
  height: 48px;
  width: 48px;
}

.miscellaneous {
  display: inline-block;
  vertical-align: top;
  height: 48px;
  width: 48px;
}

.question {
  display: inline-block;
  vertical-align: top;
  top: 10px;
  height: 48px;
  margin-top: 0px;
}

#sdq {
  background-color: yellow;
}

#sda {
  border: 3px dashed red;
}

.drawmode {
  display: inline-block;
  vertical-align: top;
  height: 48px;
  width: 48px;
}

.image1 {
  border-top-right-radius: 14px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.image2 {
  text-align:center;
  font-size:32px;
  border-top-right-radius: 14px;
  border-bottom-left-radius: 14px;
}

.color.black { background-color: black; }
.color.red { background-color: red; }
.color.green { background-color: green; }
.color.blue { background-color: blue; }
.color.yellow { background-color: yellow; }
.color.miscellaneous { border: 5px solid pink; }
.drawmode.line { border: 5px solid lightgreen; }
.drawmode.rectangle { border: 5px solid lightblue; }
.drawmode.circle { border: 5px solid lightgray; }
.drawmode.image1 { border: 5px solid blue; }
.drawmode.image2 { border: 5px solid red; }
.question.maths { border: 5px solid transparent; }
