-
Notifications
You must be signed in to change notification settings - Fork 1
/
scoreboard.html
62 lines (58 loc) · 2.2 KB
/
scoreboard.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
<!DOCTYPE html>
<html lang="en">
<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="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<title>OBS Streaming Scoreboard</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="time">
<span class="overtime-indicator hidden">+</span>
<span class="minutes">––</span>
<span class="minutes-colon">:</span>
<span class="seconds">––</span>
</div>
<div class="name-team name-team-home">---</div>
<div class="score">
<span class="score-team score-team-home" data-score="0">0</span>
<span class="score-team score-team-away" data-score="0">0</span>
</div>
<div class="name-team name-team-away">---</div>
</div>
<div class="menu">
<div data-target="score-team-home">
<h3>Scores <span class="name-team name-team-home">Home</span></h3>
<button class="btn-score add">+ 1</button>
<button class="btn-score sub">- 1</button>
<button class="btn-score reset">Reset</button>
</div>
<div data-target="score-team-away">
<h3>Scores <span class="name-team name-team-away">Away</span></h3>
<button class="btn-score add">+ 1</button>
<button class="btn-score sub">- 1</button>
<button class="btn-score reset">Reset</button>
</div>
<div data-target="score">
<h3>Time</h3>
<button class="btn-time pause">Start</button>
<button class="btn-time reset">Reset</button>
</div>
<div>
<h3>Team Names & Colors</h3>
<div>
<input type="text" class="inp_teamName" placeholder="Home Team Name" data-target="name-team-home">
<input type="text" class="inp_teamName" placeholder="Away Team Name" data-target="name-team-away">
</div>
<div>
<input type="text" class="inp_teamColor" placeholder="Home Team Color" data-target="color-team-home">
<input type="text" class="inp_teamColor" placeholder="Away Team Color" data-target="color-team-away">
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>