/*
 * Custom CSS for testing task
 * @author Alex Ishenko <http://qialex.me/ui>
 * License: MIT
 */

html, body {
    height: 100%;
	margin:0px;
}

div {
	margin:0px;
	padding:0px;
}

.text-center {
	text-align:center;
}

#snake {
	display: inline-block;
}
.field {
	width:50px;
	height:50px;
	border:1px solid #ccc;
	background-color:#06B306;
	display:inline-block;
}

.fieldSnake {
	background-color:#ccc;
}
.fieldSnakeHead {
	background-color:white;
}

.fieldMeal {
	background-color:blue;
}

#snakePanelTemp {
	width:100%;
	height:20px;
	text-align:left;
}

#snakePanelConf {
	width:100%;
	height:20px;
	margin-top:20px;
	text-align:left;
}