-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 2.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Unseen UI</title>
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
<!-- unseen css -->
<link rel="stylesheet" href="build/unseen.css" />
<style>
html {
font-family: Inter, san-serif;
font-size: 16px;
}
</style>
</head>
<body>
<div class="navbar" style="display: flex; padding: 0.5em 1em;">
<div class="navbar-brand">
<strong>Unseen UI</strong>
</div>
<div class="navbar-item">
<input type="text" class="control input" placeholder="Search for people" />
</div>
</div>
<div>
<label>Email</label>
<input type="email" class="control input" placeholder="Search for titles" />
</div>
<div class="buttons" style="margin: 1.5em 3em">
<button type="button" class="control button" disabled>Disabled</button>
<button type="button" class="control button">Empty</button>
<button type="button" class="control button is-primary is-outlined">Cancel</button>
<button type="button" class="control button is-primary is-filled">Accept terms</button>
</div>
<div class="buttons" style="margin: 1.5em 3em">
<button type="button" class="control button is-rounded" disabled>Disabled</button>
<button type="button" class="control button is-rounded">Empty</button>
<button type="button" class="control button is-primary is-outlined is-rounded">Cancel</button>
<button type="button" class="control button is-primary is-filled is-rounded">Accept terms</button>
</div>
<div class="buttons" style="margin: 1.5em 3em">
<button type="button" class="control button is-primary is-filled is-rounded is-full-width">Load more</button>
<br />
<button type="button" class="control button is-primary is-outlined is-full-width">Cancel</button>
</div>
<div class="buttons" style="margin: 1.5em 3em">
<button type="button" class="control button is-rounded is-outlined is-success">Success</button>
<button type="button" class="control button is-filled is-rounded is-success">Success</button>
<button type="button" class="control button is-rounded is-outlined is-warning">Warning</button>
<button type="button" class="control button is-filled is-rounded is-warning">Warning</button>
<button type="button" class="control button is-rounded is-outlined is-danger">Danger</button>
<button type="button" class="control button is-filled is-rounded is-danger">Danger</button>
</div>
</html>