forked from nikohoffren/kiss-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
386 lines (347 loc) · 13.7 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>KISS - Keep It Simple Stylesheets</title>
<link rel="stylesheet" href="styles.css" />
<script src="index.js" defer></script>
<script src="/utils/toggle-button.js" defer></script>
</head>
<body>
<div class="text-center mb-1">
<h1 class="header header--large header--secondary">
Welcome to KISS
</h1>
<p>
KISS is a simple, lightweight CSS framework designed for ease of
use. Below are some examples of components you can build using
KISS.
</p>
<br />
<!-- Component examples -->
<!-- Header Components -->
<h1 class="header header--large">Large Header</h1>
<h2 class="header header--medium header--primary">
Medium Primary Color Header
</h2>
<h3 class="header header--small header--secondary">
Small Secondary Color Header
</h3>
<!-- Button Components -->
<div class="mt-2">
<a href="#" class="button">This is a normal button</a>
<a href="#" class="button button--gradient-primary"
>Gradient Primary Button</a
>
<a href="#" class="button button--gradient-secondary"
>Gradient Secondary Button</a
>
<a href="#" class="button button--gradient-accent"
>Gradient Accent Button</a
>
<a href="#" class="button button--large shadow-5"
>Large Button</a
>
<a href="#" class="button button--small button--secondary"
>Small Secondary Button</a
>
<a href="#" class="button button--accent"
>Accent Color Button</a
>
<a href="#" class="button button--outlined">Outlined Button</a>
<a href="#" class="button button--rounded">Rounded Button</a>
<a href="#" class="m-3 btn-floating button pulse shadow-3">
<i class="material-icons">menu</i>
</a>
<a href="#" class="m-3 btn-floating button button--large pulse">
<i class="material-icons">cloud</i>
</a>
<a
href="#"
class="m-3 btn-floating button button--large cyan pulse"
>
<i class="material-icons">edit</i>
</a>
</div>
<!-- Card Component -->
<div class="card">
<h2 class="card-header">Card Header</h2>
<p class="card-body">
This is some card content. It's a brief description of the
content on the card.
</p>
</div>
<!-- Navbar Components -->
<div class="navbar">
<div class="container">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
</div>
<br />
<div class="side-navbar">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<!-- Container with a small border radius -->
<div class="container border-radius-sm">
<h2>Container with small border radius</h2>
<p>This container has a small border radius applied to it.</p>
</div>
<!-- Container with a medium border radius -->
<div class="container border-radius-md">
<h2>Container with medium border radius</h2>
<p>This container has a medium border radius applied to it.</p>
</div>
<!-- Container with a large border radius -->
<div class="container border-radius-lg">
<h2>Container with large border radius</h2>
<p>This container has a large border radius applied to it.</p>
</div>
<!-- Element that is a circle -->
<div class="center">
<div
class="border-radius-circle"
style="
width: 100px;
height: 100px;
background-color: var(--primary-color);
"
></div>
</div>
<!-- Button with pill-shaped border radius -->
<button class="button border-radius-pill">
Pill-shaped button
</button>
<!-- Form Input Component -->
<div class="container mt-2">
<h2 class="header header--medium">Contact Form</h2>
<form>
<div class="form-group">
<label for="name">Name:</label>
<input
type="text"
id="name"
class="form-input"
placeholder="Enter your name"
/>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input
type="email"
id="email"
class="form-input"
placeholder="Enter your email"
/>
</div>
<div class="form-group">
<label for="select">Select Option:</label>
<select id="select" class="form-select">
<option value="option1">Option 1</option>
<option value="option2">Option 2</option>
<option value="option3">Option 3</option>
</select>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea
id="message"
class="form-textarea"
placeholder="Enter your message"
></textarea>
</div>
<div class="form-group">
<input
type="checkbox"
id="checkbox"
class="form-checkbox"
/>
<label for="checkbox"
>I agree to the terms and conditions</label
>
</div>
<div class="form-group">
<input
type="radio"
id="radio1"
name="radio"
class="form-radio"
/>
<label for="radio1">Option 1</label>
<input
type="radio"
id="radio2"
name="radio"
class="form-radio"
/>
<label for="radio2">Option 2</label>
</div>
<div class="form-group">
<button type="submit" class="form-button">
Submit
</button>
</div>
</form>
</div>
<!-- Helpers -->
<div class="hide-on-small-only">
<!-- Content hidden on mobile devices -->
<h1>Content hidden on mobile devices</h1>
</div>
<div class="show-on-medium-and-up">
<!-- Content shown on tablet and larger screen sizes -->
<h1>Content shown on tablet and larger screen sizes</h1>
</div>
<a id="toggle-button" href="#!" class="button mb-1"
>Toggle Buttons</a
>
<div id="buttons-container" class="mb-1 scale-transition scale-out">
<a href="#!" class="button">Button 1</a>
<a href="#!" class="button">Button 2</a>
<a href="#!" class="button">Button 3</a>
</div>
<!-- Example of a menu with ARIA attributes -->
<nav role="navigation" aria-label="Main Menu">
<ul class="menu">
<li role="menuitem" tabindex="0">
<a href="#">Home</a>
</li>
<li role="menuitem" tabindex="0">
<a href="#">About</a>
</li>
<li role="menuitem" tabindex="0">
<a href="#">Services</a>
</li>
<li role="menuitem" tabindex="0">
<a href="#">Contact</a>
</li>
</ul>
</nav>
<!-- Example of a toggle button with ARIA attributes -->
<button
class="toggle-button"
aria-label="Toggle"
aria-expanded="false"
>
<span class="toggle-icon"></span>
</button>
<table class="table-striped table-centered">
<thead>
<tr>
<th>Name</th>
<th>Item Name</th>
<th>Item Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Alvin</td>
<td>Eclair</td>
<td>$0.87</td>
</tr>
<tr>
<td>Alan</td>
<td>Jellybean</td>
<td>$3.76</td>
</tr>
<tr>
<td>Jonathan</td>
<td>Lollipop</td>
<td>$7.00</td>
</tr>
</tbody>
</table>
<div class="table-responsive">
<table class="table-centered">
<thead>
<tr>
<th>Name</th>
<th>Item Name</th>
<th>Item Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Alvin</td>
<td>Eclair</td>
<td>$0.87</td>
</tr>
<tr>
<td>Alan</td>
<td>Jellybean</td>
<td>$3.76</td>
</tr>
<tr>
<td>Jonathan</td>
<td>Lollipop</td>
<td>$7.00</td>
</tr>
</tbody>
</table>
</div>
<table class="table-highlighted table-centered mb-2">
<thead>
<tr class="highlighted">
<th>Name</th>
<th>Item Name</th>
<th>Item Price</th>
</tr>
</thead>
<tbody>
<tr class="highlighted">
<td>Alvin</td>
<td>Eclair</td>
<td>$0.87</td>
</tr>
<tr class="highlighted">
<td>Alan</td>
<td>Jellybean</td>
<td>$3.76</td>
</tr>
<tr class="highlighted">
<td>Jonathan</td>
<td>Lollipop</td>
<td>$7.00</td>
</tr>
</tbody>
<thead>
<tr class="highlighted">
<th>Name</th>
<th>Item Name</th>
<th>Item Price</th>
</tr>
</thead>
<tbody>
<tr class="highlighted">
<td>Alvin</td>
<td>Eclair</td>
<td>$0.87</td>
</tr>
<tr class="highlighted">
<td>Alan</td>
<td>Jellybean</td>
<td>$3.76</td>
</tr>
<tr class="highlighted">
<td>Jonathan</td>
<td>Lollipop</td>
<td>$7.00</td>
</tr>
</tbody>
</table>
<!-- Font-family classes -->
<h1 class="serif">This is a serif font</h1>
<p class="sans-serif">This is a sans-serif font</p>
<p class="monospace">This is a monospace font</p>
<p class="cursive">This is a cursive font</p>
<p class="fantasy">This is a fantasy font</p>
</div>
</body>
</html>