-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·202 lines (191 loc) · 8.14 KB
/
index.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Blue Jay Times</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" type="text/css" href="responsive.css">
</head>
<body>
<header class="header">
<div class="header__inner">
<img class="header__logo" src="images/logo-jay.png" alt="the jays">
<h1 class="header__title">
The Blue Jay Times
</h1>
<a id="menu" class="header__menu">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M2 6h20v3H2zm0 5h20v3H2zm0 5h20v3H2z"/>
</svg>
</a>
</div>
</header>
<nav id="drawer" class="nav">
<ul class="nav__list">
<li class="nav__item"><a href="#">News</a></li>
<li class="nav__item"><a href="#">Events</a></li>
<li class="nav__item"><a href="#">Culture</a></li>
<li class="nav__item"><a href="#">Blog</a></li>
</ul>
</nav>
<main>
<section class="content">
<section class="hero">
<article class="description">
<h2>Blue Jays now realize how good they can be</h2>
<p>When Devon Travis first joined the Toronto Blue Jays before the 2015 season, the team was still establishing its identity. </p>
</article>
</section>
<section class="news top-news">
<h2 class="news__title">Top news <a href="#" class="news__more">+ more</a></h2>
<ul>
<li class="top-news__item">
<a href="#">The "Blue Jays" name originates from the bird of the same name.</a>
</li>
<li class="top-news__item">
<a href="#">Blue is also the colour of our other sports team: the Maple Leafs</a>
</li>
<li class="top-news__item">
<a href="#">The Blue Jays are one of three MLB teams under corporate ownership.</a>
</li>
<li class="top-news__item">
<a href="#">The team plays its home games at the Rogers Centre.</a>
</li>
</ul>
</section>
<section class="scores">
<table class="scores__table">
<thead>
<tr>
<th>date</th>
<th>team</th>
<th colspan="2">score</th>
<th>team</th>
</tr>
</thead>
<tbody>
<tr>
<td>Monday, July 25</td>
<td>Padres</td>
<td>2</td>
<td class="winner">4</td>
<td class="winner">Blue Jays</td>
</tr>
<tr>
<td>Friday, July 29</td>
<td class="winner">Blue Jays</td>
<td class="winner">6</td>
<td>4</td>
<td>Orioles</td>
</tr>
<tr>
<td>Monday, August 1</td>
<td class="winner">Astros</td>
<td class="winner">2</td>
<td>1</td>
<td>Blue Jays</td>
</tr>
<tr>
<td>Thursday, August 4</td>
<td>Astros</td>
<td>1</td>
<td class="winner">4</td>
<td class="winner">Blue Jays</td>
</tr>
<tr>
<td>Friday, August 5</td>
<td class="winner">Blue Jays</td>
<td class="winner">4</td>
<td>5</td>
<td>Royals</td>
</tr>
</tbody>
</table>
</section>
<section class="weather">
<span class="weather__location">Toronto</span>
<span class="weather__desc">Sunny</span>
<span class="weather__today">
<img class="weather__today__image" src="images/weather.png" alt="icon of a partially sunny day"><span class="weather__today__temp">13</span><span class="weather__today__deg">°C</span>
</span>
<ul class="weather__next">
<li class="weather__next__item">
<span>Mon</span>
<img class="weather__next__image" src="images/sunny.png" alt="icon of a sunny day">
<span>13 °C</span>
</li><li class="weather__next__item">
<span>Tues</span>
<img class="weather__next__image" src="images/cloudy.png" alt="icon of a cloudy day">
<span>13 °C</span>
</li><li class="weather__next__item">
<span>Wed</span>
<img class="weather__next__image" src="images/cloudy.png" alt="icon of a cloudy day">
<span>13 °C</span>
</li><li class="weather__next__item">
<span>Thu</span>
<img class="weather__next__image" src="images/rain.png" alt="icon of a rainy day">
<span>13 °C</span>
</li><li class="weather__next__item">
<span>Fri</span>
<img class="weather__next__image" src="images/sunny.png" alt="icon of a sunny day">
<span>13 °C</span>
</li>
</ul>
</section>
<section class="news recent-news">
<h2 class="news__title">Latest news <a href="#" class="news__more">+ more</a></h2>
<ul>
<li class="snippet">
<img class="snippet__thumbnail" src="images/jays-1.jpg" alt="jays picture 1">
<h3 class="snippet__title"><a href="#">Jays Images</a></h3>
<p class="block-ellipsis">The Toronto Blue Jays are a Canadian professional baseball team based in Toronto, Ontario. The Blue Jays compete in Major League Baseball (MLB) as a member club of the American League (AL) East division.
</p>
</li>
<li class="snippet">
<img class="snippet__thumbnail" src="images/jays-2.jpg" alt="jays picture 2">
<h3 class="snippet__title"><a href="#">This Weeks Game</a></h3>
<p class="block-ellipsis">The Toronto Blue Jays are a Canadian professional baseball team based in Toronto, Ontario. The Blue Jays compete in Major League Baseball (MLB) as a member club of the American League (AL) East division.
</p>
</li>
<li class="snippet">
<img class="snippet__thumbnail" src="images/jays-3.jpg" alt="jays picture 3">
<h3 class="snippet__title"><a href="#">Highlights of the Night</a></h3>
<p class="block-ellipsis">The Toronto Blue Jays are a Canadian professional baseball team based in Toronto, Ontario. The Blue Jays compete in Major League Baseball (MLB) as a member club of the American League (AL) East division.
</li>
<li class="snippet">
<img class="snippet__thumbnail" src="images/jays-4.jpg" alt="jays picture 4">
<h3 class="snippet__title"><a href="#">Top 50 Photos</a></h3>
<p class="block-ellipsis">The Toronto Blue Jays are a Canadian professional baseball team based in Toronto, Ontario. The Blue Jays compete in Major League Baseball (MLB) as a member club of the American League (AL) East division.
</p>
</li>
</ul>
</section>
</section>
<footer>
<ul>
<li><a href="#">Contact us</a></li>
<li><a href="#">Follow us on Twitter</a></li>
<li><a href="#">RSS</a></li>
</ul>
</footer>
</main>
<script>
/*
* Open the drawer when the menu ison is clicked.
*/
var menu = document.querySelector('#menu');
var main = document.querySelector('main');
var drawer = document.querySelector('.nav');
menu.addEventListener('click', function(e) {
drawer.classList.toggle('open');
e.stopPropagation();
});
main.addEventListener('click', function() {
drawer.classList.remove('open');
});
</script>
</body>
</html>