forked from ubuwaits/css3-buttons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (105 loc) · 3.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CSS3 buttons / ubuwaits.github.com/css3-buttons</title>
<meta name="description" content="A collection of CSS3 buttons by Chad Mazzola">
<link rel="stylesheet" href="css/screen.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/buttons.css" type="text/css" media="screen">
</head>
<body>
<div class="container">
<h1>CSS3 buttons</h1>
<p class="intro">This is a collection of buttons that show what is possible using CSS3 while also maintaining the simplest possible markup. They look best in WebKit-based browsers, almost as good in Firefox, with all other browsers falling back to a less-styled button. If you use these buttons in the wild, <a href="mailto:[email protected]">drop me a note</a> and let me know.</p>
<p class="where intro">The latest code is located at: <a href="http://github.com/ubuwaits/css3-buttons">http://github.com/ubuwaits/css3-buttons</a></p>
<div class="button-collection">
<div class="button-info">
<h2>Classic buttons</h2>
<p>This is the original set of buttons, showing a variety of CSS3 styles in different combinations. Study the code, then adjust to fit the context of where it's used.</p>
</div>
<ul class="column">
<li>
<button class="minimal">Minimal</button>
</li>
<li>
<button class="clean-gray">Clean Gray</button>
</li>
<li>
<button class="cupid-green">Cupid Green</button>
</li>
<li>
<button class="cupid-blue">Cupid Blue</button>
</li>
<li>
<button class="blue-pill">Blue Pill</button>
</li>
<li>
<button class="dribbble">Dribbble</button>
</li>
<li>
<button class="slick-black">Slick Black</button>
</li>
<li>
<button class="thoughtbot">thoughtbot</button>
</li>
<li>
<button class="punch">Punch</button>
</li>
<li>
<button class="blue-candy">Blue Candy</button>
</li>
<li>
<button class="purple-candy">Purple Candy</button>
</li>
<li>
<button class="shiny-blue">Shiny Blue</button>
</li>
<li>
<button class="download-itunes">Download iTunes</button>
</li>
<li>
<button class="skip">Skip</button>
</li>
<li>
<div class="indent"><button class="minimal-indent">Minimal Indent</button></div>
</li>
</ul>
</div>
<div class="button-collection">
<div class="button-info">
<h2>Extended with Iconic</h2>
<p>This set extends the functionality of the classic button set using icons embedded via @font-face. I am using P.J. Onori's free icon set, <a href="http://somerandomdude.com/projects/iconic/">Iconic</a>. You can read more about this technique on <a href="http://somerandomdude.com/articles/design-technology/font-embedding-icons/">his blog</a>.</p>
</div>
<ul class="column">
<li>
<button class="minimal check-alt">Minimal</button>
</li>
<li>
<button class="dribbble heart">Dribbble</button>
</li>
<li>
<button class="blue-pill chat">Blue Pill</button>
</li>
</ul>
</div>
<div class="button-collection">
<div class="button-info">
<h2>WebKit experimental</h2>
<p>Proof of concept buttons using WebKit-only features.</p>
</div>
<ul class="column">
<li>
<button class="webkit-badge">Quit!</button>
</li>
<li>
<button class="webkit-seal">Approve!</button>
</li>
<li>
<button class="webkit-check">Accept</button>
</li>
</ul>
</div>
<p class="credit">Maintained by <a href="http://hellohappy.org/">Chad Mazzola</a> with inspiration from across the internet.</p>
</div>
</body>
</html>