This repository has been archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
81 lines (68 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Differs</title>
<link href="dist/differs.css" rel="stylesheet" />
<style>
body {
background-color: #cacaca;
}
</style>
</head>
<body>
<div class="container">
<h1>
Hello World
</h1>
<div class="group">
<div class="group-items">
<input type="text" class="input is-light" placeholder="Demo Placeholder" />
<button class="button is-dark">Confirm</button>
</div>
</div>
<div class="group">
<input type="text" class="input is-light" value="Demo Value" />
</div>
<div class="group">
<input type="text" class="input is-light" disabled value="Disabled Value" />
</div>
<div class="group">
<div class="action">
<input type="checkbox" class="action-element" id="customCheck1" />
<label for="customCheck1" class="action-label">
Check Option One
</label>
</div>
<div class="action">
<input type="checkbox" class="action-element" id="customCheck2" />
<label for="customCheck2" class="action-label">
Check Option Two
</label>
</div>
<div class="action as-switch">
<input type="checkbox" class="action-element" id="customCheck3" />
<label for="customCheck3" class="action-label">
Check Option Three
</label>
</div>
</div>
<div class="group has-spacing">
<div class="group-items">
<div class="action">
<input type="radio" id="customRadio1" name="customRadio" class="action-element">
<label class="action-label" for="customRadio1">Toggle Option One</label>
</div>
<div class="action">
<input type="radio" id="customRadio2" name="customRadio" class="action-element">
<label class="action-label" for="customRadio2">Toggle Option Two</label>
</div>
</div>
</div>
<button type="button" class="button is-dark">
Demo Button
</button>
</div>
</body>
</html>