-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscorecard.html
56 lines (55 loc) · 1.42 KB
/
scorecard.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
<div class="mt-5 row d-flex justify-content-center mx-1 mx-lg-5 ">
<div class="col-12 my-lg-0 col-lg-5 text-center shadow shadow-lg fw-bold mx-2 rounded-pill" id="teamOneCard"
style="font-size: 1.3rem;">
<a id="teamOneName" class="nav-link active rounded-pill text-success" aria-current="page"
href="javascript:void(0)" onclick="teamFullCard(0)">
</a>
</div>
<div class="col-12 mt-3 my-lg-0 col-lg-5 text-center shadow shadow-lg fw-bold mx-2 rounded-pill" id="teamTwoCard"
style="font-size: 1.3rem;">
<a id="teamTwoName" class="nav-link active rounded-pill text-success" aria-current="page"
href="javascript:void(0)" onclick="teamFullCard(1)">
</a>
</div>
</div>
<div class="my-5 mx-lg-5 px-2">
<table class="table table-hover">
<thead>
<tr class=" fw-bold">
<th>Batting</th>
<th></th>
<th>R</th>
<th>B</th>
<th>0s</th>
<th>4s</th>
<th>6s</th>
<th>SR</th>
<th>role</th>
</tr>
</thead>
<tbody id="battingCard">
</tbody>
</table>
<div id="extraRuns"></div>
<div class="my-3" id="scoreRateOver" style="font-size: 1.3rem;">
</div>
<table class="table table-hover mt-5" id="bowlingTable">
<thead>
<tr class="fw-bold">
<th>Bowlling</th>
<th>O</th>
<th>R</th>
<th>M</th>
<th>W</th>
<th>Eco</th>
<th>0s</th>
<th>4s</th>
<th>6s</th>
<th>Wd</th>
<th>Nb</th>
</tr>
</thead>
<tbody id="bowlingCard">
</tbody>
</table>
</div>