summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.css26
-rw-r--r--index.php40
2 files changed, 52 insertions, 14 deletions
diff --git a/index.css b/index.css
new file mode 100644
index 0000000..782c528
--- /dev/null
+++ b/index.css
@@ -0,0 +1,26 @@
+table th {
+ text-align: left;
+}
+table tbody {
+ background-color: lightblue;
+}
+table tr:nth-child(even) {
+ background-color: white;
+}
+
+table.users {
+ margin-bottom: 20px;
+}
+ table.users td {
+ width: 110px;
+ }
+
+table.rankings {
+
+}
+ table.rankings td {
+ width: 110px;
+ }
+ table.rankings tr td:first-child {
+ font-weight: bold;
+ }
diff --git a/index.php b/index.php
index f760660..70c4dc2 100644
--- a/index.php
+++ b/index.php
@@ -1,18 +1,21 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
+ <link href="index.css" rel="stylesheet" type="text/css"/>
<title>London/Jersey Starcraft</title>
</head>
<body>
<h1>Starcraft</h1>
- <p>Everyone play each other, best of 3 to get rankings ready for a tournament</p>
- <p>We'll try and stream the games and keep the saved for all to view</p>
- <p>Gentleman's rules, so don't cheat, because that's no fun</p>
- <table>
+ <p>Everyone play each other in a best of 3 series in order to get rankings ready for a tournament.</p>
+ <p>We'll try and stream the games and keep them saved for all to view.</p>
+ <p>Gentleman's rules, so don't cheat, because that's no fun.</p>
+ <p>Please sort our any issues or disconnects out yourselves ;)</p>
+ <table class="users">
<thead>
<tr>
<th>Players</th>
<th>Played</th>
- <th>Win</th>
+ <th>Won</th>
<th>Lost</th>
</tr>
</thead>
@@ -26,9 +29,11 @@
<tr><td>Jeto</td><td>0</td><td>0</td><td>0</td></tr>
</tbody>
</table>
- <table>
+ <h2>Rankings</h2>
+ <table class="rankings">
<thead>
<tr>
+ <th></th>
<th>FBeans</th>
<th>wjoe</th>
<th>Curahee</th>
@@ -39,15 +44,22 @@
</tr>
</thead>
<tbody>
- <tr><td>FBeans</td><td>X</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
- <tr><td>wjoe</td><td>0</td><td>X</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
- <tr><td>Curahee</td><td>0</td><td>0</td><td>X</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
- <tr><td>jagw</td><td>0</td><td>0</td><td>0</td><td>X</td><td>0</td><td>0</td><td>0</td></tr>
- <tr><td>l_bratch</td><td>0</td><td>0</td><td>0</td><td>0</td><td>X</td><td>0</td><td>0</td></tr>
- <tr><td>messosade</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td><td>X</td><td>0</td></tr>
- <tr><td>Jeto</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td><td>X</td></tr>
+ <tr><td>FBeans</td><td>X</td><td>0-0</td><td>0-0</td><td>0-0</td><td>0-0</td><td>0-0</td><td>0-0</td></tr>
+ <tr><td>wjoe</td><td>0-0</td><td>X</td><td>0-0</td><td>0-0</td><td>0-0</td><td>0-0</td><td>0-0</td></tr>
+ <tr><td>Curahee</td><td>0-0</td><td>0-0</td><td>X</td><td>0-0</td><td>0-0</td><td>0-0</td><td>0-0</td></tr>
+ <tr><td>jagw</td><td>0-0</td><td>0-0</td><td>0-0</td><td>X</td><td>0-0</td><td>0-0</td><td>0-0</td></tr>
+ <tr><td>l_bratch</td><td>0-0</td><td>0-0</td><td>0-0</td><td>0-0</td><td>X</td><td>0-0</td><td>0-0</td></tr>
+ <tr><td>messosade</td><td>0-0</td><td>0-0</td><td>0-0</td><td>0-0</td><td>0-0</td><td>X</td><td>0-0</td></tr>
+ <tr><td>Jeto</td><td>0-0</td><td>0-0</td><td>0-0</td><td>0-0</td><td>0-0</td><td>0-0</td><td>X</td></tr>
</tbody>
</table>
-
+ <h2>Maps</h2>
+ <p>For now we'll play on the current sc2 season maps in the following order:</p>
+ <ol>
+ <li>Avalanche</li>
+ <li>Old Country</li>
+ <li>Resupply Tanker</li>
+ </ol>
+ <p>Issues? come to #sc2 on the blatech irc network :D</p>
</body>
</html>