/* test site */

div#testsite {
	display: block;
	padding: 5px;
	width: calc( 100vw - 10px );
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 999;

	text-align: center;

	font-family: 'Roboto', Segoe UI, Calibri, sans-serif, Arial;
	font-size: 30px;
	color: white;

	background-color: rgba(255,100,100,.75);

	animation: blinker 1s linear infinite;
}

	div#testsite.admin {
		transform: rotate(90deg);
		width: 100vh;
		height: 30px;
		top: calc( 50vh - 25px ) !important;
		right: calc( -50vh + 15px );
		left: auto;
	}

@keyframes blinker {
	50% {
		opacity: .25;
	}
}