-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttons.html
35 lines (32 loc) · 932 Bytes
/
buttons.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" href="dist/ios7css.css" type="text/css">
<script src="js/track.js"></script>
</head>
<body>
<div class="button-group">
<button class="third">One</button><button class="third">Two</button><button class="third">Three</button>
</div>
<br><br>
<div class="button-group inset">
<button class="third">One</button><button class="third">Two</button><button class="third">Three</button>
</div>
<br><br>
<button>Normal</button>
<button class="primary">Primary</button>
<button class="warning">Warning</button>
<br><br>
<button class="full">Full</button>
<br><br>
<button class="half">Half</button>
<br><br>
<button class="third">Third</button>
<br><br>
<button class="fourth">Fourth</button>
<br><br>
<button class="fifth">Fifth</button>
<br><br>
</body>
</html>