mirror of
https://github.com/glest/glest-source.git
synced 2025-02-25 20:22:31 +01:00
* Fix typo on masterserver HTML output refresh header * Better style for masterserver HTML output
51 lines
756 B
CSS
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;
|
|
}
|