forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttons-button-block-clear.html
37 lines (32 loc) · 1.54 KB
/
buttons-button-block-clear.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
<!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: <button> block clear w/ padding</h1>
</header>
<div class="content has-header padding">
<button class="button button-clear button-block"><i class="icon ion-home"></i> Default</button>
<button class="button button-light button-clear button-block">.button-light</button>
<button class="button button-stable button-clear button-block">.button-stable</button>
<button class="button button-positive button-clear button-block">.button-positive</button>
<button class="button button-calm button-clear button-block">.button-calm</button>
<button class="button button-balanced button-clear button-block">.button-balanced</button>
<button class="button button-assertive button-clear button-block">.button-assertive</button>
<button class="button button-energized button-clear button-block">.button-energized</button>
<button class="button button-royal button-clear button-block">.button-royal</button>
<button class="button button-dark button-clear button-block">.button-dark</button>
</div>
</body>
</html>