#console {
  font-family:  monospace;
  border: 1px groove gray;
  background-color: black;
  color:             #0f0;
  height:           100px;
  overflow:        scroll;
}

#console p {
  margin: 0;
  border-bottom: 1px dotted gray;
}

#console .info {
  padding-left: 16px;
  background-image: url(../imgs/icon/info.png);
  background-repeat: no-repeat;
  color: #0ff;
}

#console .warn {
  padding-left: 16px;
  background-image: url(../imgs/icon/warning.png);
  background-repeat: no-repeat;
  color: #ff0;
}

#console .error {
  padding-left: 16px;
  background-image: url(../imgs/icon/error.png);
  background-repeat: no-repeat;
  color: #f00;
}