forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlists-colors-complex.html
More file actions
81 lines (77 loc) · 3.44 KB
/
lists-colors-complex.html
File metadata and controls
81 lines (77 loc) · 3.44 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
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 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 Complex</h1>
</header>
<div class="content has-header">
<div class="list">
<div class="item item-complex">
<a class="item-content" ng-href="#" target="_self" href="#">Default </a>
</div>
<div class="item-light item item-complex">
<a class="item-content" ng-href="#" target="_self" href="#">item-light</a>
</div>
<div class="item-stable item item-complex">
<a class="item-content" ng-href="#" target="_self" href="#">item-stable</a>
</div>
<div class="item-positive item item-complex">
<a class="item-content" ng-href="#" target="_self" href="#">item-positive</a>
</div>
<div class="item-assertive item item-complex">
<a class="item-content" ng-href="#" target="_self" href="#">item-assertive</a>
</div>
<div class="item-balanced item item-complex">
<a class="item-content" ng-href="#" target="_self" href="#">item-balanced</a>
</div>
<div class="item-energized item item-complex">
<a class="item-content" ng-href="#" target="_self" href="#">item-energized</a>
</div>
<div class="item-royal item item-complex">
<a class="item-content" ng-href="#" target="_self" href="#">item-royal</a>
</div>
<div class="item-dark item item-complex">
<a class="item-content" ng-href="#" target="_self" href="#">item-dark</a>
</div>
<div class="item item-complex">
<a class="item-content active" ng-href="#" target="_self" href="#">Default Active</a>
</div>
<div class="item-light item item-complex">
<a class="item-content active" ng-href="#" target="_self" href="#">item-light Active</a>
</div>
<div class="item-stable item item-complex">
<a class="item-content active" ng-href="#" target="_self" href="#">item-stable Active</a>
</div>
<div class="item-positive item item-complex">
<a class="item-content active" ng-href="#" target="_self" href="#">item-positive Active</a>
</div>
<div class="item-assertive item item-complex">
<a class="item-content active" ng-href="#" target="_self" href="#">item-assertive Active</a>
</div>
<div class="item-balanced item item-complex">
<a class="item-content active" ng-href="#" target="_self" href="#">item-balanced Active</a>
</div>
<div class="item-energized item item-complex">
<a class="item-content active" ng-href="#" target="_self" href="#">item-energized Active</a>
</div>
<div class="item-royal item item-complex">
<a class="item-content active" ng-href="#" target="_self" href="#">item-royal Active</a>
</div>
<div class="item-dark item item-complex">
<a class="item-content active" ng-href="#" target="_self" href="#">item-dark active Active</a>
</div>
</div>
</body>
</html>