@charset "utf-8";

/* generics -------------------------------------------------------------------------------------------------------- */

html {
  position: relative;
  min-height: 100%;
}

body {
  font-family: "Roboto Condensed", serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.65;
}

.site-content{
  padding-bottom: 3em;
}

#board{
  width: auto;
  margin: auto;
}

#board td{
  height: 100px;
  width: 100px;
  vertical-align: middle;
  cursor: pointer;
  line-height: normal;
  padding: 0.25em;
  font-size: 0.9em;
  position: relative;
}

#board td:hover{
  opacity: 0.7;
}

.marker{
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  opacity: 0;
  border-radius: 50%;
}

.marker.marked{
  opacity: 1;
}

.counter{
  position: absolute;
  top: 4px;
  right: 4px;
  opacity: 0;
}

.counter.marked{
  opacity: 1;
}

/* additional width classes ---------------------------------------------------------------------------------------- */

/* thirds */
.w-33 { width: 33% !important; }
.w-66 { width: 66% !important; }

/* fifths */
.w-20 { width: 20% !important; }
.w-40 { width: 40% !important; }
.w-60 { width: 60% !important; }
.w-80 { width: 80% !important; }

/* sixths */
.w-17 { width: 17% !important; }
.w-83 { width: 83% !important; }
