diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/game.html b/gemp-lotr/gemp-lotr-web/src/main/webapp/game.html
index a0fe80fba..b44f67678 100644
--- a/gemp-lotr/gemp-lotr-web/src/main/webapp/game.html
+++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/game.html
@@ -93,6 +93,11 @@
float: right;
font-size: 70%;
}
+
+ .ui-button-text-only .ui-button-text {
+ font-size: 70%;
+ padding: .2em .5em;
+ }
diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/index.html b/gemp-lotr/gemp-lotr-web/src/main/webapp/index.html
index 344e50b68..ebe96a0c7 100644
--- a/gemp-lotr/gemp-lotr-web/src/main/webapp/index.html
+++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/index.html
@@ -71,7 +71,9 @@
});
} else {
var participantId = getUrlParam("participantId");
- $("#user").append("You are logged in as " + participantId + ", create a table or join one where other player is waiting.");
+ $("#user").append("You are logged in as " + participantId + ".
");
+ $("#user").append("You may edit your deck.
");
+ $("#user").append("Create a table or join one where other player is waiting to start a game.");
var chat = new ChatBoxUI("default", $("#chat"), "/gemp-lotr/server");
chat.setBounds(2, 2, 780 - 4, 200 - 4);
@@ -83,8 +85,8 @@