game selection now has a nice table with players, access time etc. Users can now set an optional name for the game they create. This name gets displayed in game selection table.

This commit is contained in:
phear 2005-10-09 21:29:29 +00:00
parent e9d3a9aaaa
commit 2066a179cf
8 changed files with 167 additions and 155 deletions

View file

@ -10,6 +10,20 @@ body {
font-family: verdana, lucida, arial, helvetica, sans-serif;
}
table {
margin:auto;
border-collapse:collapse;
}
tr{
}
td {
border: 1px solid #5e5e5e;
padding: 5px;
text-align: center;
}
#main {
background: none;
width: 600px;
@ -30,10 +44,12 @@ body {
#main h1 {
font-size: 2em;
}
#main h2 {
font-size: 1.5em;
margin-top:50px;
}
#main h3 {
@ -212,6 +228,12 @@ body {
/* ----------------------=-=-=- Forms -=-=-=--------------------- */
/* pretty forms and buttons */
input {
/* top right bottom left */
border: 0px;
}
input#text {
border: 1px solid #333333;
color: #333333;
@ -247,11 +269,7 @@ input#submit:hover {
}
input {
padding: 0px;
border: 0px;
margin: 0px;
}
/*input#goban:hover {
padding: 0px;
@ -268,96 +286,3 @@ input {
#words form p {
text-align: center;
}
/* ------------=-=-=- language selection -=-=-=------------- */
#lang {
position: fixed;
float: right;
right: 5px;
top: 5px;
text-align: right;
}
#lang a {
color: #acacac;
font-family: verdana, lucida, arial, helvetica, sans-serif;
font-size: smaller;
}
#lang a:hover {
color: #707070;
}
/* ------------=-=-=- documentation -=-=-=------------- */
#doc ol,ul li {
text-align: left;
margin-left: 20px;
}
#doc dl dt {
text-align: left;
margin-left: 20px;
font-style: italic;
}
#doc h1 {
padding-top: 25px;
}
#doc h2 {
padding-top: 20px;
}
#doc h3 {
padding-top: 10px;
}
/* ------------=-=-=- special things -=-=-=------------- */
#partition_info p {
margin-left: 10%;
margin-right: 10%;
font-family: monospace
}
#words a.popup {
line-height: inherit;
color: inherit;
text-decoration: inherit;
font-weight: inherit;
font-size: inherit;
}
#words a.popup:hover {
text-decoration: inherit;
}
#words a.popup span {
display: none;
position: fixed;
bottom: 10px;
left: 9%;
width: 80%;
background: #f0f0f0;
padding: 10px;
border-color: #e0e0e0;
border-width: 2px;
border-style: solid;
margin: 0;
}
#words a.popup:hover span {
display: inline;
}
#words a.popup span p {
text-align: left;
}
#words a.popup span h3 {
color: #909090;
margin-top: 0px;
}