-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (40 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Ram Lmn" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
html, body {
margin: 0;
background: #fafafa;
font-family: Helvetica, Arial, sans-serif;
font-size: 18px;
color: #404040;
line-height: 1.5;
padding: 1em;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>UI element samples</h1>
<ul>
<li><a href="./dialog/">Dialog Box</a></li>
<li><a href="./expand-collapse/">Expand Collapse</a></li>
<li><a href="./fab-demo/">Expandable FAB</a></li>
<li><a href="./fab-flip/">Expandable FAB with FLIP</a></li>
<li><a href="./fab-glmat/">Expandable FAB with Inverse matrix transforms</a></li>
<li><a href="./bottom-navigation/">Bottom navigaion</a></li>
</ul>
</body>
</html>