-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
switch.spec.html
41 lines (30 loc) · 886 Bytes
/
switch.spec.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
<link href="switch.css" rel="stylesheet">
<label class="matter-switch">
<input type="checkbox" role="switch" checked>
<span>Switched On</span>
</label>
<br/><br/><br/>
<label class="matter-switch">
<input type="checkbox" role="switch">
<span>Switched Off</span>
</label>
<br/><br/><br/>
<label class="matter-switch">
<input type="checkbox" role="switch" disabled checked>
<span>Switched On</span>
</label>
<br/><br/><br/>
<label class="matter-switch">
<input type="checkbox" role="switch" disabled>
<span>Switched Off</span>
</label>
<br/><br/><br/>
<label id="sized" class="matter-switch" style="width: 200px;">
<input type="checkbox" role="switch">
<span>Sized</span>
</label>
<br/><br/><br/>
<label id="xmas" class="matter-switch" style="width: 150px;">
<input type="checkbox" role="switch">
<span>Xmas Tree</span>
</label>