This repository was archived by the owner on Nov 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
49 lines (40 loc) · 1.41 KB
/
demo.html
File metadata and controls
49 lines (40 loc) · 1.41 KB
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
<!DOCTYPE html>
<html lang="en" class="theme--default">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Styles Demo</title>
<link rel="stylesheet" href="css/cn.styles.css">
</head>
<body>
<div>
<label class="cn-cbx-label">
<input type="checkbox" id="cn-cbx" checked />
<span class="cn-cbx-checkmark">
Checkbox-Text goes here
</span>
</label>
<label class="cn-radio-wrapper cn-radio-wrapper-before">
<span class="cn-radio-input">
<input type="radio" value="radio 1" checked name="cn-radio">
<span class="cn-radio-control"></span>
</span>
<span class="cn-radio-label">Label 1</span>
</label>
<label class="cn-radio-wrapper cn-radio-wrapper-before">
<span class="cn-radio-input">
<input type="radio" value="radio 2" name="cn-radio">
<span class="cn-radio-control"></span>
</span>
<span class="cn-radio-label">Label 2</span>
</label>
<div>
<input type="text" class="cn-text-input" name="" id="">
</div>
<div>
<button class="cn-button">This button has a lot of text</button>
</div>
</div>
</body>
</html>