-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
194 lines (169 loc) · 5.92 KB
/
test.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>GravyUI v1.0</title>
<link href="gravyUI.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="gravyUI.js"></script>
</head>
<body>
<!-- FORM, FIELDSET, LEGEND, AND INPUT-->
<form>
<fieldset>
<legend>Input types</legend>
<input type="text" value="Input text"><br>
<input type="email" value="Email text"><br>
<input type="search" value="Search text"><br>
<input type="hidden" value="Hidden text">
<input type="password" value="Password text">
</fieldset>
</form>
<br><br>
<!-- TEXTAREA -->
<textarea>This is a textarea</textarea>
<br><br>
<!-- BUTTON -->
<button>Button</button><br>
<a class="button" href="#">Button</a>
<input type="submit" value="Submit">
<br><br>
<!-- FILE -->
<div class="file">
<input type="file">
<input type="text" placeholder="Upload file...">
</div>
<br><br>
<!-- RADIO -->
<input type="radio" name="radio" id="rad1" value="Item 1"><label for="rad1">Item 1</label><br>
<input type="radio" name="radio" id="rad2" value="Item 2" checked><label for="rad2">Item 2</label><br>
<input type="radio" name="radio" id="rad3" value="Item 3"><label for="rad3">Item 3</label>
<br><br>
<!-- CHECKBOX -->
<input type="checkbox" name="checkbox" id="check1" value="Item 1" checked><label for="check1">Item 1</label><br>
<input type="checkbox" name="checkbox" id="check2" value="Item 2"><label for="check2">Item 2</label><br>
<input type="checkbox" name="checkbox" id="check3" value="Item 3" checked><label for="check3">Item 3</label>
<br><br>
<!-- PROGRESS BAR -->
<div class="progressBar">
<div class="progress" style="width: 68%;">
<span class="desc1">this is <b>68%</b></span>
</div>
<div class="remainder" style="width: 32%;">
<span class="desc2"> of the total</span>
</div>
</div>
<br><br>
<!-- METER -->
<div class="meter">
<div class="progress" style="width: 68%;"></div>
<div class="remainder" style="width: 32%;"></div>
</div><br>
<div class="meter vertical">
<div class="remainder" style="height: 32%;"></div>
<div class="progress" style="height: 68%;"></div>
</div>
<br><br>
<!-- SLIDER -->
<div class="range">
<div class="bar"></div>
<div class="slide" style="left: 38%;"></div>
</div><br>
<div class="range vertical">
<div class="bar"></div>
<div class="slide" style="bottom: 38%;"></div>
</div>
<br><br>
<!-- WINDOW -->
<div class="window movable">
<div class="titleBar">
<h3>Title of the window</h3>
<span class="close">x</span>
</div>
<div class="windowContent">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque quam purus, faucibus a rhoncus a, pretium eu lacus. Vestibulum ligula nunc, gravida nec consequat vel, tempus at lorem. Donec in quam nec dui pellentesque mattis. Donec feugiat odio eu leo feugiat lacinia. Sed a arcu tortor. Curabitur in est odio, sit amet sodales mauris. Suspendisse potenti. Cras ullamcorper dapibus dictum. Nulla vitae eros urna, sed pretium dolor. Integer id ultrices nulla. Praesent ut orci nunc. Quisque diam arcu, gravida vel molestie vitae, convallis a ipsum. Proin tristique leo nisi. Morbi pretium lacinia est eu suscipit. Curabitur et nisi in enim convallis adipiscing. Curabitur bibendum rhoncus lacus, vel imperdiet velit convallis sed.</p>
</div>
<div class="buttons">
<button>OK</button>
</div>
</div>
<br><br>
<!-- TABLE -->
<table class="table">
<thead>
<tr>
<th data-sort="string">Field 1</th>
<th data-sort="string">Field 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Value 1</td>
<td>Value 1 Description</td>
</tr>
<tr>
<td>Value 2</td>
<td>Value 2 Description</td>
</tr>
<tr>
<td>Value 3</td>
<td>Value 3 Description</td>
</tr>
<tr>
<td>Value 4</td>
<td>Value 4 Description</td>
</tr>
<tr>
<td>Value 5</td>
<td>Value 5 Description</td>
</tr>
</tbody>
</table>
<br><br>
<!-- ACCORDION -->
<div class="accordion">
<div class="header">
<ul class="notList">
<li>Field 1</li>
<li>Field 2</li>
</ul>
</div>
<div class="itemHead">
<ul class="notList">
<li><span class="rightArrow"></span>Value 1</li>
<li>Value 1 Description</li>
</ul>
</div>
<div class="itemFold">
<ul class="notList">
<li>Fold 1</li>
<li>Fold 1 Description</li>
</ul>
</div>
<div class="itemHead">
<ul class="notList">
<li><span class="rightArrow"></span>Value 2</li>
<li>Value 2 Description</li>
</ul>
</div>
<div class="itemFold">
<ul class="notList">
<li>Fold 2</li>
<li>Fold 2 Description</li>
</ul>
</div>
<div class="itemHead">
<ul class="notList">
<li><span class="rightArrow"></span>Value 3</li>
<li>Value 3 Description</li>
</ul>
</div>
<div class="itemFold">
<ul class="notList">
<li>Fold 3</li>
<li>Fold 3 Description</li>
</ul>
</div>
</div>
</body>
</html>