summaryrefslogtreecommitdiffstats
path: root/index.html
blob: 17efe9004c56abbb539f4d9a016c51943848a5bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!doctype html>  
<html lang="fr">  
<head>  
  <meta charset="utf-8">  
  <title>Technicolor's Foosball Tournament</title>  
  <link rel="stylesheet" type="text/css" href="style.css">  
  <link href='http://fonts.googleapis.com/css?family=Nunito:300,700' rel='stylesheet' type='text/css'>
</head>  
<body>
    <div id="content">
        <header>
        <h1>Technicolor's Series of Foosball</h1>
        <p>The coolest Bay Area event</p>
        </header>
        <menu>
            <ul>
                <li><a href="teams.html">Teams</a></li>
                <li><a href="schedule.html">Schedule</a></li>
                <li><a href="rules.html">Rules</a></li>
            </ul>
        </menu>

        <!-- list of games -->
	<article id="bracket">

  <h1>Bracket</h1>

  <!-- group stage -->
	<div id="listGroups">
	<div id="groupA" class="group shadow">
	    <h2>GROUP A</h2>
	    <p>Gaijin vs Olympic Croquet</p>
	    <p>{Pedro, ?} vs Gaijin</p>
	    <p>Olympic Croquet vs {Pedro, ?}</p>
	</div>

	<div id="groupB" class="group shadow">
	    <h2>GROUP B</h2>
	    <p>Nighthawks vs Cake and Death</p>
	</div>

	<div id="groupC" class="group shadow">
	    <h2>GROUP C</h2>
	    <p>Red and Ruskie vs {Sandy, ?}</p>
	    <p>{Vijay, Zhen} vs Red and Ruskie</p>
	    <p>{Sandy, ?} vs {Vijay, Zhen}</p>
	</div>            

	<div id="groupD" class="group shadow">
	    <h2>GROUP D</h2>
	    <p>{Nadia, Salman} vs {Nina, Smriti}</p>
	</div>
	</div>

	<br class="spacer"/>

	<div id="rankingA" class="ranking shadow">
	    <h2>Ranking group A</h2>
	    <p>1 ...</p>
	    <p>2 ...</p>
	    <p>3 ...</p>
	</div>

	<div id="rankingB" class="ranking shadow">
	    <h2>Ranking group B</h2>
	    <p>1 ...</p>
	    <p>2 ...</p>
	</div>

	<div id="rankingC" class="ranking shadow">
	    <h2>Ranking group C</h2>
	    <p>1 ...</p>
	    <p>2 ...</p>
	    <p>3 ...</p>
	</div>

	<div id="rankingD" class="ranking shadow">
	    <h2>Ranking group D</h2>
	    <p>1 ...</p>
	    <p>2 ...</p>
	</div>

  <div class="spacer hline"></div>

	<!-- elimiatory games -->
	<div id="Q1" class="quarter shadow">
	    <h2>Quarter-final 1</h2>
        <p>1<sup>st</sup> of group A vs 2<sup>nd</sup> of group B</p>
	</div>

	<div id="Q2" class="quarter shadow">
	    <h2>Quarter-final 2</h2>
        <p>1<sup>st</sup> of group B vs 2<sup>nd</sup> of group A</p>
	</div>

	<div id="Q3" class="quarter shadow">
	    <h2>Quarter-final 3</h2>
        <p>1<sup>st</sup> of group C vs 2<sup>nd</sup> of group D</p>
	</div>

	<div id="Q4" class="quarter shadow">
	    <h2>Quarter-final 4</h2>
        <p>1<sup>st</sup> of group D vs 2<sup>nd</sup> of group C</p>
	</div>

    <br class="spacer"/>

	<div id="S1" class="semi shadow">
	    <h2>Semi-final 1</h2>
	    <p>Winner Q1 vs Winner Q3</p>
	</div>

	<div id="S2" class="semi shadow">
	    <h2>Semi-final 2</h2>
	    <p>Winner Q2 vs Winner Q4</p>
	</div>
	
	<br class="spacer"/>

	<div id="F" class="shadow">
	    <h2>FINAL</h2>
	    <p>? vs ?</p>
	</div>

    <div id="beaver" class="center">
        <img src="images/beaver.jpg" alt="kroOon" />
    </div>
        </article>


        <footer>
           © Copyright 2012, Entité TriCastor 
        </footer>
    </div>
</body>  
</html>