div.main-content {
  height: calc(100% - 60px);
}

div#newTaskDiv {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.menu-open div#newTaskDiv {
  width: 70%;
}

input {
  height: 60px;
  width: 80%;
  border: none;
  border-top: 1px solid #eee;
  padding-left: 20px;
}

input:focus {
  outline: none;
}

button#newTaskButton {
  height: 60px;
  color: #fff;
  background-color: #4885ed;
  border: none;
  width: 20%;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

button#newTaskButton:hover {
  background-color: #3975db;
}

button#newTaskButton:focus {
  outline: none;
}

ul#sortable {
  max-height: calc(100% - 120px);
  overflow: scroll;
}

ul#sortable:active {
	background-color: #ccc;
}

li.tasks {
  display: block;
  cursor: pointer;
}
