-
Notifications
You must be signed in to change notification settings - Fork 416
/
demo.html
475 lines (403 loc) · 25.1 KB
/
demo.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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CSS3 Buttons | Simple CSS3 framework for creating GitHub style button links</title>
<meta name="description" content="CSS3 Buttons is a simple framework to create good-looking GitHub style button links.">
<meta name="author" content="Michael Henriksen">
<link rel="stylesheet" href="stylesheets/reset.css" media="screen">
<link rel="stylesheet" href="stylesheets/demo.css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Neuton&subset=latin' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="stylesheets/css3buttons.css" media="screen">
<script type="text/javascript" src="javascripts/modernizr-1.6.min.js"></script>
</head>
<body>
<div class="container">
<header>
<h1 id="title">CSS3 Buttons</h1>
</header>
<div id="main">
<section class="odd">
<h2>What is this?</h2>
<p>
<strong>CSS3 Buttons</strong> is a simple <em>framework</em> for creating good-looking GitHub style button links.
</p>
<p>
<strong>UPDATE 19th of Mar.</strong> Now you can also indicate a <em>positive</em> action by using the <code>.positive</code> class, which
will change the hover-state to green.
</p>
<p>
<strong>UPDATE 19th of Mar.</strong> It is now possible to use <code><button></code> tags to easily submit forms.
</p>
<p>
<strong>UPDATE 26th of Feb.</strong> The icon sprite has been optimized and additional icons has been added. Scroll down to
see what's new!
</p>
<ul>
<li><a href="https://github.com/michenriksen/css3buttons/zipball/master">Download CSS3 Buttons as zip archive</a></li>
<li><a href="https://github.com/michenriksen/css3buttons/tarball/master">Download CSS3 Buttons as tar.gz archive</a></li>
</ul>
</section>
<section class="even">
<h2>Buttons</h2>
<p>To create a button, the only thing you have to do is this:</p>
<article class="example">
<h3>Code:</h3>
<pre class="code"><span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"#"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"button"</span><span style='color:#ff8906; '>></span>This is a Button<span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#ff8906; '>></span>
</pre>
<h3>Result:</h3>
<div class="result">
<a href="javascript:void(false)" class="button">This is a Button</a>
</div>
</article>
<p>You can also use the button tag:</p>
<article class="example">
<h3>Code:</h3>
<pre class="code"><span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>button</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"</span><span style='color:#00c4c4; '>button</span><span style='color:#00c4c4; '>"</span><span style='color:#ff8906; '>></span>This is a Button<span style='color:#fb8400; '></</span><span style='color:#e66170; font-weight:bold; '>button</span><span style='color:#fb8400; '>></span>
</pre>
<h3>Result:</h3>
<div class="result">
<button class="button">This is a Button</button>
</div>
</article>
<p>If you prefer a pill-like button with more rounded corners, you can add a <code>.pill</code> class to the button</p>
<article class="example">
<h3>Code:</h3>
<pre class="code"><span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"#"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"pill button"</span><span style='color:#ff8906; '>></span>This is a Pill Button<span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#ff8906; '>></span>
</pre>
<h3>Result:</h3>
<div class="result">
<a href="javascript:void(false)" class="pill button">This is a Pill Button</a>
</div>
</article>
<p>
Sometimes when you have multiple buttons, it's considered good practice to highlight the button with the primary action in order to give
the user a visual clue of what action to take if in doubt. This can be accomplished by adding a <code>.primary</code> class
to the button
</p>
<article class="example">
<h3>Code:</h3>
<pre class="code"><span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"#"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"primary button"</span><span style='color:#ff8906; '>></span>Publish Post<span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#ff8906; '>></span> or <span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"#"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"button"</span><span style='color:#ff8906; '>></span>Save as Draft<span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#ff8906; '>></span>
</pre>
<h3>Result:</h3>
<div class="result">
<a href="javascript:void(false)" class="primary button">Publish Post</a> or <a href="javascript:void(false)" class="button">Save as Draft</a>
</div>
</article>
</section>
<section class="odd">
<h2>Buttons with negative actions</h2>
<p>
If you have a button that triggers a <em>negative</em> action, like deleting data, it's good practice to warn the user by
styling the button differently than the normal buttons. Give a button the class <code>.negative</code> and the hover-state
will change to red
</p>
<article class="example">
<h3>Code:</h3>
<pre class="code"><span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"#"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"negative button"</span><span style='color:#ff8906; '>></span>Divide by Zero<span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#ff8906; '>></span>
</pre>
<h3>Result:</h3>
<div class="result">
<a href="javascript:alert('You son of a bitch!\n\nYou just divided by zero, didn\'t you?')" class="negative button">Divide by Zero</a>
</div>
</article>
</section>
<section class="even">
<h2>Buttons with positive actions</h2>
<p>
If you have a button that triggers an action you want to encourage your users to do, you can give a button a <code>.positive</code> class
and the hover-state will change to green
</p>
<article class="example">
<h3>Code:</h3>
<pre class="code"><span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"</span><span style='color:#e66170; font-weight:bold; '>#</span><span style='color:#00c4c4; '>"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"</span><span style='color:#00c4c4; '>positive button</span><span style='color:#00c4c4; '>"</span><span style='color:#ff8906; '>></span>Save the World<span style='color:#fb8400; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#fb8400; '>></span>
</pre>
<h3>Result:</h3>
<div class="result">
<a href="javascript:void(false)" class="positive button">Save the World</a>
</div>
</article>
</section>
<section class="odd">
<h2>Grouped buttons</h2>
<p>
You can create grouped buttons that are linked together, like seen at <a href="http://www.gmail.com">Gmail</a> and other places, by using the <code>.left</code>, <code>.middle</code> and <code>.right</code> classes:
</p>
<article class="example">
<h3>Code:</h3>
<pre class="code"><span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"#"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"left primary button"</span><span style='color:#ff8906; '>></span>Archive<span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#ff8906; '>></span>
<span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"#"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"middle button"</span><span style='color:#ff8906; '>></span>Report Spam<span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#ff8906; '>></span>
<span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"#"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"right negative button"</span><span style='color:#ff8906; '>></span>Delete<span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#ff8906; '>></span>
</pre>
<h3>Result:</h3>
<a href="javascript:void(false)" class="left primary button">Archive</a><a href="javascript:void(false)" class="middle button">Report Spam</a><a href="javascript:void(false)" class="right negative button">Delete</a>
</article>
<p>
You can also add the pill class to grouped buttons if preferred:
</p>
<article class="example">
<h3>Code:</h3>
<pre class="code"><span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"#"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"left primary pill button"</span><span style='color:#ff8906; '>></span>Archive<span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#ff8906; '>></span>
<span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"#"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"middle pill button"</span><span style='color:#ff8906; '>></span>Report Spam<span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#ff8906; '>></span>
<span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"#"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"right negative pill button"</span><span style='color:#ff8906; '>></span>Delete<span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#ff8906; '>></span>
</pre>
<h3>Result:</h3>
<a href="javascript:void(false)" class="left primary pill button">Archive</a><a href="javascript:void(false)" class="middle pill button">Report Spam</a><a href="javascript:void(false)" class="right negative pill button">Delete</a>
</article>
</section>
<section class="even">
<h2>Buttons with icons</h2>
<p>
CSS3 Buttons supports a wide range of icons that can easily be added to any button by adding a <code>span</code> tag inside the anchor tag
with the class of <code>.icon</code> and any one of the provided icon classes:
</p>
<article class="example">
<h3>Code:</h3>
<pre class="code"><span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"#"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"button"</span><span style='color:#ff8906; '>></span><span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>span</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"magnifier icon"</span><span style='color:#ff8906; '>></span><span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>span</span><span style='color:#ff8906; '>></span>Search<span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#ff8906; '>></span>
</pre>
<h3>Result:</h3>
<a href="javascript:void(false)" class="button"><span class="magnifier icon"></span>Search</a>
</article>
<p>Here is a list of all the supported icon classes:</p>
<article class="example">
<table>
<thead>
<tr>
<th>Class</th>
<th>Example</th>
</tr>
</thead>
<tr>
<td><code>.book</code></td>
<td><a href="javascript:void(false)" class="button"><span class="book icon"></span>View Log</a></td>
</tr>
<tr>
<td><code>.calendar</code></td>
<td><a href="javascript:void(false)" class="button"><span class="calendar icon"></span>Add to Calendar</a></td>
</tr>
<tr>
<td><code>.chat</code></td>
<td><a href="javascript:void(false)" class="button"><span class="chat icon"></span>Start Chat</a></td>
</tr>
<tr>
<td><code>.check</code></td>
<td><a href="javascript:void(false)" class="button"><span class="check icon"></span>Approve Registration</a></td>
</tr>
<tr>
<td><code>.clock</code></td>
<td><a href="javascript:void(false)" class="button"><span class="clock icon"></span>Register Work Time</a></td>
</tr>
<tr>
<td><code>.cog</code></td>
<td><a href="javascript:void(false)" class="button"><span class="cog icon"></span>Settings</a></td>
</tr>
<tr>
<td><code>.comment</code></td>
<td><a href="javascript:void(false)" class="button"><span class="comment icon"></span>Add Comment</a></td>
</tr>
<tr>
<td><code>.cross</code></td>
<td><a href="javascript:void(false)" class="negative button"><span class="cross icon"></span>Remove Item</a></td>
</tr>
<tr>
<td><code>.downarrow</code></td>
<td><a href="javascript:void(false)" class="button"><span class="downarrow icon"></span>Move Down</a></td>
</tr>
<tr>
<td><code>.fork</code></td>
<td><a href="javascript:void(false)" class="button"><span class="fork icon"></span>Create Branch</a></td>
</tr>
<tr>
<td><code>.heart</code></td>
<td><a href="javascript:void(false)" class="button"><span class="heart icon"></span>Add to Favorites</a></td>
</tr>
<tr>
<td><code>.home</code></td>
<td><a href="javascript:void(false)" class="button"><span class="home icon"></span>Back to Frontpage</a></td>
</tr>
<tr>
<td><code>.key</code></td>
<td><a href="javascript:void(false)" class="button"><span class="key icon"></span>Password Protect</a></td>
</tr>
<tr>
<td><code>.leftarrow</code></td>
<td><a href="javascript:void(false)" class="button"><span class="leftarrow icon"></span>Move Left</a></td>
</tr>
<tr>
<td><code>.lock</code></td>
<td><a href="javascript:void(false)" class="button"><span class="lock icon"></span>Lock Article</a></td>
</tr>
<tr>
<td><code>.loop</code></td>
<td><a href="javascript:void(false)" class="button"><span class="loop icon"></span>Resend Message</a></td>
</tr>
<tr>
<td><code>.magnifier</code></td>
<td><a href="javascript:void(false)" class="button"><span class="magnifier icon"></span>Search</a></td>
</tr>
<tr>
<td><code>.mail</code></td>
<td><a href="javascript:void(false)" class="button"><span class="mail icon"></span>Send Newsletter</a></td>
</tr>
<tr>
<td><code>.move</code></td>
<td><a href="javascript:void(false)" class="button"><span class="move icon"></span>Move</a></td>
</tr>
<tr>
<td><code>.pen</code></td>
<td><a href="javascript:void(false)" class="button"><span class="pen icon"></span>Edit Post</a></td>
</tr>
<tr>
<td><code>.pin</code></td>
<td><a href="javascript:void(false)" class="button"><span class="pin icon"></span>Pin to Map</a></td>
</tr>
<tr>
<td><code>.plus</code></td>
<td><a href="javascript:void(false)" class="button"><span class="plus icon"></span>Add Post</a></td>
</tr>
<tr>
<td><code>.reload</code></td>
<td><a href="javascript:void(false)" class="button"><span class="reload icon"></span>Reload Page</a></td>
</tr>
<tr>
<td><code>.rightarrow</code></td>
<td><a href="javascript:void(false)" class="button"><span class="rightarrow icon"></span>Move Right</a></td>
</tr>
<tr>
<td><code>.rss</code></td>
<td><a href="javascript:void(false)" class="button"><span class="rss icon"></span>Subscribe to RSS Feed</a></td>
</tr>
<tr>
<td><code>.tag</code></td>
<td><a href="javascript:void(false)" class="button"><span class="tag icon"></span>Add Tag</a></td>
</tr>
<tr>
<td><code>.trash</code></td>
<td><a href="javascript:void(false)" class="negative button"><span class="trash icon"></span>Delete Post</a></td>
</tr>
<tr>
<td><code>.unlock</code></td>
<td><a href="javascript:void(false)" class="button"><span class="unlock icon"></span>Unlock Article</a></td>
</tr>
<tr>
<td><code>.uparrow</code></td>
<td><a href="javascript:void(false)" class="button"><span class="uparrow icon"></span>Move Up</a></td>
</tr>
<tr>
<td><code>.user</code></td>
<td><a href="javascript:void(false)" class="button"><span class="user icon"></span>Add New User</a></td>
</tr>
</table>
</article>
</section>
<section class="odd">
<h2>Big buttons</h2>
<p>
If you wish to emphasize a specific action you can add the <code>.big</code> class to make a more prominent <em>call-to-action</em>
button:
</p>
<article class="example">
<h3>Code:</h3>
<pre class="code"><span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>a</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"#"</span> class<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"big button"</span><span style='color:#ff8906; '>></span>Create Project<span style='color:#ff8906; '></</span><span style='color:#e66170; font-weight:bold; '>a</span><span style='color:#ff8906; '>></span>
</pre>
<h3>Result:</h3>
<a href="javascript:void(false)" class="big button">Create Project</a>
</article>
</section>
<section class="even">
<h2>Browser compatibility</h2>
<p>
CSS3 Buttons works in all major browsers
</p>
<p class="notice">
<strong>Note:</strong> Some CSS3 features used in CSS3 Buttons is not supported in Internet Explorer browsers! (IE 8 and under)
</p>
</section>
<section class="odd">
<h2>Installation</h2>
<ol>
<li>Drop <code>css3buttons.css</code> in your stylesheets folder</li>
<li>Drop <code>css3buttons_backgrounds.png</code> and <code>css3buttons_icons.png</code> in your images folder</li>
<li>Link to <code>css3buttons.css</code> in the head section of your HTML page (<em>see code example below</em>)</li>
</ol>
<article class="example">
<h3>Code:</h3>
<pre class="code"><span style='color:#ff8906; '><</span><span style='color:#e66170; font-weight:bold; '>link</span> rel<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"stylesheet"</span> href<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"stylesheets/css3buttons.css"</span> media<span style='color:#d2cd86; '>=</span><span style='color:#00c4c4; '>"screen"</span><span style='color:#ff8906; '>></span>
</pre>
</article>
<p class="notice">
CSS3 Buttons expects that some kind of CSS reset is in place in your project, otherwise the look might not be, as seen here
</p>
</section>
<section class="even">
<h2>License</h2>
<h3>The <a href="http://unlicense.org/">Unlicense</a>:</h3>
<blockquote>
<p>
This is free and unencumbered software released into the public domain.
</p>
<p>
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
</p>
<p>
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
</p>
<p>
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
</p>
<p>
For more information, please refer to <<a href="http://unlicense.org/">http://unlicense.org/</a>>
</p>
</blockquote>
</section>
<section class="odd">
<h2>Shout-Outs</h2>
<ul>
<li>Thanks to <a href="http://github.com">GitHub</a> and <a href="http://davidwalsh.name/github-css">David Walsh</a> for inspiration!</li>
<li>Icons used in CSS3 Buttons are from the excellent <a href="http://somerandomdude.com/projects/iconic/">Iconic pack</a> by <a href="http://somerandomdude.com/">some random dude</a>!</li>
</ul>
</section>
<section class="even">
<h2>Contact</h2>
<h3>Found a Bug?</h3>
<p>
Please create a <a href="https://github.com/michenriksen/css3buttons/issues" target="_blank">ticket on GitHub</a> With a description of the problem, browser and operating system information and how to reproduce the problem.
</p>
<h3>Need Help?</h3>
<p>
You can send me a private message on <a href="https://github.com/michenriksen/" target="_blank">GitHub</a> and I'll do my best to help you.
</p>
</section>
</div>
<footer>
<a href="http://css3buttons.michaelhenriksen.dk">CSS3 Buttons</a> is created by <a href="http://michaelhenriksen.dk" title="Website of Michael Henriksen">Michael Henriksen</a> · <a href="http://twitter.com/michenriksen">Follow me on twitter</a>
</footer>
</div>
<a href="https://github.com/michenriksen/css3buttons" target="_blank" title="CSS3 Buttons on GitHub"><img class="ribbon" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" /></a>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-10676126-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>