#container
{
	width: 360px;
	background: #f7f7f7;
	margin: 100px auto;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

h1
{
	background: #2980b9;
	margin: 0;
	color: white;
	padding: 10px 20px;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: normal;
}

input
{
	font-size: 18px;
	background: #f7f7f7;
	width: 100%;
	padding: 13px 13px 13 20px;
	box-sizing: border-box;
	height: 40px;
	
}

input:focus
{
	background: white;
	border: 3px solid #2980b9;
	outline: none;
	border: 3px solid rgba(0, 0, 0, 0);
}

body
{
	background: #CC95C0;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #7AA1D2, #DBD4B4, #CC95C0);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #7AA1D2, #DBD4B4, #CC95C0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	font-family: Roboto;
}

.fa-plus
{
	float: right;
}

li
{
	background: white;
	height: 40px;
	line-height: 40px;
	color: #666;
}

li:nth-child(2n)
{
	background: #f7f7f7;
}

ul
{
	list-style: none;
	padding: 0;
	margin: 0;

}

.complete
{
	color: gray;
	text-decoration: line-through;
}

span
{
	background: #e74c3c;
	height: 40px;
	margin-right: 20px;
	text-align: center;
	color: white;
	width: 0;
	display: inline-block;
	transition: 0.4s linear;
	opacity: 0;
}

li:hover span
{
	opacity: 1.0;
	width: 40px;

}