#playground{
	margin-top: 75px;
}

.debug{
	width: 600px;
	margin: 0 auto;
	margin-top: 30px;
}

.todo-filter {
	margin-bottom: 25px;
}

.todo-filter>li>a{
	padding: 8px 12px;
	font-size: 12px;
}

#todoAdd {
	margin-left: 40px;
}

.todoField{
	padding-left: 5px;
	font-size: 20px;
}

#newTodoField{
	margin: 20px;
	width: 75%;
}

#todoSubmit{
	margin-top: -5px;
}

.todoTask{
	margin-bottom: 20px;
}

.todoName{
	font-size: 20px;
	border-bottom: 1px lightgray solid;
	padding-bottom:5px;
}

.edit-in-place span {
  cursor: pointer;
}

.edit-in-place input {
  display: none;
}

.edit-in-place.active span {
  display: none;
}

.edit-in-place.active input {
  display: inline-block;
}

.just-finished-symbol {
  display: inline-block;
  background-color: #5cb85c;
  color: white;
  padding: 2px 7px;
  margin: 2px;
  border-radius: 3px;
  font-size: 0.85em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}
.just-finished-symbol:hover {
  background-color: #449d44;
}
.just-finished-failed {
  background-color: #d9534f;
}
.just-finished-failed:hover {
  background-color: #c9302c;
}