forked from necolas/css3-github-buttons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
292 lines (249 loc) · 13.6 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CSS3 GitHub Buttons</title>
<meta name="description" content="Using CSS3 to create GitHub-style buttons from links, buttons, and inputs">
<style>
/* ------------------------------------------------------------------------------------------------------------- RESET */
html, body, div, form, p,
code, pre { margin: 0; padding: 0; border: 0; vertical-align: baseline; }
/* ------------------------------------------------------------------------------------------------------------- TEMPLATE */
body { font: 14px/1.333 sans-serif; color: #444; background: #eee; }
a { color: #980905; }
a:hover, a:focus, a:active { text-decoration: none; }
h1 { margin: 0 0 0.5em; font-size: 36px; }
h2 { margin: 0 0 0.75em; font-size: 21px; }
h3 { margin: 0 0 0.333em; font-size: 16px; font-weight: normal; }
p { margin: 0 0 1.333em; }
em { font-style: italic; }
table { border-collapse: separate; border-spacing: 0; margin: 0; vertical-align: middle; }
th { font-weight: bold; }
th, td { padding: 5px 25px 5px 5px; text-align: left; vertical-align: middle; }
pre, code { font-family: monospace, sans-serif; font-size: 1em; color:#080; }
/* ------------------------------------------------------------------------------------------------------------- TEMPLATE */
.container { position:relative; overflow:hidden; width: 600px; padding: 40px 60px; border: 1px solid #ccc; margin: 40px auto 20px; background: #fff; -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1); -moz-box-shadow: 0 0 15px rgba(0,0,0,0.1); box-shadow: 0 0 15px rgba(0,0,0,0.1); }
.container pre,
.container .prettyprint { padding: 0; border: 0; margin: 0 0 20px; font-size: 13px; background: #fff; }
.ribbon { position: absolute; top: -1px; right: -1px; opacity: 0.9; }
.ribbon:hover, .ribbon:focus, .ribbon:active { opacity: 1; }
.ribbon img { display: block; border: 0; }
.header { padding-right:80px; }
.section { margin: 40px 0 20px; }
.example { padding: 20px; border: 1px solid #ccc; margin: 10px -20px 20px; }
.footer { margin: 20px 0 50px; font-size: 11px; color: #666; text-align: center; }
.footer a { color: #666; }
</style>
<link rel="stylesheet" href="gh-buttons.css">
<!-- prettyify -->
<link rel="stylesheet" href="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.css">
<script src="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.js"></script>
</head>
<body onload="prettyPrint()">
<div class="container">
<a class="ribbon" href="http://github.com/necolas/css3-github-buttons" target="_blank"><img src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
<div class="header">
<h1>CSS3 GitHub Buttons</h1>
<p><b><a href="http://github.com/necolas/css3-github-buttons" title="GitHub repository">CSS3 GitHub Buttons</a> helps you easily create GitHub-style buttons from links, buttons, and inputs.</b></p>
</div>
<div class="section">
<h2>Buttons</h2>
<p>The "buttons" can be created by adding <code>class="button"</code> to any appropriate <code><a></code>, <code><button></code>, or <code><input></code> element. Add a further class of <code>pill</code> to create a button pill-like button. Add a further class of <code>primary</code> to emphasise more important actions.</p>
<div class="example">
<pre class="code prettyprint"><code><a href="#" class="button">Post comment</a></code></pre>
<form>
<a href="#button" class="button">Post comment (link)</a>
<input class="button" type="submit" value="Post comment (input)">
<button class="button" type="submit">Post comment (button)</button>
</form>
</div>
<div class="example">
<pre class="prettyprint"><code><a href="#" class="button pill">This is a pill button</a></code></pre>
<a href="#button" class="button pill">This is a pill button</a>
</div>
<div class="example">
<pre class="prettyprint"><code><a href="#" class="button primary">Publish post</a>
<a href="#" class="button">Save as draft</a></code></pre>
<a href="#button" class="button primary">Publish post</a> <a href="#button" class="button">Save as draft</a>
</div>
</div>
<div class="section">
<h2>Buttons with dangerous actions</h2>
<p>If you have a button that triggers a <em>dangerous</em> action, like deleting data, this can be indicated by adding the class <code>danger</code>.</p>
<div class="example">
<pre class="prettyprint"><code><a href="#" class="button danger">Delete post</a></code></pre>
<a href="#button" class="button danger">Delete post</a>
</div>
</div>
<div class="section">
<h2>Big buttons</h2>
<p>If you wish to emphasize a specific action you can add the class <code>big</code>.</p>
<div class="example">
<pre class="prettyprint"><code><a href="#" class="button big">Create Project</a></code></pre>
<a href="#button" class="button big">Create Project</a>
</div>
</div>
<div class="section">
<h2>Grouped buttons</h2>
<p>Groups of buttons can be created by wrapping them in an element given a class of <code>button-group</code>. A less important group of buttons can be marked out by adding a further class, <code>minor-group</code>.</p>
<div class="example">
<pre class="prettyprint"><code><div class="button-group">
<a href="#" class="button primary">Dashboard</a>
<a href="#" class="button">Inbox</a>
<a href="#" class="button">Account</a>
<a href="#" class="button">Logout</a>
</div></code></pre>
<div class="button-group">
<a href="#button" class="button primary">Dashboard</a>
<a href="#button" class="button">Inbox</a>
<a href="#button" class="button">Account</a>
<a href="#button" class="button">Logout</a>
</div>
</div>
<div class="example">
<pre class="prettyprint"><code><ul class="button-group">
<li><a href="#" class="button primary pill">Dashboard</a></li>
<li><a href="#" class="button pill">Inbox</a></li>
<li><a href="#" class="button pill">Account</a></li>
<li><a href="#" class="button pill">Logout</a></li>
</ul></code></pre>
<ul class="button-group">
<li><a href="#button" class="button primary pill">Dashboard</a></li>
<li><a href="#button" class="button pill">Inbox</a></li>
<li><a href="#button" class="button pill">Account</a></li>
<li><a href="#button" class="button pill">Logout</a></li>
</ul>
</div>
<div class="example">
<pre class="prettyprint"><code><div class="button-group <b>minor-group</b>">…</div></code></pre>
<div class="button-group minor-group">
<a href="#button" class="button primary">Dashboard</a>
<a href="#button" class="button">Inbox</a>
<a href="#button" class="button">Account</a>
<a href="#button" class="button">Logout</a>
</div>
</div>
</div>
<div class="section">
<h2>Mixed groups</h2>
<p>Displaying a mixture of grouped and standalone buttons, as might be seen in a toolbar, can be done by adding another wrapping element with the class <code>button-container</code>.</p>
<div class="example">
<pre class="prettyprint"><code><div class="actions <b>button-container</b>">
<a href="#" class="button primary">Compose new</a>
<div class="button-group">
<a href="#" class="button primary">Archive</a>
<a href="#" class="button">Report spam</a>
<a href="#" class="button danger">Delete</a>
</div>
<div class="button-group minor-group">
<a href="#" class="button">Move to</a>
<a href="#" class="button">Labels</a>
</div>
</div></code></pre>
<div class="actions button-container">
<a href="#button" class="button primary">Compose new</a>
<div class="button-group">
<a href="#button" class="button primary">Archive</a>
<a href="#button" class="button">Report spam</a>
<a href="#button" class="button danger">Delete</a>
</div>
<div class="button-group minor-group">
<a href="#button" class="button">Move to</a>
<a href="#button" class="button">Labels</a>
</div>
</div>
</div>
</div>
<div class="section">
<h2>Buttons with icons</h2>
<p>A range of icons can be added (only for links and buttons) by adding a class of <code>icon</code> and any one of the provided icon classes:</p>
<div class="example">
<pre class="prettyprint"><code><a href="#" class="button icon magnifying-glass">Search</a></code></pre>
<a href="#button" class="button icon magnifying-glass">Search</a>
</div>
<div class="example">
<table>
<thead>
<tr>
<th scope="col">Class</th>
<th scope="col">Example</th>
</tr>
</thead>
<tr>
<td scope="row"><code>.home</code></td>
<td><a href="#button" class="button icon home">Home</a></td>
</tr>
<tr>
<td scope="row"><code>.at</code></td>
<td><a href="#button" class="button icon at">At-Symbol</a></td>
</tr>
<tr>
<td scope="row"><code>.quote</code></td>
<td><a href="#button" class="button icon .quote">Quote</a></td>
</tr>
<tr>
<td scope="row"><code>.quote-alt</code></td>
<td><a href="#button" class="button icon .quote-alt">Quote-Alternative</a></td>
</tr>
<tr>
<td scope="row"><code>.arrow-up</code></td>
<td><a href="#button" class="button icon arrow-up">Arrow up</a></td>
</tr>
<tr>
<td scope="row"><code>.arrow-right</code></td>
<td><a href="#button" class="button icon arrow-right">Arrow right</a></td>
</tr>
<tr>
<td scope="row"><code>.arrow-bottom</code></td>
<td><a href="#button" class="button icon arrow-bottom">Arrow bottom</a></td>
</tr>
<tr>
<td scope="row"><code>.arrow-left</code></td>
<td><a href="#button" class="button icon arrow-left">Arrow left</a></td>
</tr>
<tr>
<td scope="row"><code>.arrow-up-alt</code></td>
<td><a href="#button" class="button icon arrow-up-alt">Arrow up-alt</a></td>
</tr>
<tr>
<td scope="row"><code>.arrow-right-alt</code></td>
<td><a href="#button" class="button icon arrow-right-alt">Arrow right-alt</a></td>
</tr>
<tr>
<td scope="row"><code>.arrow-bottom-alt</code></td>
<td><a href="#button" class="button icon arrow-bottom-alt">Arrow bottom-alt</a></td>
</tr>
<tr>
<td scope="row"><code>.arrow-left-alt</code></td>
<td><a href="#button" class="button icon arrow-left-alt">Arrow left-alt</a></td>
</tr>
<tr>
<td scope="row"><code>.move</code></td>
<td><a href="#button" class="button icon move">Move</a></td>
</tr>
</table>
</div>
</div>
<div class="section">
<h2>More icon-examples comming soon</h2>
<p>Check out the css-file for a full list of all available icons!</p>
</div>
<div class="section">
<h2>Browser compatibility</h2>
<p>Firefox 3.5+, Google Chrome, Safari 4+, IE 8+, Opera 10+.</p>
<p><strong>Note:</strong> Some CSS3 features are not supported in older versions of Opera and versions of Internet Explorer prior to IE 8. The use of icons is not supported in IE 6 or IE 7.</p>
</div>
<div class="section">
<h2>License</h2>
<p>Public domain: <a href="http://unlicense.org/">http://unlicense.org/</a></p>
</div>
<div class="section">
<h2>Acknowledgements</h2>
<p>Inspired by <a href="http://michaelhenriksen.dk">Michael Henriksen</a>'s <a href="http://github.com/michenriksen/css3buttons">CSS3 Buttons</a>. Icons from <a href="http://somerandomdude.com/projects/iconic/">Iconic pack</a>.</p>
</div>
</div>
<div class="footer">
<a href="http://github.com/necolas/css3-github-buttons">CSS3 GitHub Buttons</a> by <a href="http://nicolasgallagher.com" title="Website of Nicolas Gallagher">Nicolas Gallagher</a>.
</div>
</body>
</html>