/* BigTyper */

@-webkit-keyframes blinkingCursor {
	0% {
		border-color: #fff;
	}
	100% {
		border-color: transparent;
	}
}
@-moz-keyframes blinkingCursor {
	0% {
		border-color: #fff;
	}
	100% {
		border-color: transparent;
	}
}
@-ms-keyframes blinkingCursor {
	0% {
		border-color: #fff;
	}
	100% {
		border-color: transparent;
	}
}
.bigtyper span.cursor {
	/* for block cursor change to 0.6em, for line cursor use 2px */
	border-right: 0.6em solid #fff;
}
.bigtyper span.cursor.blinking {
	-webkit-animation: blinkingCursor 1s infinite steps(2, start);
	-moz-animation:    blinkingCursor 1s infinite steps(2, start);
	-ms-animation:     blinkingCursor 1s infinite steps(2, start);
}

/* Parse Intimate */

html,
body {
	height: 100%;
}
body {
	background: no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/*body:after {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '%';
	color: transparent;
	background: url(../img/raster.png);
}*/
#title,
.terminal,
.comparison {
	margin: .2em 0;
	float: left;
	clear: left;
	padding: .2em .4em;
	font-weight: normal;
	font-size: 32px;
	line-height: 1em;
	color: #f77;
	background-color: #282828;
	background-color: rgba(40,40,40,0.8);
}
.comparison {
	clear: none;
	float: right;
	margin-left: .4em;
	font-size: 24px;
	background-color: #141414;
	background-color: rgba(20,20,20,0.5);
}
.comparison.inequality {
	background-color: #B94A48;
}
.terminal.active {
	color: #ddd;
	background-color: #111;
	background-color: rgba(20,20,20,0.9);
}
#input {
	white-space: nowrap;
}
.command {
	font-weight: bold;
	color: #fff;
	white-space: nowrap;
}
.comparison .command {
	font-weight: normal;
}
.command .numeric {
	font-weight: normal;
}
.result {
	margin-right: 1em;
}
.numeric,
.prompt {
	font-family: Consolas, Monaco, Courier, monospace;
}
#log {
	clear: both;
}

#instructions {
	background: #fff;
	background: rgba(255,255,255,0.7);
	color: #000;
}
code.example {
	cursor: pointer;
	border: 1px solid #D14;
}
code.example:hover {
	background-color: #ddd;
}
#title {
	margin-top: 1em;
	font-size: 36px;
	line-height: 1.2em;
}
.brand {
	font-family: 'Pinyon Script';
}
#title .brand,
.modal .brand {
	font-size: 2em;
	padding: 0 .3em;
}
.modal {
	/*max-height: auto;*/
}
#commandline .command {
	margin-bottom: .6em;
}

@media (max-width: 560px) {
	#title {
		font-size: 24px;
	}
	.modal {
		width: auto;
		position: absolute;
		top: 2em;
		left: 0;
		margin: 1em;
	}
	#title,
	.terminal {
		font-size: 24px;
	}
	.comparison {
		font-size: 20px;
	}
}