@@ -0,0 +1,221 @@
/* Minecraft-like pixely font */
@font-face {
	font-family: minecraftia;
	src: url( 'minecraftia.ttf' );
}

/* General page style */

body {
	height: 100%;
	
	font-family: minecraftia;
	font-size: 16px;
	
	text-shadow: #3f3f3f 2px 2px 0px;
	background-attachment: scroll;
            background-repeat: repeat;
	background: url( '../media/background.png' );
            background-size: 5%;
}

/* Render surface */

#renderSurface {
            
	position: absolute;
	left: 0;
	top: 0;
	
	width: 100%;
	height: 100%;
}

/* Material selector */

#materialSelector {
	position: relative;
	margin: auto;
	
	background: rgba( 0, 0, 0, 0.6 );
}

#materialSelector tr {
	height: 70px;
}

#materialSelector td {
	width: 70px;
	margin: 0;
	padding: 0;
	

	
	opacity: 0.3;
	
	background: url( '../media/blockthumbs.png' );
	background-position: 0px 0px;
}

#materialSelector td:hover {
	opacity: 0.8;
}

/* Username input */

#nickname {
	position: absolute;
	top: 40%;
	left: 42%;
	
	width: 300px;
	
	cursor: default;
	
	color: #fff;
}

#nickname input {
	width: 100%;
	align-items: center;
	background: none;
	border: none;
	border-bottom: 1px solid #888;
	outline: none;
	align-content: center;
	color: white;
	
	font-family: minecraftia;
	font-size: 24px;
}

/* Join information */

#joininfo {
	position: absolute;
	top: 42%;
	
	width: 99%;
	
	cursor: default;
	
	text-align: center;
	color: #fff;
	font-size: 24px;
}

/* Chatbox */

#chatbox {
	position: absolute;
	left: 20px;
	bottom: 55px;
	
	width: 600px;
	height: 195px;
	overflow: hidden;
	
	padding-left: 10px;
	padding-right: 10px;
	
	cursor: default;
	
	background: rgba( 0, 0, 0, 0.6 );
	color: white;
}

#chatbox_text {
	position: absolute;
	bottom: 8px;
	
	text-shadow: none;
}

#chatbox_entry {
	position: absolute;
	left: 20px;
	bottom: 18px;
	
	width: 610px;
	height: 30px;
	
	padding-left: 10px;
	padding-bottom: 2px;
	
	background: rgba( 0, 0, 0, 0.6 );
	border: none;
	outline: none;
	
	color: white;
	font-family: minecraftia;
	font-size: 16px;
}
.gui{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: minecraftia;
    font-size: 16px;
    justify-content: normal; 

}
.mainmenu{
    display: flex;
    flex-direction: column;
}
.button{
    color: #cccccc;
    margin: 5px;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-left: 122px;
    padding-right: 122px;
    background-size: 20px 200px;
    border: none;
    border-radius: 0px;
    background: url( '../media/button0.png' );
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px;
    cursor: auto;
    font-family: minecraftia;
    font-size: 15px;
    min-width: 400px;
    max-width: 400px;
    min-height: 40px;
    max-height: 40px;
}
.button:hover {
      background: url( '../media/button1.png' );
      background-repeat: no-repeat;
      background-size: cover;
      
}
.button:disabled {
      background: url( '../media/button-1.png' );
      background-repeat: no-repeat;
      background-size: cover;
}
.logo{
    background: url( '../media/logo.png' );
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
    position: relative;
    margin: auto;
    border-radius: 0px;
    width: 256px;
    height: 128px;

}
.separar{padding-bottom: 5%;}
.separar1{padding-bottom: 22%;}
.separar2{padding-bottom: 40%;}
.version{
    font-family: minecraftia;
    font-size: 12px;
    color: #ffffff;
   
    
    
}
