-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (50 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">
<style>
html,
body {
text-align: center;
background-image: url('./img/basketball-ball-dark_21730-10292.jpg');
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.team {
font-weight: bolder;
font-size: 35px;
}
.game {
color: blue;
font-size: 50px;
}
.score {
color: red;
font-size: 35px;
}
h1{
color:grey
}
</style>
</head>
<body>
<h1>NBA GAMES</h1>
<div class="center">
<input class="date" type="date" value="">
</div>
<div class="card">
<ul class="list-group list-group-flush" id="gamelist">
</ul>
</div>
<div id="console"></div>
<!-- You can also require other files to run in this process -->
<script type="module" src="./renderer.js"></script>
</body>
</html>