| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 | 
							- /* Fix user-agent */
 
- * {
 
-   box-sizing: border-box;
 
- }
 
- html {
 
-   font-weight: 300;
 
-   -webkit-font-smoothing: antialiased;
 
- }
 
- html, input {
 
-   font-family:
 
-     "HelveticaNeue-Light",
 
-     "Helvetica Neue Light",
 
-     "Helvetica Neue",
 
-     Helvetica,
 
-     Arial,
 
-     "Lucida Grande",
 
-     sans-serif;
 
- }
 
- html, body {
 
-   height: 100%;
 
-   margin: 0;
 
-   padding: 0;
 
- }
 
- ul {
 
-   list-style: none;
 
-   word-wrap: break-word;
 
- }
 
- /* Pages */
 
- .pages {
 
-   height: 100%;
 
-   margin: 0;
 
-   padding: 0;
 
-   width: 100%;
 
- }
 
- .page {
 
-   height: 100%;
 
-   position: absolute;
 
-   width: 100%;
 
- }
 
- /* Login Page */
 
- .login.page {
 
-   background-color: #000;
 
- }
 
- .login.page .form {
 
-   height: 100px;
 
-   margin-top: -100px;
 
-   position: absolute;
 
-   text-align: center;
 
-   top: 50%;
 
-   width: 100%;
 
- }
 
- .login.page .form .usernameInput {
 
-   background-color: transparent;
 
-   border: none;
 
-   border-bottom: 2px solid #fff;
 
-   outline: none;
 
-   padding-bottom: 15px;
 
-   text-align: center;
 
-   width: 400px;
 
- }
 
- .login.page .title {
 
-   font-size: 200%;
 
- }
 
- .login.page .usernameInput {
 
-   font-size: 200%;
 
-   letter-spacing: 3px;
 
- }
 
- .login.page .title, .login.page .usernameInput {
 
-   color: #fff;
 
-   font-weight: 100;
 
- }
 
- /* Chat page */
 
- .chat.page {
 
-   display: none;
 
- }
 
- /* Font */
 
- .messages {
 
-   font-size: 150%;
 
- }
 
- .inputMessage {
 
-   font-size: 100%;
 
- }
 
- .log {
 
-   color: gray;
 
-   font-size: 70%;
 
-   margin: 5px;
 
-   text-align: center;
 
- }
 
- /* Messages */
 
- .chatArea {
 
-   height: 100%;
 
-   padding-bottom: 60px;
 
- }
 
- .messages {
 
-   height: 100%;
 
-   margin: 0;
 
-   overflow-y: scroll;
 
-   padding: 10px 20px 10px 20px;
 
- }
 
- .message.typing .messageBody {
 
-   color: gray;
 
- }
 
- .username {
 
-   font-weight: 700;
 
-   overflow: hidden;
 
-   padding-right: 15px;
 
-   text-align: right;
 
- }
 
- /* Input */
 
- .inputMessage {
 
-   border: 10px solid #000;
 
-   bottom: 0;
 
-   height: 60px;
 
-   left: 0;
 
-   outline: none;
 
-   padding-left: 10px;
 
-   position: absolute;
 
-   right: 0;
 
-   width: 100%;
 
- }
 
 
  |