-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstat.html
431 lines (414 loc) · 9.93 KB
/
stat.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="./nav.css">
<link rel="shortcut icon"
href="https://a.espncdn.com/combiner/i?img=/i/icons/cricket/ESPN-icon-cricket2.png&w=288&h=288&transparent=true">
</head>
<style>
*{
font-family:Tahoma, Geneva, Arial, "Arial Narrow", Verdana, sans-serif;
}
#mBox{
width: 70%;
height: 230px;
margin:auto;
margin-top:60px;
padding:10px;
display: flex;
gap:10px;
}
#testMatch{
display: flex;
gap:10px;
}
#k_left, #K_right{
padding:10px;
border: 1px solid grey;
border-radius: 10px;
width:200px;
height: 200px;
}
#k_right>p ,#k_left>p,#records>p,#k_other>p{
font-size: 11px;
margin-top: -5px;margin-bottom:-5px;
}
#k_right>h4 ,#k_left>h4{
font-size: 12px;
color: darkblue;
margin-bottom:2px;
margin-top:-5px;
}
hr{
border: none;
border-top: 1px dotted lightgrey;
color: #fff;
background-color: #fff;
height: 1px;
width: 100%;
}
#records{
border: 1px solid grey;
width: 250px;
border-radius:15px;
padding: 10px;
height:650px;
background-color:white;
}
p{
color: rgb(22, 22, 173)
}
p:hover{
color: black;
cursor: pointer;
text-decoration-line: underline;
}
#k_other{
margin-left: 225px;
border: 1px solid grey;
width: 430px;
height:700px;
border-radius:10px;
margin-top:10px;
padding:10px;
}
#k_readers{
border:1px solid grey;
padding:10px;
width:300px;
height:700px;
}
#k_top{
position: -webkit-sticky;
position: sticky;
}
#k_bottom{
border-top: 2px solid rgb(84, 19, 248);
overflow-y: scroll;
height:600px;
}
</style>
<body>
<div id="navbar"></div>
<div id="mBox">
<div id="testMatch">
<div id="k_left">
<h4 style="color:blue">Test matches</h4>
<hr>
<p>Team records</p> <hr>
<p>Batting records</p> <hr>
<p>
Bowling records
</p> <hr>
<p>
Wicketkeeping records
</p> <hr>
<p>
Fielding records
</p> <hr>
<p>
All-round records
</p> <hr>
<p>
Partnership records
</p> <hr>
<p>
Individual records
</p> <hr>
</div>
<div id="k_right">
<h4 style="color: blue;">
One-Day Internationals
</h4>
<hr>
<p>Team records</p> <hr>
<p>Batting records</p> <hr>
<p>
Bowling records
</p> <hr>
<p>
Wicketkeeping records
</p> <hr>
<p>
Fielding records
</p> <hr>
<p>
All-round records
</p> <hr>
<p>
Partnership records
</p> <hr>
<p>
Individual records
</p> <hr>
</div>
</div>
<div id="records">
<h4 style="margin-top:-5px;margin-bottom:-5px;">
Records by team
</h4>
<hr>
<h5 style="margin-top:-5px;margin-bottom:-5px; color:blue">
team | Host Country
</h5>
<hr>
<p>
Afghanistan
</p>
<hr>
<p>
Australia
</p>
<hr>
<p>
Bangladesh
</p>
<hr>
<p>
England
</p>
<hr>
<p>
ICC World XI
</p>
<hr>
<p>
India
</p>
<hr>
<p>
Ireland
</p>
<hr>
<p>
New Zealand
</p>
<hr>
<p>
Pakistan
</p>
<hr>
<p>
South Africa
</p>
<hr>
<p>
Sri Lanka
</p>
<hr>
<p>
West Indies
</p>
<hr>
<p>
Zimbabwe
</p>
<hr>
<p>
Africa XI
</p>
<hr>
<p>
Asia XI
</p>
<hr>
<p>
Bermuda
</p>
<hr>
<p>
Canada
</p>
<hr>
<p>
East Africa
</p>
<hr>
<p>
Hong Kong
</p>
<hr>
<p>
Kenya
</p>
<hr>
<p>
Namibia
</p>
<hr>
<p>
Nepal
</p>
<hr>
<p>
Netherlands
</p>
<hr>
<p>
Oman
</p>
<hr>
<p>
Papua New Guinea
</p>
<hr>
<p>
Scotland
</p>
<hr>
<p>
United Arab Emirates
</p>
<hr>
<p>
United States of America
</p>
<hr>
</div>
<div id="k_readers">
<div id="k_top">
<h3>Readers recommend</h3>
<p>Curated Tweets by @ESPNcricinfo</p>
</div>
<div id="k_bottom">
<p><b>zainub Razvi</b></p>
<p>
An article every bit as world class as Babar's innings.https://www.espncricinfo.com/story/…
</p>
<img style="height:150px" src="https://pbs.twimg.com/card_img/1548687281787400193/6R9FfBv9?format=jpg&name=600x314" alt="">
<p><b>abdul</b></p>
<p>
An article every bit as world class as Babar's innings.https://www.espncricinfo.com/story/ …
</p>
<img style="height:150px" src="https://pbs.twimg.com/card_img/1548687281787400193/6R9FfBv9?format=jpg&name=600x314" alt="">
<p><b>Chinthaka Chandrasekara</b></p>
<p>
An article every bit as world class as Babar's innings.https://www.espncricinfo.com/story/ …
</p>
<img style="height:150px" src="https://pbs.twimg.com/card_img/1548687281787400193/6R9FfBv9?format=jpg&name=600x314" alt="">
</div>
</div>
</div>
<div id="k_other">
<h4 style="margin-top:-4px;">Other cricket</h4>
<hr>
<p>
Twenty20 Internationals
</p>
<hr>
<p>
Combined Test, ODI and T20I records
</p>
<hr>
<p>
First-class matches
</p>
<hr>
<p>
List A matches
</p>
<hr>
<p>
Twenty20 matches
</p>
<hr>
<p>
Combined First-class, List A and Twenty20
</p>
<hr>
<p>
Women's Test matches
</p>
<hr>
<p>
Women's One-Day Internationals
</p>
<hr>
<p>
Women's Twenty20 Internationals
</p>
<hr>
<p>
Women's Twenty20
</p>
<hr>
<p>
Under-19s Youth Test matches
</p>
<hr>
<p>Under-19s Youth One-Day Internationals</p>
<hr>
<p>
All cricket records (including minor cricket)
</p>
<hr>
<h4>
Trophy/Cup records
</h4>
<hr>
<p>
Basil D'Oliveira Trophy
</p>
<hr>
<p>
Benaud-Qadir Trophy
</p>
<hr>
<p>
Border-Gavaskar Trophy
</p>
<hr>
<p>
Botham-Richards Trophy
</p>
<hr>
<p>
ICC World Test Championship
</p>
<hr>
<p>
The Ashes
</p>
<hr>
<p>
The Frank Worrell Trophy
</p>
<hr>
<p>
The Wisden Trophy
</p>
<hr>
<p>
Trans-Tasman Trophy
</p>
<hr>
<p>
Asia Cup
</p>
<hr>
<p>
Chappell-Hadlee Trophy
</p>
<hr>
<p>
ICC Champions Trophy (ICC KnockOut)
</p>
<hr>
<p>
ICC Cricket World Cup Qualifier (ICC Trophy)
</p>
<hr>
<p>
ICC World Cricket League Championship
</p>
</div>
</body>
</html>
<script type="module">
import navbar from "./navexport.js";
document.getElementById("navbar").innerHTML=navbar();
</script>