-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (42 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<title>Checky (Authoring)</title>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="src/checky.jquery.js"></script>
<script src="main.js"></script>
<link rel="stylesheet" type="text/css" href="src/checky.css">
<style>
*, *:before, *:after {
box-sizing: border-box;
font-family: Arial;
}
.checky-label .counter {
margin-right: 5px;
}
</style>
</head>
<body>
<div class="checky">
<span class="checky-label">Select some stuff</span>
<div class="checky-options">
<label><input type="checkbox" id="chk0" name="chk[]">Yo. What if it's a pretty big item length?</label>
<label><input type="checkbox" id="chk1" name="chk[]">Dude</label>
<label><input type="checkbox" id="chk2" name="chk[]">Mon</label>
<label><input type="checkbox" id="chk3" name="chk[]">Mon</label>
<label><input type="checkbox" id="chk4" name="chk[]">Mon</label>
<label><input type="checkbox" id="chk5" name="chk[]">Mon</label>
<label><input type="checkbox" id="chk6" name="chk[]">Mon</label>
<label><input type="checkbox" id="chk7" name="chk[]">Mon</label>
<label><input type="checkbox" id="chk8" name="chk[]">Mon</label>
<label><input type="checkbox" id="chk9" name="chk[]">Mon</label>
<label><input type="checkbox" id="chk10" name="chk[]">Mon</label>
<label><input type="checkbox" id="chk11" name="chk[]">Mon</label>
<label><input type="checkbox" id="chk12" name="chk[]">Mon</label>
<label><input type="checkbox" id="chk13" name="chk[]">Mon</label>
</div>
</div>
</body>
</html>