﻿/* identifikace vyvojoveho prostredi */
body:after {
	position: fixed;
	z-index: 2000;
	width: 400px;
	margin-left: -200px;
	left: 50%;
	top: 0;
	height: 25px;
	line-height: 25px;
	font-size: 13pt;
	font-weight: bold;
	text-align: center;
	border-radius: 0 0 25px 25px;
	border-bottom: 1px solid #000;
	color: #000;
	opacity: .8;
}
body.localhost:after {
	content: "localhost";
	background-color: #afff03;
}
body.dev:after {
	content: "Development";
	background-color: #fff600;
}
body.testing:after {
	content: "Testing";
	background-color: #ff9600;
}
body.prelive:after {
	content: "Prelive";
	background-color: #ff4abd;
}
