-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscoreboard_controls_2.html
62 lines (56 loc) · 1.57 KB
/
scoreboard_controls_2.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">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
/* add media queries
desktop:
800px
mobile:
600px
400px
*/
* {
box-sizing: border-box;
}
html {
height: 100%;
margin: 0px;
padding: 0px;
border: 0px solid green;
}
body {
min-height: 100%;
padding: 20px;
width: 800px;
margin: auto;
border: 0px solid blue;
color: white;
background-color: black;
}
p {
font-size: 3rem;
}
input, button {
font-size: 2rem;
margin: 10px;
}
hr {
margin: auto;
}
.score {
width: 3em;
}
</style>
<title>CKO Scoreboard Controls</title>
</head>
<body class="w3-display-container">
<script type="text/javascript" src="js/create_scoreboard_elements.js"></script>
<script type="text/javascript" src="js/scoreboard_controls.js"></script>
<script type="text/javascript" src="js/create_scoreboard_buttons.js"></script>
<!--
<hr/>
-->
</body>
</html>