/* Fix user-agent */ * { box-sizing: border-box; } html { font-weight: 300; -webkit-font-smoothing: antialiased; } html, input { font-family: "Roboto", "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: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%)*/ background: #C33764; /* fallback for old browsers */ background: -webkit-linear-gradient(to right, #1D2671, #C33764); /* Chrome 10-25, Safari 5.1-6 */ background: linear-gradient(to right, #1D2671, #C33764); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB); background-size: 400% 400%; -webkit-animation: Gradient 15s ease infinite; -moz-animation: Gradient 15s ease infinite; animation: Gradient 15s ease infinite; } @-webkit-keyframes Gradient { 0% { background-position: 0% 50% } 50% { background-position: 100% 50% } 100% { background-position: 0% 50% } } @-moz-keyframes Gradient { 0% { background-position: 0% 50% } 50% { background-position: 100% 50% } 100% { background-position: 0% 50% } } @keyframes Gradient { 0% { background-position: 0% 50% } 50% { background-position: 100% 50% } 100% { background-position: 0% 50% } } .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 { float: left; 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%; } .cloud { width: 80px; height: 80px; margin-top: -200px; margin-bottom: 100px; }