-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (39 loc) · 1.11 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
<title>CSS Planning Poker</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="manifest" href="manifest.json">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<div class="container">
<div class="box yellow">
<input type="checkbox" id="1"/>
<label for="1">1</label>
</div>
<div class="box orange">
<input type="checkbox" id="2"/>
<label for="2">2</label>
</div>
<div class="box red">
<input type="checkbox" id="3"/>
<label for="3">3</label>
</div>
<div class="box magenta">
<input type="checkbox" id="5"/>
<label for="5">5</label>
</div>
<div class="box violet">
<input type="checkbox" id="8"/>
<label for="8">8</label>
</div>
<div class="box blue">
<input type="checkbox" id="13"/>
<label for="13">13</label>
</div>
<div class="box cyan">
<input type="checkbox" id="21"/>
<label for="21">21</label>
</div>
<div class="box green">
<input type="checkbox" id="?"/>
<label for="?">?</label>
</div>
</div>