diff style-rlg.css @ 45:1bbd0e76ba92

RLG-Web: put the game options into a table. Create a nice table of options when the player logs in.
author John "Elwin" Edwards <elwin@sdf.org>
date Sat, 09 Jun 2012 15:22:56 -0700
parents 82be54381964
children 33bdb3d466e3
line wrap: on
line diff
--- a/style-rlg.css	Sat Jun 09 14:13:07 2012 -0700
+++ b/style-rlg.css	Sat Jun 09 15:22:56 2012 -0700
@@ -6,6 +6,34 @@
 h1 {
 	text-align: center;
 }
+
 div.modal {
 	clear: both;
 }
+
+div#opttable {
+	display: table;
+	margin: 1em auto;
+	border: 2px solid #101040;
+}
+
+div#opttable > div {
+	display: table-row;
+}
+
+div#opttable > div > div {
+	display: table-cell;
+	padding: 0.4em 2em;
+}
+
+div#opttable > div > div:first-child {
+	font-weight: bold;
+	text-align: center;
+}
+
+span.ibutton {
+	background-color: #D0D0D0;
+	border: 2px solid #101040;
+	border-radius: 0.3em;
+	padding: 0.2em;
+}