-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpreview.html
110 lines (110 loc) · 3.79 KB
/
preview.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Foundation Font Awesome Buttons</title>
<link rel="stylesheet" href="../css/preview.css" />
</head>
<body>
<div class="row">
<div class="columns">
<strong>Position</strong>
<br />
<a href="#" class="[ button ][ ffab fas before fa-arrow-left ]"
>Icon Before</a
>
<a href="#" class="[ button ][ ffab after fa-arrow-right ]"
>Icon After</a
>
<hr />
<strong>Colors</strong>
<br />
<a href="#" class="[ button ][ ffab fa-star ]">Priamry Color</a>
<a href="#" class="[ secondary button ][ ffab fa-bookmark ]"
>Secondary Color</a
>
<a href="#" class="[ success button ][ ffab fa-check-circle ]"
>Succes Color</a
>
<a href="#" class="[ alert button ][ ffab fa-times ]">Alert Color</a>
<a href="#" class="[ warning button ][ ffab fa-exclamation-triangle ]"
>Warning Color</a
>
<hr />
<strong>Sizes</strong>
<br />
<a href="#" class="[ large button ][ ffab fa-arrow-right ]"
>Large Size</a
>
<a href="#" class="[ button ][ ffab fa-arrow-right ]">Default Size</a>
<a href="#" class="[ small button ][ ffab fa-arrow-right ]"
>Small Size</a
>
<a href="#" class="[ tiny button ][ ffab fa-arrow-right ]">Tiny Size</a>
<a href="#" class="[ expanded button ][ ffab fa-arrow-right ]"
>Expanded Size</a
>
<hr />
<br />
<strong>Extras</strong>
<br />
<a href="#" class="[ disabled button ][ ffab fa-exclamation-circle ]"
>Disabled</a
>
<a href="#" class="[ button ][ ffab bordered fa-exclamation-circle ]"
>Bordered</a
>
<a href="#" class="[ hollow button ][ ffab fa-star ]">Hollow</a>
<br />
<div class="button-group">
<a class="[ button ][ ffab fa-layer-group ]">Button Group</a>
<a class="[ button ][ ffab fa-layer-group ]">Button Group</a>
</div>
<hr />
<strong>Utilities</strong>
<br />
<a href="#" class="[ button ][ ffab spin fa-circle-notch ]"
>Spin Icon</a
>
<a href="#" class="[ button ][ ffab pulse fa-spinner ]">Pulse Icon</a>
<br />
<a href="#" class="[ button ][ ffab fa-shield-alt ]">Normal</a>
<a href="#" class="[ button ][ ffab fa-shield-alt rotate-90 ]"
>Rotate 90</a
>
<a href="#" class="[ button ][ ffab fa-shield-alt rotate-180 ]"
>Rotate 180</a
>
<a href="#" class="[ button ][ ffab fa-shield-alt rotate-270 ]"
>Rotate 270</a
>
<br />
<a href="#" class="[ button ][ ffab fa-shield-alt flip-horizontal ]"
>Flip horizontal</a
>
<a href="#" class="[ button ][ ffab fa-shield-alt flip-vertical ]"
>Flip vertical</a
>
<hr />
<strong>Exapmles / Ideas</strong>
<br />
<a href="#" class="[ button ][ ffab fa-caret-down ]">Dropdown Button</a>
<br />
<a href="#" class="[ button ][ ffab before fa-check-square ]"
>Checkbox Button</a
>
<br />
<a href="#" class="warning button ffab before fa-exclamation-triangle"
>Yes, I'm Sure</a
>
<br />
<div class="button-group">
<div class="success button [ ffab before fa-check ]">Yes</div>
<div class="alert button [ ffab before fa-times ]">No</div>
</div>
</div>
</div>
</body>
</html>