MegaGlest/source/masterserver/style/screen.css
Tom Reynolds ca2ded738f * Add preliminary server side support for linking to gameservers on the web
* Fix typo on masterserver HTML output refresh header
* Better style for masterserver HTML output
2012-08-10 01:52:16 +00:00

51 lines
756 B
CSS

/*
==============================================================
Copyright: (C) 2012 Mark Vejvoda, Titus Tscharntke and Tom Reynolds
The Megaglest Team, under GNU GPL v3.0
==============================================================
*/
body {
font-family: sans-serif;
}
h1 {
text-align: center;
}
table {
width: 100%;
border: 2px solid black;
}
th, td {
border: 1px solid black;
padding: 5px;
text-align: center;
text-transform: capitalize;
}
th {
background-color: LightGray;
}
.waiting_for_players {
background-color: LightGreen;
}
.game_full_pending_start {
background-color: Yellow;
}
.in_progress {
background-color: Tomato;
}
.finished {
background-color: Gray;
}
.unknown {
background-color: Red;
}