/*=============Task Manager - StyleSheet=============*/

/*---Font Face - Roboto---*/
@import url(http://fonts.googleapis.com/css?family=Roboto:400,700,400italic,300);

body {
	background-color: #161713;
	margin: 0;
	padding: 0;
	border: none;
	color: #333;
	font-family: 'Roboto', sans-serif;
	font-size: 10px;
}

h1 {
	text-transform: uppercase;
	color: #999;
	font-size: 2.8em;
	text-align: center;
	font-weight: 700;
	letter-spacing: -0.09em;
}

input, textarea {
	outline: none;
	border: none;
}

.clearfix:before, .clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.container {
	width: 640px;
	margin: 0 auto;
	padding-top: 30px;
}
.toolbar {
	width: 100%;
	background-color: #272822;
	color: #fff;
	font-size: 1.2em;
}

.toolbar ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.toolbar li {
	display: inline-block;
	padding: 10px;
	font-weight: 700;
}

.toolbar li a {
	color: #ecf0f1;
	text-decoration: none;
}

.toolbar li a:hover {
	color: #95a5a6;
}

.toolbar span {
	background-color: rgba(255,255,255,.1);
	padding: 5px 10px;
	margin: 0 5px;
	-webkit-box-shadow: inset 1px 1px 2px 0px rgba(0,0,0,.5);
	-moz-box-shadow: inset 1px 1px 2px 0px rgba(0,0,0,.5);
	-ms-box-shadow: inset 1px 1px 2px 0px rgba(0,0,0,.5);
	-o-box-shadow: inset 1px 1px 2px 0px rgba(0,0,0,.5);
	box-shadow: inset 1px 1px 2px 0px rgba(0,0,0,.5);
}

.task {
	width: 100%;
	min-height: 50px;
	position: relative;
	margin: 20px auto;
	padding: 0;
	background-color: #fff;

	-webkit-box-shadow: 1px 0px 5px 0px rgba(30,30,30,.2);
	-moz-box-shadow: 1px 0px 5px 0px rgba(30,30,30,.2);
	-ms-box-shadow: 1px 0px 5px 0px rgba(30,30,30,.2);
	-o-box-shadow: 1px 0px 5px 0px rgba(30,30,30,.2);
	box-shadow: 1px 0px 5px 0px rgba(30,30,30,.2);
	

	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}

.task-item {
	border-left: 10px solid #7f8c8d;
	margin: 20px auto;
}

.task input, .task textarea {
	width: 100%;
	padding: 10px;
	background-color: #fff;
	overflow: auto;
}

#task-title {
	font-size: 1.8em;
	color: #444;
	font-weight: 700;
}

#task-body {
	font-size: 1.2em;
	font-weight: 100;
	color: #777;
	resize: vertical;
}

.tasks {
	margin: 50px 0;
}

.tasks-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.task-controls {
	opacity: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	

	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

.button {
	font-size: 1.2em;
	margin: 5px;
	padding: 5px 10px;
	background-color: rgba(0,0,0,0.1);
	color: rgba(0,0,0,.5);
	text-decoration: none;
	display: inline-block;
	border-radius: 2px;
	float: right;
	position: relative;
	z-index: 10;
}

.button:hover {
	color: rgba(0,0,0,.9);
	text-decoration: none;
}

.task:hover .task-controls {
	opacity: 1;
}

#task-new > #task-title, #task-new > .task-controls {
	display: none;
}

.danger {
	width: 180px;
	background-color: #e74c3c;
	color: #fff;
	font-size: 1.6em;
	font-weight: 700;
	padding: 5px;
	margin: 20px auto;
	text-align: center;
	letter-spacing: 0.1em;
}

.danger a {
	color: #fff;
}

.empty {
	font-size: 5em;
	color: rgba(255,255,255,.2);
	text-align: center;
	text-transform: uppercase;
}