Skip to content

Commit

Permalink
deeltoets 1 toevoegen
Browse files Browse the repository at this point in the history
  • Loading branch information
KoopReynders committed Sep 16, 2013
1 parent b547590 commit 48d0a8b
Show file tree
Hide file tree
Showing 5 changed files with 533 additions and 2 deletions.
64 changes: 64 additions & 0 deletions Deeltoets 1/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
body{
background-color: #efefef;
font-family: Helvetica, Verdana, sans-serif;
font-weight: normal;
font-size: 120%;
line-height: 140%;

}
body > header{
background-color: rgba(100, 200, 100, 0.4);
text-align: center;
}
body > header h1{
font-size: 100%
}
body > header h1 span{
font-size: 80%
}

/* Menu */
nav{
background:#fff;
margin-top: -1em;
font-size: 80%
}
nav ol{
margin: 0;
text-align: center;
}
nav ol li{
display: inline-block;
margin: 0 1em;
}
nav ol li a:hover{
background-color: rgba(100, 200, 100, 0.4);
}

/* Table */
table{
width: 80%;
background-color: rgba(100, 200, 100, 0.2);
margin-bottom: 1em;
}
tr{
text-align: center;
}
tr:nth-child(even){
background-color: rgba(100, 200, 100, 0.2);
}
.winner:after{
content: "*";
color: red;
font-size: 180%;
}


/* Test data*/
pre, pre header{
display:block;
margin-top: 20em;
background-color: rgba(0, 0, 0, 0.1);
font-size: 80%;
line-height: 100%;
}
248 changes: 248 additions & 0 deletions Deeltoets 1/game.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,248 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Threesome Ultimate Frisbee - Game</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>

<header>
<h1><span>Tournament: </span>Amsterdam Ultimate Autumn</h1>
</header>
<nav>
<ol>
<li><a href="schedule.html">Schedule page</a></li>
<li><a href="game.html">Game page</a></li>
<li><a href="ranking.html">Ranking page</a></li>
</ol>
</nav>

<article>
<header>
<h1>Pool A - Score: Boomsquad vs. Burning Snow</h1>
</header>
<table>
<tr>
<th>Team</th>
<th>Result</th>
<th>Team</th>
</tr>

<tr>
<td class="winner">Boomsquad</td>
<td>15 - 8</td>
<td>Burning Snow</td>
</tr>
</table>


<table>
<tr>
<th>Score</th>
<th>Team</th>
<th>Points</th>
<th>Team</th>
</tr>


<tr>
<td>1</td>
<td>Boomsquad</td>
<td>1 - 0</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>2</td>
<td>Boomsquad</td>
<td>2 - 0</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>3</td>
<td>Boomsquad</td>
<td>2 - 1</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>4</td>
<td>Boomsquad</td>
<td>2 - 2</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>5</td>
<td>Boomsquad</td>
<td>3 - 2</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>6</td>
<td>Boomsquad</td>
<td>4 - 2</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>7</td>
<td>Boomsquad</td>
<td>5 - 2</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>8</td>
<td>Boomsquad</td>
<td>5 - 3</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>9</td>
<td>Boomsquad</td>
<td>6 - 3</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>10</td>
<td>Boomsquad</td>
<td>7 - 3</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>11</td>
<td>Boomsquad</td>
<td>7 - 4</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>12</td>
<td>Boomsquad</td>
<td>8 - 4</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>13</td>
<td>Boomsquad</td>
<td>8 - 5</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>14</td>
<td>Boomsquad</td>
<td>8 - 6</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>15</td>
<td>Boomsquad</td>
<td>9 - 6</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>16</td>
<td>Boomsquad</td>
<td>9 - 7</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>17</td>
<td>Boomsquad</td>
<td>10 - 7</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>18</td>
<td>Boomsquad</td>
<td>11 - 7</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>19</td>
<td>Boomsquad</td>
<td>12 - 7</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>20</td>
<td>Boomsquad</td>
<td>13 - 7</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>21</td>
<td>Boomsquad</td>
<td>14 - 7</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>22</td>
<td>Boomsquad</td>
<td>14 - 8</td>
<td>Burning Snow</td>
</tr>

<tr>
<td>23</td>
<td>Boomsquad</td>
<td>15 - 8</td>
<td>Burning Snow</td>
</tr>


</table>
</article>




<pre>
<header>Json testdata</header>
var game = [
{ score: "1", team1: "Boomsquad", team1Score: "1", team2: "Burning Snow", team2Score: "0"},
{ score: "2", team1: "Boomsquad", team1Score: "2", team2: "Burning Snow", team2Score: "0"},
{ score: "3", team1: "Boomsquad", team1Score: "2", team2: "Burning Snow", team2Score: "1"},
{ score: "4", team1: "Boomsquad", team1Score: "2", team2: "Burning Snow", team2Score: "2"},
{ score: "5", team1: "Boomsquad", team1Score: "3", team2: "Burning Snow", team2Score: "2"},
{ score: "6", team1: "Boomsquad", team1Score: "4", team2: "Burning Snow", team2Score: "2"},
{ score: "7", team1: "Boomsquad", team1Score: "5", team2: "Burning Snow", team2Score: "2"},
{ score: "8", team1: "Boomsquad", team1Score: "5", team2: "Burning Snow", team2Score: "3"},
{ score: "9", team1: "Boomsquad", team1Score: "6", team2: "Burning Snow", team2Score: "3"},
{ score: "10", team1: "Boomsquad", team1Score: "7", team2: "Burning Snow", team2Score: "3"},
{ score: "11", team1: "Boomsquad", team1Score: "7", team2: "Burning Snow", team2Score: "4"},
{ score: "12", team1: "Boomsquad", team1Score: "8", team2: "Burning Snow", team2Score: "4"},
{ score: "13", team1: "Boomsquad", team1Score: "8", team2: "Burning Snow", team2Score: "5"},
{ score: "14", team1: "Boomsquad", team1Score: "8", team2: "Burning Snow", team2Score: "6"},
{ score: "15", team1: "Boomsquad", team1Score: "9", team2: "Burning Snow", team2Score: "6"},
{ score: "16", team1: "Boomsquad", team1Score: "9", team2: "Burning Snow", team2Score: "7"},
{ score: "17", team1: "Boomsquad", team1Score: "10", team2: "Burning Snow", team2Score: "7"},
{ score: "18", team1: "Boomsquad", team1Score: "11", team2: "Burning Snow", team2Score: "7"},
{ score: "19", team1: "Boomsquad", team1Score: "12", team2: "Burning Snow", team2Score: "7"},
{ score: "20", team1: "Boomsquad", team1Score: "13", team2: "Burning Snow", team2Score: "7"},
{ score: "21", team1: "Boomsquad", team1Score: "14", team2: "Burning Snow", team2Score: "7"},
{ score: "22", team1: "Boomsquad", team1Score: "14", team2: "Burning Snow", team2Score: "8"},
{ score: "23", team1: "Boomsquad", team1Score: "15", team2: "Burning Snow", team2Score: "8"}
];
</pre>


</body>
</html>
Loading

0 comments on commit 48d0a8b

Please sign in to comment.