Created
December 13, 2018 13:06
-
-
Save lazorfuzz/e7065aefea398da3fc79595a22dd14ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .container { | |
| width: 500px; | |
| max-width: 100%; | |
| display: flex; | |
| flex-flow: column; | |
| margin: 10px auto; | |
| border-radius: 5px; | |
| padding: 0; | |
| background-color: #383838; | |
| border: 1px solid #333; | |
| box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12); | |
| } | |
| .chatHeader { | |
| padding-top: 3px; | |
| box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3); | |
| z-index: 3; | |
| } | |
| .info { | |
| color: #888; | |
| font-size: 16px; | |
| } | |
| hr { | |
| height: 1px; | |
| margin: 0; | |
| border: none; | |
| flex-shrink: 0; | |
| background-color: rgba(0, 0, 0, 0.3); | |
| } | |
| .bottomBar { | |
| align-self: flex-end; | |
| z-index: 2; | |
| display: flex; | |
| flex-flow: row; | |
| width: 100%; | |
| align-items: center; | |
| align-content: center; | |
| justify-content: center; | |
| background-color: #383838; | |
| padding: 10px 0; | |
| border-bottom-left-radius: 5px; | |
| border-bottom-right-radius: 5px; | |
| box-shadow: 0 -5px 2px -2px rgba(0, 0, 0, 0.3); | |
| } | |
| .title { | |
| text-align: center; | |
| font-size: 24px; | |
| color: #adadad; | |
| font-weight: 100; | |
| } | |
| .chatBox { | |
| overflow-x: hidden; | |
| height: 200px; | |
| max-height: 70%; | |
| font-size: 20px; | |
| padding: 10px 10px 20px 30px; | |
| overflow-y: scroll; | |
| background-color: #595959; | |
| } | |
| .chatInput { | |
| width: 80%; | |
| background: #595959; | |
| margin: 10px; | |
| font-size: 24px; | |
| color: white; | |
| border: 1px solid #333; | |
| font-weight: 100; | |
| padding: 10px; | |
| border-radius: 5px; | |
| } | |
| .chat { | |
| display: flex; | |
| margin-top: 20px; | |
| word-wrap: break-word; | |
| } | |
| .msg { | |
| color: white; | |
| } | |
| .chat :first{ | |
| margin-top: -30px; | |
| } | |
| .name { | |
| margin-right: 20px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment