diff --git a/server/src/main/resources/static/client.html b/server/src/main/resources/static/client.html
index 2e59acb..52e303b 100644
--- a/server/src/main/resources/static/client.html
+++ b/server/src/main/resources/static/client.html
@@ -9,12 +9,12 @@
-
Choose your username
+
What is your name?
diff --git a/server/src/main/resources/static/layout.css b/server/src/main/resources/static/layout.css
index 51760ef..1da9549 100644
--- a/server/src/main/resources/static/layout.css
+++ b/server/src/main/resources/static/layout.css
@@ -63,22 +63,6 @@ body {
line-height: 50px;
}
-.header {
- font-size: 1.4em;
- color: #eee;
- background: #696f77;
- text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
- padding: 0 0.5em;
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #696f77),
- color-stop(100%, #28343b));
- background: -webkit-linear-gradient(top, #696f77 0%, #28343b 100%);
- background: -ms-linear-gradient(top, #696f77 0%, #28343b 100%);
-}
-
-.body {
- background: #ddd
-}
-
.chat.column {
border-left: 1px solid black;
}
diff --git a/server/src/main/resources/static/style.css b/server/src/main/resources/static/style.css
index 3938d9b..7418b9e 100644
--- a/server/src/main/resources/static/style.css
+++ b/server/src/main/resources/static/style.css
@@ -10,7 +10,7 @@
}
body {
- font-family: "Lucida Sans Unicode", sans-serif;
+ font-family: cursive;
}
button {
@@ -21,6 +21,20 @@ button:hover {
cursor: pointer;
}
+/* Main area */
+
+.header {
+ font-size: 1.4em;
+ color: white;
+ background: steelblue;
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
+ padding: 0 0.5em;
+}
+
+.body {
+ background: linen
+}
+
/* Chat pane */
.message-item {
@@ -77,6 +91,7 @@ button:hover {
/* Waiting pane */
#waitingDiv h1 {
+ color: steelblue;
font-size: 28px;
text-align: center
}