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

.kn-solved body {
  background-color: #96cc85;
}

h1 {
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin-bottom: 0;
}
h1 span {
  color: #9990;
  transition: color 0.2s;
  width: 200px;
  display: inline-block;
}
h1:hover span {
  color: #ccc;
}

#kn-game-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
#kn-game-holder .kn-spacer {
  flex-grow: 1;
}
#kn-game-holder .kn-modes {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#kn-game-holder .kn-modes .kn-mode {
  margin: 5px;
  text-align: center;
}
#kn-game-holder .kn-modes .kn-mode .kn-bull {
  visibility: hidden;
}
#kn-game-holder .kn-modes .kn-mode.kn-mode-active .kn-bull {
  visibility: visible;
}
#kn-game-holder .kn-credit {
  font-size: 0.6em;
}
.kn-without-numbers #kn-game-holder .kn-hint {
  display: none;
}
#kn-game-holder .kn-sudoku table,
#kn-game-holder .kn-hint table,
#kn-game-holder .kn-nonogram-table table {
  border-collapse: collapse;
}
#kn-game-holder .kn-sudoku table td,
#kn-game-holder .kn-hint table td,
#kn-game-holder .kn-nonogram-table table td {
  vertical-align: middle;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #999;
  font-family: sans-serif;
  background-color: #999;
}
.kn-without-numbers #kn-game-holder .kn-sudoku table td,
.kn-without-numbers #kn-game-holder .kn-hint table td,
.kn-without-numbers #kn-game-holder .kn-nonogram-table table td {
  background-color: #fff;
}
#kn-game-holder .kn-sudoku table td.kn-sudoku-top-border,
#kn-game-holder .kn-hint table td.kn-sudoku-top-border,
#kn-game-holder .kn-nonogram-table table td.kn-sudoku-top-border {
  border-top: 2px solid #000;
}
#kn-game-holder .kn-sudoku table td.kn-sudoku-left-border,
#kn-game-holder .kn-hint table td.kn-sudoku-left-border,
#kn-game-holder .kn-nonogram-table table td.kn-sudoku-left-border {
  border-left: 2px solid #000;
}
#kn-game-holder .kn-sudoku table td.kn-sudoku-bottom-border,
#kn-game-holder .kn-hint table td.kn-sudoku-bottom-border,
#kn-game-holder .kn-nonogram-table table td.kn-sudoku-bottom-border {
  border-bottom: 2px solid #000;
}
#kn-game-holder .kn-sudoku table td.kn-sudoku-right-border,
#kn-game-holder .kn-hint table td.kn-sudoku-right-border,
#kn-game-holder .kn-nonogram-table table td.kn-sudoku-right-border {
  border-right: 2px solid #000;
}
#kn-game-holder .kn-sudoku table td.kn-sudoku-even,
#kn-game-holder .kn-hint table td.kn-sudoku-even,
#kn-game-holder .kn-nonogram-table table td.kn-sudoku-even {
  background-color: white;
  color: #222;
}
.kn-without-numbers #kn-game-holder .kn-sudoku table td.kn-sudoku-even,
.kn-without-numbers #kn-game-holder .kn-hint table td.kn-sudoku-even,
.kn-without-numbers #kn-game-holder .kn-nonogram-table table td.kn-sudoku-even {
  background-image: url(cross.png);
  background-size: cover;
}
#kn-game-holder .kn-sudoku table td.kn-sudoku-odd,
#kn-game-holder .kn-hint table td.kn-sudoku-odd,
#kn-game-holder .kn-nonogram-table table td.kn-sudoku-odd {
  background-color: #444;
  color: white;
}
#kn-game-holder .kn-sudoku table td {
  position: relative;
}
#kn-game-holder .kn-sudoku table td.kn-sudoku-cell-preprinted {
  font-weight: bold;
}
#kn-game-holder .kn-sudoku table td .kn-inner {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#kn-game-holder .kn-sudoku table td .kn-inner.kn-centre {
  font-size: 0.6em;
}
#kn-game-holder .kn-sudoku table td .kn-inner.kn-corner {
  font-size: 0.6em;
  align-items: start;
  justify-content: space-between;
  padding: 0 3px;
}
#kn-game-holder .kn-sudoku table td .kn-inner.kn-corner span {
  flex: 1 1 33%;
  text-align: left;
}
#kn-game-holder .kn-hint table,
#kn-game-holder .kn-nonogram-table table {
  font-weight: bold;
}
#kn-game-holder .kn-hint table {
  border: 2px solid #000;
}
#kn-game-holder .kn-sudoku table td,
#kn-game-holder .kn-hint table td {
  width: 30px;
  height: 30px;
}
#kn-game-holder .kn-nonogram-cols table td {
  width: 30px;
  vertical-align: bottom;
}
#kn-game-holder .kn-nonogram-cols table td span {
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
}
#kn-game-holder .kn-nonogram-rows table td {
  height: 30px;
  text-align: right;
}
#kn-game-holder .kn-nonogram-rows table td span {
  display: inline-block;
  height: 100%;
  line-height: 27px;
  width: 30px;
}
#kn-game-holder .kn-nonogram-table table td {
  background: none;
}
#kn-game-holder .kn-nonogram-table table td span {
  text-align: center;
}
#kn-game-holder .kn-sudoku table {
  cursor: pointer;
}
#kn-game-holder .kn-sudoku table td.kn-cell-selected {
  border: 2px solid red;
}

/*# sourceMappingURL=style.css.map */
