Files
ionic-framework/test/css/buttons-full.html
2014-06-06 13:47:10 -04:00

44 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html ng-app="ionic">
<head>
<script src="../../dist/js/ionic.bundle.js"></script>
<meta charset="utf-8">
<title>Buttons</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>
<header class="bar bar-header bar-dark">
<h1 class="title">Buttons: full</h1>
</header>
<div class="content has-header">
<p>
<button class="button button-full"><i class="icon ion-home"></i> Default</button>
<button class="button button-full button-light">.button-light</button>
<button class="button button-full button-stable">.button-stable</button>
<button class="button button-full button-positive">.button-positive</button>
<button class="button button-full button-calm">.button-calm</button>
<button class="button button-full button-balanced">.button-balanced</button>
<button class="button button-full button-assertive">.button-assertive</button>
<button class="button button-full button-energized">.button-energized</button>
<button class="button button-full button-royal">.button-royal</button>
<button class="button button-full button-dark">.button-dark</button>
</p>
<p class="button-full">
<a class="button"><i class="icon ion-home"></i> w/ parent .button-full</a>
</p>
</div>
</body>
</html>