-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 943 Bytes
/
index.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
<html>
<head>
<title>green-buttons-mixin-template</title>
<link rel="stylesheet" href="buttons.css">
</head>
<body>
<h2>Solo button:</h2>
<button class="button">one</button>
<h2>Trio format:</h2>
<div>
<button class="push-button-left">left</button>
<button class="push-button-center">center</button>
<button class="push-button-right">right</button>
</div>
<h2>Six pack format:</h2>
<div class="six-pack-buttons">
<div class="top-row">
<button class="push-button-top-left">one</button>
<button class="push-button-center">two</button>
<button class="push-button-top-right">three</button>
</div>
<div class="bottom-row">
<button class="push-button-bottom-left">four</button>
<button class="push-button-center">five</button>
<button class="push-button-bottom-right">six</button>
</div>
</div>
</body>
</html>