Commit 218cca4a authored by Sergey Lyubka's avatar Sergey Lyubka

added todos into settings pane. changed explanation text a bit.

parent 0f42c5ba
...@@ -21,8 +21,7 @@ ...@@ -21,8 +21,7 @@
This application was written for educational purposes demonstrating This application was written for educational purposes demonstrating
how web interface could be decoupled from the business logic. Not a how web interface could be decoupled from the business logic. Not a
single line of HTML is generated by the server, instead, server single line of HTML is generated by the server, instead, server
communicates data in JSON format using AJAX calls. Such chat server gives data to the client in JSON format.
could be used in your application as a collaboration tool.
</div> </div>
</div> </div>
<div> <div>
...@@ -53,8 +52,12 @@ ...@@ -53,8 +52,12 @@
<div id="settings" class="hidden main"> <div id="settings" class="hidden main">
<div> <div>
<span class="top-rounded">Settings</span> <span class="top-rounded chat-title">Settings</span>
<div class="bottom-rounded"> <div class="bottom-rounded chat-content">
<table>
<tr><td>Max messages to display:</td><td>blah blah</td></tr>
<tr><td>Text color:</td><td>blah blah</td></tr>
</table>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -13,6 +13,10 @@ body { ...@@ -13,6 +13,10 @@ body {
float: left; float: left;
} }
td {
text-align: left;
}
#motd { #motd {
margin-left: 170px; margin-left: 170px;
} }
...@@ -85,7 +89,7 @@ body { ...@@ -85,7 +89,7 @@ body {
.main { .main {
padding: 0.5em; padding: 0.5em;
background: #e0ecff; background: #f0fcff;
} }
#menu { #menu {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment