Added Player, Server, Terminal, and engine javascript files. Implemented basic terminal UI. Implemented main menu tabs (only added Character and Terminal for now

This commit is contained in:
Daniel Xie
2016-10-17 03:24:39 -05:00
parent d7a00af2b6
commit 7c03b274d7
8 changed files with 371 additions and 227 deletions
+32
View File
@@ -0,0 +1,32 @@
#terminal-container {
position: fixed;
margin-left: 10%;
width: 99%;
}
#terminal {
padding-top: 10px;
padding-left: 10px;
height: auto;
font-size: 16px;
}
#terminal-input {
background-color: black;
color: #66ff33;
transition: height 1s;
}
.terminal-input {
display: table-cell;
padding: 0px !important;
margin: 0px !important;
border: 0px;
background-color: black;
font-size: 16px;
outline: none;
color: #66ff33;
}