-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
121 lines (94 loc) · 2.58 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
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Cliky Test Page</title>
<link rel="stylesheet" href="clicky.css" type="text/css">
</head>
<body>
<div>
<h2>Checkboxes</h2>
<p>
<label>
Checkbox
<input type="checkbox"/>
for comparison
</label>
</p>
<p>
<label class="clicky-checkbox">
Checkbox
<input type="checkbox"/>
for comparison (with .clicky-checkbox and no span)
</label>
</p>
<p>
<label class="clicky-checkbox">
Checkbox
<input type="checkbox"/>
<span></span>
for comparison (with .clicky-checkbox)
</label>
</p>
<p>
<label class="large clicky-checkbox">
Checkbox
<input type="checkbox"/>
<span></span>
for comparison (with .large.clicky-checkbox)
</label>
</p>
<p>
<label class="clicky-checkbox">
<input type="checkbox"/>
<span></span>
</label>
<label class="clicky-checkbox">
<input type="checkbox" checked="checked"/>
<span></span>
</label>
<label class="large clicky-checkbox">
<input type="checkbox"/>
<span></span>
</label>
<label class="large clicky-checkbox">
<input type="checkbox" checked="checked"/>
<span></span>
</label>
</p>
</div>
<div>
<h2>Radio Buttons</h2>
<p>
Radio buttons
<input type="radio" id="normal-radio-1" name="normal-radio-1"/>
<input type="radio" id="normal-radio-1" name="normal-radio-1" />
for comparison
</p>
<p>
Radio buttons
<label class="clicky-radio">
<input type="radio" id="clicky-radio-1" name="clicky-radio-1"/>
<span></span>
</label>
<label class="clicky-radio">
<input type="radio" id="clicky-radio-1" name="clicky-radio-1" checked="checked"/>
<span></span>
</label>
for comparison
</p>
<p>
Radio buttons
<label class="large clicky-radio">
<input type="radio" id="large-clicky-radio-1" name="large-clicky-radio-1" checked="checked"/>
<span></span>
</label>
<label class="large clicky-radio">
<input type="radio" id="large-clicky-radio-1" name="large-clicky-radio-1" />
<span></span>
</label>
for comparison
</p>
</div>
</body>
</html>