|
| 1 | +<!DOCTYPE html> |
| 2 | +<html ng-app="ionic"> |
| 3 | + <head> |
| 4 | + <script src="../../dist/js/ionic.bundle.js"></script> |
| 5 | + <meta charset="utf-8"> |
| 6 | + <title>Lists</title> |
| 7 | + <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> |
| 8 | + <link href="../../dist/css/ionic.css" rel="stylesheet"> |
| 9 | + <style> |
| 10 | + body { |
| 11 | + position: absolute;; |
| 12 | + } |
| 13 | + </style> |
| 14 | + </head> |
| 15 | + <body class="ionic-pseudo"> |
| 16 | + |
| 17 | + <header class="bar bar-header bar-dark"> |
| 18 | + <h1 class="title">Lists: Colors Complex</h1> |
| 19 | + </header> |
| 20 | + |
| 21 | + <div class="content has-header"> |
| 22 | + |
| 23 | + <div class="list"> |
| 24 | + <div class="item item-complex"> |
| 25 | + <a class="item-content" ng-href="#" target="_self" href="#">Default </a> |
| 26 | + </div> |
| 27 | + <div class="item-light item item-complex"> |
| 28 | + <a class="item-content" ng-href="#" target="_self" href="#">item-light</a> |
| 29 | + </div> |
| 30 | + <div class="item-stable item item-complex"> |
| 31 | + <a class="item-content" ng-href="#" target="_self" href="#">item-stable</a> |
| 32 | + </div> |
| 33 | + <div class="item-positive item item-complex"> |
| 34 | + <a class="item-content" ng-href="#" target="_self" href="#">item-positive</a> |
| 35 | + </div> |
| 36 | + <div class="item-assertive item item-complex"> |
| 37 | + <a class="item-content" ng-href="#" target="_self" href="#">item-assertive</a> |
| 38 | + </div> |
| 39 | + <div class="item-balanced item item-complex"> |
| 40 | + <a class="item-content" ng-href="#" target="_self" href="#">item-balanced</a> |
| 41 | + </div> |
| 42 | + <div class="item-energized item item-complex"> |
| 43 | + <a class="item-content" ng-href="#" target="_self" href="#">item-energized</a> |
| 44 | + </div> |
| 45 | + <div class="item-royal item item-complex"> |
| 46 | + <a class="item-content" ng-href="#" target="_self" href="#">item-royal</a> |
| 47 | + </div> |
| 48 | + <div class="item-dark item item-complex"> |
| 49 | + <a class="item-content" ng-href="#" target="_self" href="#">item-dark</a> |
| 50 | + </div> |
| 51 | + <div class="item item-complex"> |
| 52 | + <a class="item-content active" ng-href="#" target="_self" href="#">Default Active</a> |
| 53 | + </div> |
| 54 | + <div class="item-light item item-complex"> |
| 55 | + <a class="item-content active" ng-href="#" target="_self" href="#">item-light Active</a> |
| 56 | + </div> |
| 57 | + <div class="item-stable item item-complex"> |
| 58 | + <a class="item-content active" ng-href="#" target="_self" href="#">item-stable Active</a> |
| 59 | + </div> |
| 60 | + <div class="item-positive item item-complex"> |
| 61 | + <a class="item-content active" ng-href="#" target="_self" href="#">item-positive Active</a> |
| 62 | + </div> |
| 63 | + <div class="item-assertive item item-complex"> |
| 64 | + <a class="item-content active" ng-href="#" target="_self" href="#">item-assertive Active</a> |
| 65 | + </div> |
| 66 | + <div class="item-balanced item item-complex"> |
| 67 | + <a class="item-content active" ng-href="#" target="_self" href="#">item-balanced Active</a> |
| 68 | + </div> |
| 69 | + <div class="item-energized item item-complex"> |
| 70 | + <a class="item-content active" ng-href="#" target="_self" href="#">item-energized Active</a> |
| 71 | + </div> |
| 72 | + <div class="item-royal item item-complex"> |
| 73 | + <a class="item-content active" ng-href="#" target="_self" href="#">item-royal Active</a> |
| 74 | + </div> |
| 75 | + <div class="item-dark item item-complex"> |
| 76 | + <a class="item-content active" ng-href="#" target="_self" href="#">item-dark active Active</a> |
| 77 | + </div> |
| 78 | + </div> |
| 79 | + |
| 80 | + </body> |
| 81 | +</html> |
0 commit comments