forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlists-colors.html
More file actions
37 lines (33 loc) · 1.21 KB
/
lists-colors.html
File metadata and controls
37 lines (33 loc) · 1.21 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
<!DOCTYPE html>
<html ng-app="ionic">
<head>
<script src="../../dist/js/ionic.bundle.js"></script>
<meta charset="utf-8">
<title>Lists</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<link href="../../dist/css/ionic.css" rel="stylesheet">
<style>
body {
position: absolute;;
}
</style>
</head>
<body class="ionic-pseudo">
<header class="bar bar-header bar-dark">
<h1 class="title">Lists: Colors</h1>
</header>
<div class="content has-header">
<div class="list">
<a class="item" href="#">Default</a>
<a class="item item-light" href="#">item-light</a>
<a class="item item-stable" href="#">item-stable</a>
<a class="item item-positive" href="#">item-positive</a>
<a class="item item-calm" href="#">item-calm</a>
<a class="item item-assertive" href="#">item-assertive</a>
<a class="item item-balanced" href="#">item-balanced</a>
<a class="item item-energized" href="#">item-energized</a>
<a class="item item-royal" href="#">item-royal</a>
<a class="item item-dark" href="#">item-dark</a>
</div>
</body>
</html>