168 lines
2.4 KiB
CSS
168 lines
2.4 KiB
CSS
* {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
color: #333333;
|
|
background: #efefef;
|
|
font-family: 'Bitstream Vera Sans', sans-serif;
|
|
font-size: 9pt;
|
|
|
|
height: 100%;
|
|
}
|
|
|
|
#container {
|
|
background: white;
|
|
min-height: 100%;
|
|
border-left: 1px solid #666666;
|
|
border-right: 1px solid #666666;
|
|
width: 85%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
#messages {
|
|
background: white;
|
|
padding: 5px;
|
|
margin: 5px;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
#messages .messagelist .error {
|
|
list-style-type: none;
|
|
color: red;
|
|
}
|
|
|
|
#mainpage {
|
|
padding: 5px;
|
|
|
|
overflow: auto;
|
|
|
|
padding-bottom: 10px;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
#mainpage #title {
|
|
text-align: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
#mainpage #title h1 {
|
|
font-family: 'Cardo', 'Times New Roman', serif;
|
|
font-size: 32pt;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.gameitem {
|
|
margin: 10px;
|
|
border: 1px solid #999999;
|
|
}
|
|
|
|
.gameitem .gameinfo {
|
|
padding: 0px;
|
|
display: table;
|
|
width: 100%;
|
|
}
|
|
|
|
.gameitem .gameplayers {
|
|
padding: 5px;
|
|
border: 1px solid #e0e0e0;
|
|
display: table;
|
|
width: 100%;
|
|
}
|
|
|
|
.gameitem .gameinfo li {
|
|
padding: 5px;
|
|
display: table-cell;
|
|
border: 1px solid #e0e0e0;
|
|
}
|
|
|
|
.gameitem .gameplayers li {
|
|
display: inline;
|
|
}
|
|
|
|
.gameitem .gameplayers li:before {
|
|
content: ", ";
|
|
}
|
|
.gameitem .gameplayers li:first-child:before {
|
|
content: "Players: ";
|
|
}
|
|
|
|
.gameitem .gameinfo li.gameid {
|
|
width: 45%;
|
|
background: #e0e0e0;
|
|
color: #333333;
|
|
}
|
|
|
|
.gameitem .gameinfo li.gamestatus {
|
|
width: 25%;
|
|
}
|
|
|
|
.gameitem .gameinfo li.gamecode {
|
|
width: 30%;
|
|
}
|
|
|
|
.gameitem a {
|
|
color: #333333;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.gameitem .progressblock {
|
|
width: 100%;
|
|
margin: 10px;
|
|
}
|
|
|
|
.progressbar .yui-pb {
|
|
height: 10px;
|
|
}
|
|
|
|
.progressbar .yui-pb-bar {
|
|
background-color: #811610;
|
|
}
|
|
|
|
.storyblock {
|
|
border: 1px solid #e0e0e0;
|
|
margin: 0px 10px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.gamestory {
|
|
font-family: 'Cardo', 'Times New Roman', serif;
|
|
font-size: 11pt;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
.gamestory p {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
#footer {
|
|
position: relative;
|
|
margin-top: -50px;
|
|
height: 50px;
|
|
clear: both;
|
|
|
|
text-align: center;
|
|
|
|
background: #333333;
|
|
color: #999999;
|
|
}
|
|
|
|
#footer p {
|
|
padding-top: 10px;
|
|
font-size: 8pt;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
/*
|
|
vi:tabstop=4:expandtab:autoindent
|
|
*/
|