forked from TheQantas/league
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayoffs.html
152 lines (147 loc) · 5.58 KB
/
playoffs.html
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/header.min.css" />
<link rel="stylesheet" href="css/teams.min.css" />
<link rel="stylesheet" href="css/playoffs.min.css" />
<link rel="shortcut icon" href="images/favicon.png" />
<script src="scripts/resources.min.js"></script>
<script src="scripts/teams.min.js"></script>
<script src="scripts/playoffs.min.js"></script>
<title>The League | Playoffs</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Oswald&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
</head>
<body>
<div id="header" class="league">
<a href="/"><img src="images/logo.png" /><img src="images/favicon.png" /></a>
<a href="bet">Bet</a>
<a href="info">Info</a>
<a href="playoffs" style="text-decoration:underline">Playoffs</a>
<a href="schedule">Schedule</a>
<a href="stats">Stats</a>
<a href="teams">Teams</a>
<svg id="hamburger" onclick="document.getElementById('fullScreenNav').style.display = 'block';" viewBox="0 0 24 24">
<path d="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z" />
</svg>
</div>
<div id="fullScreenNav" class="league">
<div>
<svg id="fullScreenClose" onclick="this.parentElement.parentElement.style.display = 'none';" viewBox="0 0 24 24">
<path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" />
</svg>
<div id="fullLinksCont">
<a href="/">Home</a>
<a href="bet">Bet</a>
<a href="info">Info</a>
<a href="playoffs" style="text-decoration:underline">Playoffs</a>
<a href="schedule">Schedule</a>
<a href="stats">Stats</a>
<a href="teams">Teams</a>
</div>
</div>
</div>
<section id="champCont">
<img src="images/champ_logo_date_c.png" id="champLogo" />
<div id="padding"></div>
<div class="champMatchup cfc">
<img src="logos/cfc.png" />
<div class="champName">CFC Champ</div>
<div class="champAbbr">CFC</div>
<div class="champScore">-</div>
</div>
<div class="champMatchup nfc">
<img src="logos/nfc.png" />
<div class="champName">NFC Champ</div>
<div class="champAbbr">NFC</div>
<div class="champScore">-</div>
</div>
</section>
<section id="playoffCont">
<div id="confChooseCont">
<div id="confChooseHeader">Choose Conference:</div>
<div style="width:100%;height:auto;display:flex;">
<button class="confChoose cfc" onclick="goToCon('CFC',this)" style="text-decoration:underline">CFC</button>
<button class="confChoose nfc" onclick="goToCon('NFC',this)">NFC</button>
</div>
</div>
<div class="playoffBlock">
<div class="playoffHeader">Conference</div>
<div class="playoffGroup"></div>
</div>
<div class="playoffBlock">
<div class="playoffHeader">Divisional</div>
<div class="playoffGroup"></div>
</div>
<div class="playoffBlock">
<div class="playoffHeader">Wild Card</div>
<div class="playoffDesc">These teams are currently in the playoff picture</div>
<div class="playoffSub">x: Clinched Playoffs | y: Clinched Division</div>
<div class="playoffGroup"></div>
</div>
<div id="huntCont">
<div class="playoffBlock" id="theHunt">
<div class="playoffHeader">In the Hunt</div>
<div class="playoffDesc">These teams are on the outside looking in</div>
<div class="playoffGroup"></div>
</div>
<div class="playoffBlock" id="elimTeams">
<div class="playoffHeader">Eliminated</div>
<div class="playoffDesc">These teams cannot make the playoffs</div>
<div class="playoffGroup"></div>
</div>
</div>
</section>
<section id="standingsCont">
<div id="standingsGrid">
<div class="standingsCell">
<h>North</h>
<div class="standingsGroup" data-div="North">
</div>
</div>
<div class="standingsCell">
<h>South</h>
<div class="standingsGroup" data-div="South">
</div>
</div>
<div class="standingsCell">
<h>Central</h>
<div class="standingsGroup" data-div="Central">
</div>
</div>
<div class="standingsCell">
<h>East</h>
<div class="standingsGroup" data-div="East">
</div>
</div>
<div class="standingsCell">
<h>West</h>
<div class="standingsGroup" data-div="West">
</div>
</div>
<div class="standingsCell">
<h>Key</h><br />
<span class="playoffSub">x: Clinched Playoffs</span><br />
<span class="playoffSub">y: Clinched Division</span><br />
<span class="playoffSub">*: Eliminated From Playoffs</span><br />
</div>
</div>
</section>
<section id="seedCont">
<div>
<p>The top eight teams in each conference make the playoffs, with the top five seeds being the division champions and the other
three being the top teams who did not win their division. The tie-breakers are as follows:
</p>
<ol>
<li>Overall record</li>
<li>Direct matchups</li>
<li>Divisional record</li>
<li>Total Points Scored</li>
<li>Average Point Differential</li>
</ol>
</div>
</section>
</body>
</html>