-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (110 loc) · 4.99 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
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
<!DOCTYPE html><html lang="en">
<head>
<title>GaukeT | Qwixx</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,-25" />
<link rel="apple-touch-icon" sizes="180x180" href="fav/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="fav/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="fav/favicon-16x16.png">
<link rel="manifest" href="fav/site.webmanifest">
<meta name="theme-color" content="#1A4341"/>
<meta name="description" content="GaukeT | Qwixx">
<meta name="viewport" content="width=850, user-scalable=0">
<meta content="text/html; charset=utf-8" />
</head>
<h2>Qwixx scorecard</h2>
<div class="scorecard">
<div class="br row">
<button class="color-red br2">2</button>
<button class="color-red br3">3</button>
<button class="color-red br4">4</button>
<button class="color-red br5">5</button>
<button class="color-red br6">6</button>
<button class="color-red br7">7</button>
<button class="color-red br8">8</button>
<button class="color-red br9">9</button>
<button class="color-red br10">10</button>
<button class="color-red br11">11</button>
<button class="color-red br12">12</button>
<button class="color-red br13"><span class="material-symbols-outlined">lock</span></button>
</div>
<div class="by row">
<button class="color-yellow by2">2</button>
<button class="color-yellow by3">3</button>
<button class="color-yellow by4">4</button>
<button class="color-yellow by5">5</button>
<button class="color-yellow by6">6</button>
<button class="color-yellow by7">7</button>
<button class="color-yellow by8">8</button>
<button class="color-yellow by9">9</button>
<button class="color-yellow by10">10</button>
<button class="color-yellow by11">11</button>
<button class="color-yellow by12">12</button>
<button class="color-yellow by13"><span class="material-symbols-outlined">lock</span></button>
</div>
<div class="bg row">
<button class="color-green bg2">12</button>
<button class="color-green bg3">11</button>
<button class="color-green bg4">10</button>
<button class="color-green bg5">9</button>
<button class="color-green bg6">8</button>
<button class="color-green bg7">7</button>
<button class="color-green bg8">6</button>
<button class="color-green bg9">5</button>
<button class="color-green bg10">4</button>
<button class="color-green bg11">3</button>
<button class="color-green bg12">2</button>
<button class="color-green bg13"><span class="material-symbols-outlined">lock</span></button>
</div>
<div class="bb row">
<button class="color-blue bb2">12</button>
<button class="color-blue bb3">11</button>
<button class="color-blue bb4">10</button>
<button class="color-blue bb5">9</button>
<button class="color-blue bb6">8</button>
<button class="color-blue bb7">7</button>
<button class="color-blue bb8">6</button>
<button class="color-blue bb9">5</button>
<button class="color-blue bb10">4</button>
<button class="color-blue bb11">3</button>
<button class="color-blue bb12">2</button>
<button class="color-blue bb13"><span class="material-symbols-outlined">lock</span></button>
</div>
<div class="reference row">
<div>Kruisjes<br><hr>Punten</div>
<div>1x<br><hr>1</div>
<div>2x<br><hr>3</div>
<div>3x<br><hr>6</div>
<div>4x<br><hr>10</div>
<div>5x<br><hr>15</div>
<div>6x<br><hr>21</div>
<div>7x<br><hr>28</div>
<div>8x<br><hr>36</div>
<div>9x<br><hr>45</div>
<div>10x<br><hr>55</div>
<div>11x<br><hr>66</div>
<div>12x<br><hr>78</div>
</div>
<div class="score row">
<div>
<input disabled text class="small color-red s1" placeholder="0"> +
<input disabled text class="small color-yellow s2" placeholder="0"> +
<input disabled text class="small color-green s3" placeholder="0"> +
<input disabled text class="small color-blue s4" placeholder="0"> -
<input disabled text class="small color-grey s5" placeholder="0"> =
<input disabled text class="small long s6" placeholder="0">
</div>
<div>
<div class="failure">
<input type="checkbox" class="small f1">
<input type="checkbox" class="small f2">
<input type="checkbox" class="small f3">
<input type="checkbox" class="small f4">
</div>
<div class="hint">Elke mislukte worp: -5 pt</div>
</div>
</div>
</div>
<script src="js/main.js" type="module"></script>
</body>
</html>