-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
416 lines (408 loc) · 14.5 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <link rel="stylesheet" href="./src/bank/bank.css" /> -->
<link rel="stylesheet" href="./src/hackclub.css" />
<!-- <link rel="stylesheet" href="https://cloud-x52eok8sf-hack-club-bot.vercel.app/0hackclub.css" /> -->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/eilla1/hackclub.css@main/src/hackclub.min.css"> -->
<title>hackclub.css</title>
<link rel="icon" href="https://assets.hackclub.com/icon-rounded.svg" />
<meta property="og:url" content="https://css.hackclub.dev" />
<meta
name="description"
content="hackclub.css is a drop-in collection of CSS styles for Hack Club themed websites."
/>
<meta
name="theme-color"
content="#ec3750"
/>
</head>
<body>
<div id="top" class="page">
<header>
<h1>hackclub.css</h1>
<p>
hackclub.css is a classless CSS utility which applies the Hack Club
theme styles to a given HTML page. Color mode (light or dark) is automatically switched based on the system mode.
</p>
<a href="https://github.com/exu3/hackclub.css" target="_blank" rel="noreferrer"
><button type="button">GitHub</button></a
>
</header>
<section id="installation">
<h1>How to use</h1>
<p>Paste the following into the <code><head></code> of your HTML file.</p>
<pre><link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/exu3/hackclub.css@main/src/hackclub.min.css"></pre>
<p><strong>✨ Cool thing!</strong> Drag <a href="javascript:(function()%7Bvar%20body%20%3D%20document.getElementsByTagName('body')%5B0%5D%3Bscript%20%3D%20document.createElement('script')%3Bscript.type%3D%20'text%2Fjavascript'%3Bscript.src%3D%20'https%3A%2F%2Fcss.hackclub.dev%2Fswitcher.js'%3Bbody.appendChild(script)%7D)()">this bookmarklet</a> to your bookmarks bar to add a hackclub.css switcher to any site!</p>
</section>
<nav role="navigation">
<h1>What's on this page?</h1>
<ul>
<li>
<a href="#text">Text</a>
<ul>
<li><a href="#text__headings">Headings</a></li>
<li><a href="#text__paragraphs">Paragraphs</a></li>
<li><a href="#text__blockquotes">Blockquotes</a></li>
<li><a href="#text__lists">Lists</a></li>
<li><a href="#text__hr">Horizontal rules</a></li>
<li><a href="#text__tables">Tables</a></li>
<li><a href="#text__code">Code</a></li>
<li><a href="#text__inline">Inline elements</a></li>
</ul>
</li>
<li>
<a href="#embedded">Embedded content</a>
<ul>
<li><a href="#embedded__images">Images</a></li>
<li><a href="#embedded__audio">Audio</a></li>
<li><a href="#embedded__video">Video</a></li>
</ul>
</li>
<li>
<a href="#forms">Forms</a>
</li>
</ul>
</nav>
<main role="main">
<section id="text">
<h1>Text</h1>
<article id="text__headings">
<h1>Headings</h1>
<div>
<h1>Heading 1 (h1)</h1>
<h2>Heading 2 (h2)</h2>
<h3>Heading 3 (h3)</h3>
<h4>Heading 4 (h4)</h4>
<h5>Heading 5 (h5)</h5>
<h6>Heading 6 (h6)</h6>
</div>
<footer>
<p><a href="#top">[Top]</a></p>
</footer>
</article>
<article id="text__paragraphs">
<h1>Paragraphs</h1>
<div>
<p>
The Hacker Pasture is home to the Grazers, a group of pacifists
and sophists protected by the great Prophet Orpheus. Among the
rest, the Cow and the Goat are looked up to as dispensaries of
wisdom, though they have not advised in recent.
</p>
</div>
<footer>
<p><a href="#top">[Top]</a></p>
</footer>
</article>
<article id="text__blockquotes">
<h1>Blockquotes</h1>
<div>
<blockquote>
<p>
The States of Hugo have the advantage of more advanced
technology and infrastructure. The highest ranking in their
military hierarchy is Grand Postmaster. Making war upon them
is a mistake, as they are experts at delivering swift
retaliation.
</p>
<p>
The Ducktator and His Flock are flexible and nomadic. Often
will they occupy large bodies of water without warning. There
exists between them a flourishing economy, though their
currency to the outside world has little to no value, a lie
propagated by His Supremacy. The Flock's military sector is in
divisions of Mallards, the elite agents, Divers, who handle
reconnaissance, and the Dabblers, a main force. Self sacrifice
to take down aircraft is common.
</p>
<cite>Said the Hack Club Slack.</cite>
</blockquote>
</div>
<footer>
<p><a href="#top">[Top]</a></p>
</footer>
</article>
<article id="text__lists">
<h1>Lists</h1>
<div>
<h3>Definition list</h3>
<dl>
<dt>Definition List Title</dt>
<dd>This is a definition list division.</dd>
</dl>
<h3>Ordered List</h3>
<ol>
<li>Do the thing</li>
<li>
The other thing
<ol>
<li>Then this nested thing</li>
<li>Another nested thing</li>
</ol>
</li>
</ol>
<h3>Unordered List</h3>
<ul>
<li>When the cows are mooing</li>
<li>
When the cows are mooing
<ul>
<li>The rats are clapping</li>
<li>The potatoes are screaming</li>
</ul>
</li>
</ul>
</div>
<footer>
<p><a href="#top">[Top]</a></p>
</footer>
</article>
<article id="text__hr">
<h1>Here's a horizontal rule. (hr)</h1>
<div>
<hr />
</div>
<footer>
<p><a href="#top">[Top]</a></p>
</footer>
</article>
<article id="text__tables">
<h1>Tables</h1>
<table>
<caption>
Table Caption
</caption>
<thead>
<tr>
<th>Table Heading 1</th>
<th>Table Heading 2</th>
<th>Table Heading 3</th>
<th>Table Heading 4</th>
<th>Table Heading 5</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Table Footer 1</th>
<th>Table Footer 2</th>
<th>Table Footer 3</th>
<th>Table Footer 4</th>
<th>Table Footer 5</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>Table Cell 1</td>
<td>Table Cell 2</td>
<td>Table Cell 3</td>
<td>Table Cell 4</td>
<td>Table Cell 5</td>
</tr>
<tr>
<td>Table Cell 1</td>
<td>Table Cell 2</td>
<td>Table Cell 3</td>
<td>Table Cell 4</td>
<td>Table Cell 5</td>
</tr>
<tr>
<td>Table Cell 1</td>
<td>Table Cell 2</td>
<td>Table Cell 3</td>
<td>Table Cell 4</td>
<td>Table Cell 5</td>
</tr>
<tr>
<td>Table Cell 1</td>
<td>Table Cell 2</td>
<td>Table Cell 3</td>
<td>Table Cell 4</td>
<td>Table Cell 5</td>
</tr>
</tbody>
</table>
<footer>
<p><a href="#top">[Top]</a></p>
</footer>
</article>
<article id="text__code">
<h1>Code</h1>
<div>
<p><strong>Keyboard input (kbd):</strong> <kbd>Cmd</kbd></p>
<p>
<strong>Inline code (code):</strong>
<code><div>code</div></code>
</p>
<p>
<strong>Sample output (samp):</strong>
<samp>This is sample output from a computer program.</samp>
</p>
<h2>Pre-formatted text (pre)</h2>
<pre>
P R E F O R M A T T E D T E X T
! " # $ % & ' ( ) * + , - . /
0 1 2 3 4 5 6 7 8 9 : ; < = > ?
@ A B C D E F G H I J K L M N O
P Q R S T U V W X Y Z [ \ ] ^ _
` a b c d e f g h i j k l m n o
p q r s t u v w x y z { | } ~ </pre
>
</div>
<footer>
<p><a href="#top">[Top]</a></p>
</footer>
</article>
<article id="text__inline">
<h1>Inline elements</h1>
<div>
<a href="#fake">Get dinoed lol</a>.<br />
<strong>This is bold. Gadzooks!</strong><br />
<em>This sentence is italicized.</em><br />
The following word is underlined <u>eebydeeby</u>.<br />
<s>This text has a strikethrough</s>.<br />
The following word has a superscript: Wahoo<sup>TM</sup>.<br />
Subscripts also work: H<sub>2</sub>O.<br />
<small>Small text.</small><br />
</div>
<footer>
<p><a href="#top">[Top]</a></p>
</footer>
</article>
</section>
<section id="embedded">
<h1>Embedded content</h1>
<article id="embedded__images">
<h2>Images</h2>
<div>
<img
src="https://cloud-jl944nr65-hack-club-bot.vercel.app/004e072bbe1.png"
alt="Hack Club on GitHub."
/>
</div>
<footer>
<p><a href="#top">[Top]</a></p>
</footer>
</article>
<article id="embedded__audio">
<h2>Audio</h2>
<div>
<audio controls>
<source
src="https://cloud-73jat2wda-hack-club-bot.vercel.app/0getdinoed.mp3"
/>
</audio>
</div>
<footer>
<p><a href="#top">[Top]</a></p>
</footer>
</article>
<article id="embedded__video">
<h2>Video</h2>
<div>
<video controls>
<source
src="https://cloud-az7olqpvi-hack-club-bot.vercel.app/0report-form.mp4"
type="video/mp4"
/>
</video>
</div>
<footer>
<p><a href="#top">[Top]</a></p>
</footer>
</article>
</section>
<section id="forms">
<h1>Form elements</h1>
<form>
<fieldset id="forms__input">
<legend>Form</legend>
<p>
<label for="input__text">Text Input</label>
<input id="input__text" type="text" placeholder="Text Input" />
</p>
<p>
<label for="input__password">Password</label>
<input
id="input__password"
type="password"
placeholder="Type your Password"
/>
</p>
<p>
<label for="select">Select</label>
<select id="select">
<optgroup label="Option Group">
<option>Hack.</option>
<option>Hack?</option>
<option>Hack!</option>
</optgroup>
</select>
</p>
<p>
<label for="checkbox1"
><input
id="checkbox1"
name="checkbox"
type="checkbox"
checked="checked"
/>
Check this box if you agree.</label
>
</p>
<p>
<label for="radio1"
><input
id="radio1"
name="radio"
type="radio"
class="radio"
checked="checked"
/>
Tabs</label
><br />
<label for="radio2"
><input
id="radio2"
name="radio"
type="radio"
class="radio"
checked="checked"
/>
Spaces</label
>
<p>
<label for="in">How much???</label>
<input type="number" id="in" min="0" max="10" value="5" />
</p>
</p>
<p>
<label for="textarea">How goes it?</label><br />
<textarea
id="textarea"
rows="8"
cols="48"
placeholder="Enter your message here"
></textarea>
</p>
<p>
<input type="submit" value="Submit" />
<input type="reset" value="Reset" />
<input type="submit" value="Disabled Button" disabled />
</p>
</fieldset>
<p><a href="#top">[Top]</a></p>
</form>
</section>
</main>
<footer>
<p>
Edit this page on
<a href="https://github.com/exu3/hackclub.css">GitHub</a>.
</p>
</footer>
</div>
</body>
</html>