Last active
April 5, 2018 10:58
-
-
Save omerio/c144339d689cb6bddc5bf8507eb5ed1e 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Chatroom</title> | |
| <!-- Step 2 Start --> | |
| <style> | |
| body { | |
| padding: 100px; | |
| } | |
| body, textarea, button { | |
| font: 15px arial, sans-serif; | |
| } | |
| #room { | |
| border: 3px double #eee; | |
| line-height: 1.5; | |
| margin: 40px 0; | |
| padding: 40px; | |
| } | |
| #room > div { | |
| background: #eee; | |
| border-radius: 4px; | |
| color: #333; | |
| margin: 10px; | |
| padding: 10px; | |
| } | |
| #message { | |
| background: #eee; | |
| border: 2px solid #aaa; | |
| float: left; | |
| margin-right: 20px; | |
| min-height: 100px; | |
| padding: 10px; | |
| width: calc(80% - 20px); | |
| } | |
| #send { | |
| background: #415CFF; | |
| color: white; | |
| float: left; | |
| font-weight: bold; | |
| padding: 10px; | |
| width: 20%; | |
| } | |
| </style> | |
| <script data-require="[email protected]" data-semver="2.2.4" src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> | |
| <!-- Step 2 End --> | |
| </head> | |
| <body> | |
| <div id="room"></div> | |
| <textarea id="message"></textarea> | |
| <button id="send">Send</button> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment