/*
File: style.css
Author: Gijs de Jong
*/

body {
  background-color: #fff;
}

#wrapper {
  font-family: "Open-Sans", sans-serif;

  display: none;

  width: 100%;

  color: #222;
}

#functioncontainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 307px;/*307*/
  height: 395px;
  margin: auto;
}

.title {
  font-family: "Inconsolata", monospace;
  font-size: 20pt;

  display: none;

  margin-bottom: 14px;

  text-align: left;
}

.item {
  font-family: "Inconsolata", monospace;
  font-size: 16pt;
  line-height: 52px;

  width: 276px;
  height: 52px;
  margin-right: 0;
  margin-bottom: 18px;
  margin-left: auto;

  cursor: pointer;
  transition: 0.3s;
  text-align: center;

  opacity: 0;
  border: 2px solid #222;
}
.item:hover {
  width: 303px;

  letter-spacing: 3px;

  color: #fff;
  background-color: #222;
}

/*---------------------------------------------------------------------------------------------------*/

#iocontainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;

  width: 640px;
  height: 395px;
  margin: auto;
}

.inputtitle, .outputtitle {
  font-family: "Inconsolata", monospace;
  font-size: 20pt;

  display: none;

  margin-bottom: 14px;
  margin-left: 4px;

  text-align: left;
}

#inputform {
  display: none;

  margin-bottom: 40px;
}

#input {
  font-size: 14pt;

  width: 624px;
  height: 52px;
  padding-right: 6px;
  padding-left: 6px;

  transition: 0.3s;

  border: 2px solid #ccc;
  outline: 2px solid transparent;
}
#input:hover {
  border: 2px solid #666;
}
#input:focus {
  border: 2px solid #222;
  box-shadow: 0 0 0 1px #888;
}

#submit {
  display: none;
}

#outputcontainer {
  display: none;
}

#output {
  font-size: 14pt;

  width: 624px;
  height: 52px;
  padding-right: 6px;
  padding-left: 6px;

  cursor: pointer;
  transition: 0.3s;

  border: 2px solid #eee;
  background-color: #eee;
}

.back {
  font-family: "Inconsolata", monospace;
  font-size: 15pt;

  position: relative;
  right: 0;

  width: 85px;
  margin: 28px 0 0 auto;

  cursor: pointer;
  transition: 0.5s;
  text-align: right;

  opacity: 0;
}
.back:hover {
  right: 3px;
}
