-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 2.83 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
<!Doctype html>
<html>
<head>
<title>LESS - CheckBox Mixin Demo</title>
<link rel="stylesheet" href="css/demo.css">
<link rel="stylesheet" href="css/lch-checkbox.css">
</head>
</html>
<body>
<!-- GitHub Ribbon -->
<a href="https://github.com/netoholic/less-checkbox-mixin"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<!-- /End of GitHub Ribbon -->
<div class="wrapper">
<header class="header">
<h1 class="logo header-logo">LESS - Checkbox Mixin</h1>
</header>
<section class="main">
<h2 class="main-heading">This is a demo of the less mixin, created to help you easily style checkboxes</h2>
<form action="" class="demo-form">
<fieldset class="demo-fields">
<p class="demo-text">Please select an option:</p>
<div class="demo-field">
<input type="checkbox" id="demo-checkbox-1" class="demo-checkbox lch-checkbox" name="demo-checkbox-1" checked="checked">
<label for="demo-checkbox-1" class="demo-label lch-label">Label 1</label>
</div>
<div class="demo-field">
<input type="checkbox" id="demo-checkbox-2" class="demo-checkbox lch-checkbox" name="demo-checkbox-2">
<label for="demo-checkbox-2" class="demo-label lch-label">Label 2</label>
</div>
<div class="demo-field">
<input type="checkbox" id="demo-checkbox-3" class="demo-checkbox lch-checkbox" name="demo-checkbox-3" checked="checked">
<label for="demo-checkbox-3" class="demo-label lch-label">Label 3</label>
</div>
<div class="demo-field">
<input type="checkbox" id="demo-checkbox-4" class="demo-checkbox lch-checkbox" name="demo-checkbox-4">
<label for="demo-checkbox-4" class="demo-label lch-label">Label 4</label>
</div>
<div class="demo-field">
<input type="checkbox" id="demo-checkbox-5" class="demo-checkbox lch-checkbox" name="demo-checkbox-5" checked="checked">
<label for="demo-checkbox-5" class="demo-label lch-label">Label 5</label>
</div>
</fieldset>
</form>
<em>You can check the github repository and documentation <a href="https://github.com/netoholic/less-checkbox-mixin" title="LESS Checkbox Mixin">here</a> !</em>
</section>
<footer class="footer">
<p class="footer-copyright">© Boyan Yordanov - 2013</p>
</footer>
</div>
</body>