-
Notifications
You must be signed in to change notification settings - Fork 37
/
index.html
44 lines (36 loc) · 1.47 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>Pushy Buttons</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<!-- Styles -->
<link href="css/pushy-buttons.css" rel="stylesheet">
<!-- Test -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Blue Buttons -->
<div>
<button class="pushy__btn pushy__btn--lg pushy__btn--blue">Button</button>
<button class="pushy__btn pushy__btn--df pushy__btn--blue">Button</button>
<button class="pushy__btn pushy__btn--md pushy__btn--blue">Button</button>
<button class="pushy__btn pushy__btn--sm pushy__btn--blue">Button</button>
</div>
<!-- Green Buttons -->
<div>
<button class="pushy__btn pushy__btn--lg pushy__btn--green">Button</button>
<button class="pushy__btn pushy__btn--df pushy__btn--green">Button</button>
<button class="pushy__btn pushy__btn--md pushy__btn--green">Button</button>
<button class="pushy__btn pushy__btn--sm pushy__btn--green">Button</button>
</div>
<!-- Red Buttons -->
<div>
<button class="pushy__btn pushy__btn--lg pushy__btn--red">Button</button>
<button class="pushy__btn pushy__btn--df pushy__btn--red">Button</button>
<button class="pushy__btn pushy__btn--md pushy__btn--red">Button</button>
<button class="pushy__btn pushy__btn--sm pushy__btn--red">Button</button>
</div>
</body>
</html>