View file main.css

File size: 1.25Kb
body{
	font-family: 'robotoregular';
	background: #fff;
	overflow: hidden;
	user-select:none;
	-webkit-user-select:none;
	-moz-user-select:none;
}
#source{
	position: absolute;
	top:20px;
	left: 2%;
	width: 57%;
	height: 100%;
  border-color:1px #26a;
}
#source textarea{
	font-size: 15px;
	font-family: 'veramono';
	border:2px solid #26a;
	outline: none;
	width: 50%;
	height: 75%;
	padding: 8px;
	margin: 8px;
	resize:none;
	margin-top: 0px;
	box-color:blue;
	box-shadow: inset 0px 0px 1px 1px #26a;
}
.source{
	background: #333;
}
#button{
	background: #26a;
	color: #fff;
	border: 1px solid #246;
	cursor: pointer;
	transition:.2s;
	position: relative;
	left: 6px;
	bottom: 8px;
	border:none;
	outline: none;
	padding: 10px;
}
#button:hover{
	box-shadow: 0px 0px 5px rgba(0,0,0,0.6);
}
#button:active{
	box-shadow: inset 0px 0px 3px rgba(0,0,0,0.6);
}


#output{
	position:absolute;
	overflow: auto;
	top:0px;
	left: 50%;
	width:45%;
	right: 5%;
	height: 330px;
	padding: 8px;
	margin: 8px;
	resize:none;
	margin-top: 20px;
	border:2px solid #26a;
	box-shadow: inset 0px 0px 1px 1px #26a;
}
#footer{
color:#26a;
position:fixed;
padding:5px;
top:80%;
display:inline;
}
@media all and (min-width:300px) and (max-width:700px) {
#footer{margin-top:80%;
position:absolute;
}
}