forked from nathansmith/formalize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
130 lines (125 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Formalize CSS - Demo</title>
<style>
body {
background: #fff;
color: #333;
font: 13px/1.5 Arial, sans-serif;
}
h1 {
font-size: 20px;
}
a {
color: #06c;
outline: 0;
}
a:hover {
color: #f60;
}
</style>
</head>
<body>
<h1>
Formalize CSS - Demo
</h1>
<p>
<a href="http://formalize.me/">Formalize home</a>
|
<a href="http://sonspring.com/journal/formalize-css">Blog post</a>
|
<a href="http://github.com/nathansmith/formalize/">GitHub repo</a>
</p>
<ul>
<li>
<a href="unstyled.html">Unstyled - Default</a>
</li>
</ul>
<p>
Demo with Dojo...
</p>
<ul>
<li>
<a href="dojo_demo.html">Normal</a>
</li>
<li>
<a href="dojo_disabled.html">Disabled</a>
</li>
<li>
<a href="dojo_errors.html">Errors</a>
</li>
</ul>
<p>
Demo with ExtJS...
</p>
<ul>
<li>
<a href="extjs_demo.html">Normal</a>
</li>
<li>
<a href="extjs_disabled.html">Disabled</a>
</li>
<li>
<a href="extjs_errors.html">Errors</a>
</li>
</ul>
<p>
Demo with jQuery...
</p>
<ul>
<li>
<a href="jquery_demo.html">Normal</a>
</li>
<li>
<a href="jquery_disabled.html">Disabled</a>
</li>
<li>
<a href="jquery_errors.html">Errors</a>
</li>
</ul>
<p>
Demo with MooTools...
</p>
<ul>
<li>
<a href="mootools_demo.html">Normal</a>
</li>
<li>
<a href="mootools_disabled.html">Disabled</a>
</li>
<li>
<a href="mootools_errors.html">Errors</a>
</li>
</ul>
<p>
Demo with Prototype...
</p>
<ul>
<li>
<a href="prototype_demo.html">Normal</a>
</li>
<li>
<a href="prototype_disabled.html">Disabled</a>
</li>
<li>
<a href="prototype_errors.html">Errors</a>
</li>
</ul>
<p>
Demo with YUI...
</p>
<ul>
<li>
<a href="yui_demo.html">Normal</a>
</li>
<li>
<a href="yui_disabled.html">Disabled</a>
</li>
<li>
<a href="yui_errors.html">Errors</a>
</li>
</ul>
</body>
</html>