/************************************************/
/* Color Pallet */
/* Base Colors */
/* Main Primary color */
/* Word Colors */
/************************************************/
/* Mixins / Placeholders */
#timer, #restart {
  margin: 0.2em;
  line-height: 2.2em;
  height: 2.2em;
}

#word-section {
  border: 1px solid #999;
  background-color: #fff;
}

/************************************************/
* {
  margin: 0;
  padding: 0;
}

section {
  width: 100%;
  margin: 0 auto;
  padding: 0.5em;
}

#word-section {
  font-size: 1.5em;
  height: 5em;
  line-height: 2em;
  /* hide 3rd line of text */
  border-radius: 0.25em;
  position: relative;
  overflow: hidden;
}

#word-section > span {
  display: inline-block;
  margin-left: 0.2em;
  /* emulate spaces between words */
}

#type-section {
  text-align: center;
  background: #CDE4FE;
  margin-top: 12px;
  border-radius: 8px;
}

#type-section > * {
  font-size: 1.5em;
  display: inline-block;
  border-radius: 0.25em;
  color: #fff;
  vertical-align: middle;
}

#typebox {
  width: 50%;
  color: #000;
  padding: 0.5em;
}

#timer {
  width: 4em;
  background-color: gray;
  margin-right: 0;
}

#restart {
  line-height: normal;
  width: 2em;
  background-color: #68A143;
}

#restart > span {
  display: inline-block;
  -webkit-transform: rotate(1.5Rad);
          transform: rotate(1.5Rad);
  font-weight: bold;
}

#restart:hover {
  background-position: 0;
}

#restart:active {
  -webkit-box-shadow: 1px 1px 4px #006dbb inset;
          box-shadow: 1px 1px 4px #006dbb inset;
}

#resultst {
  text-align: center;
  margin: 0 1%;
  display: block;
}

#resultst li {
  list-style: none;
}

#resultst li:first-child {
  font-size: 1.5em;
}

#resultst li:nth-child(2) {
  font-size: 0.8em;
  line-height: 1em;
}

#resultst #results-stats {
  font-size: 0.6em;
}

/************************************************/
/* hides small bit of residule text after scrolling */
.magic-box {
  position: fixed;
  width: inherit;
  height: 0.5em;
  top: 54px;
  background-color: #fff;
}

.waiting {
  text-align: center;
  line-height: 1.5em;
  font-size: 3em;
}

.current-word {
  background-color: #dddddd;
}

.correct-word-c {
  color: green;
}

.incorrect-word-c {
  color: #e50000;
}

.incorrect-word-bg {
  background-color: #e50000;
}
/*# sourceMappingURL=style.css.map */