/* 
    Created on : Jun 3, 2015, 9:33:11 AM
    Author     : Fornax
*/

body{
	background-color: #111;
	background-image: url("/res/img/checker.png");
	background-repeat: repeat;
	color: #ddd;
	font-size: 16px;
	font-family: 'Ubuntu', sans-serif;
	margin: 0;
	text-align: center;
	height: 100%;
	overflow-x: hidden;
}

html{
	height: 100%;
}

/* HEAD */

.head{
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	overflow-y: hidden;
	overflow-x: hidden;
	z-index: 2;
	display: flex;
	flex-direction: column;
	text-shadow: #000 1px 2px 1px;
}

.head-button{
	position: relative;
	height: 40px;
	width: 40%;
	min-width: 200px;
	max-width: 400px;
	background-color: #9FCF6C;
	border-radius: 10px;
	border: none;
	color: #333;
	font-size: 30px;
	margin: 6px;
	cursor: pointer;
	box-shadow: #000 4px 4px 1px;
}

#head-top{
	width: 100%;
	flex-shrink: 0;
	background-color: #555;
	z-index: 2;
}

#head-center{
	flex-grow: 100;
	width: 100%;
	min-height: 150px;
	text-align: center;
	padding-top: 50px;
	z-index: 1;
	
	background-image: url("/res/img/cloud-cover-light.png");
	background-color: #000;
	background-position: top left;
	background-repeat: repeat-x;
}

#uploads-container{
	position: absolute;
	max-width: 500px;
	width: 100%;
	top: 180px;
	bottom: 60px;
	left: 50%;
	margin-left: -250px;
	overflow-y: scroll;
	overflow-x: hidden;
}

#head-bottom{
	flex-shrink: 0;
	width: 100%;
	height: 40px;
	background-color: #555;
	z-index: 2;
}

.fade-row{
	position: absolute;
	height: 30px;
	top: 100%;
	width: 100%;
	background-image: url("/res/img/fade.png");
	background-repeat: repeat-x;
	z-index: 3;
}

/* Background */

.background-file{
	position: absolute;
	opacity: 0.2;
	width: 10%;
	max-width: 70px;
}

.file1{
	top: 20%;
	left: 30%;
}

.file2{
	top: 40%;
	left: 100%;
}

.file3{
	top: 50%;
	left: 80%;
}

.file4{
	top: 75%;
	left: 85%;
}

.file5{
	top: 25%;
	left: 60%;
}

.file6{
	top: 80%;
	left: 70%;
}
.file7{
	top: 30%;
	left: 10%;
}
.file8{
	top: 45%;
	left: 20%;
}
.file9{
	top: 80%;
	left: 30%;
}
.file10{
	top: 85%;
	left: 5%;
}

/* UPLOAD */

.progressbar{
	position: fixed;
	top: 0;
	width: 100%;
	height: 20px;
	background-color: #555;
	overflow: hidden;
	color: #eeeeee;
	z-index: 100;
	text-align: left;
	white-space: nowrap;
}

.progressbar-inner{
	position: absolute;
	top: 0;
	width: 0%;
	left: 0;
	height: 100%;
	background-color: #9FCF6C;
	overflow: hidden;
	color: #000;
	white-space: nowrap;
}

.progressText{
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
}

.uploadHistory{
	border: 1px #9FCF6C solid;
	position: relative;
	margin-top: 8px;
	padding: 5px;
	width: 500px;
	max-width: 90%;
	display: inline;
	margin-left: auto;
	margin-right: auto;
}


/* BODY */

.body{
	position: relative;
	display: inline-block;
	max-width: 1000px;
	min-width: 300px;
	width: 100%;
	height: auto;
	padding: 8px;
	box-sizing: border-box; 
	background-color: #111;
	margin-top: 40px;
	margin-bottom: 30px;
	text-align: left;
	box-shadow: #eee 0px 0px 50px;
	z-index: 1;
}

.navbar{
	position: relative;
	width: 100%;
	overflow: hidden;
	height: 82px;
	background-color: #111;
	text-align: left;
	z-index: 100;
	border-bottom: #555 solid 1px;
}

.navbar-button{
	background-color: #222;
	border: #9FCF6C solid 1px;
	color: #eeeeee;
	font-size: 14px;
	font-family: 'Ubuntu', sans-serif;
	cursor: pointer;
	vertical-align: bottom;
	width: 80px;
	margin-left: 10px;
	height: 80px;
	display: block;
	float: left;
	text-align: center;
}
.navbar-button:hover{
	text-decoration: none;
}
.navbar-button-image{
	height: 60px;
}

::-webkit-scrollbar{
	width: 12px;  /* for vertical scrollbars */
	height: 12px; /* for horizontal scrollbars */
}
::-webkit-scrollbar-track{
	background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb{
	/*background: rgba(0, 0, 0, 0.5);*/
	background-color: #555;
}
::-webkit-scrollbar-corner{
	background: transparent;
}

/* Common elements */

a{
	color: #9FCF6C;
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
	color: #9FCF6C;
}

input[type="text"], input[type="password"], input[type="email"]{
	border: #9FCF6C ridge 2px;
	background: #626262;
	color: #eeeeee;
	height: 20px;
	font-size: 18px;
	font-family: 'Ubuntu', sans-serif;
	vertical-align: bottom;
}

input[type="submit"], input[type="button"]{
	background-color: #222;
	border: #9FCF6C solid 1px;
	color: #eeeeee;
	font-size: 16px;
	font-family: 'Ubuntu', sans-serif;
	cursor: pointer;
	vertical-align: bottom;
	margin: 0;
}

input[type="submit"]:hover, input[type="button"]:hover{
	background-color: #444;
}

input[type=file]{
	visibility: hidden;
	position: static;
	width: 0;
	height: 0;
}