-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
523 lines (519 loc) · 24.4 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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-control" content="private">
<title>Scott's Stylesheets</title>
<link rel="shortcut icon" href="images/swimming-george.png">
<link rel="stylesheet" href="css/variables.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/content.css">
<link rel="stylesheet" href="css/classes.css">
<link rel="stylesheet" href="css/custom.css">
<script type="text/javascript" src="js/functions.js"></script>
<script type="text/javascript">
window.onload = function() {
defaultCookie("darkMode", 0);
defaultCookie("colourThemeHue", 20);
var darkMode = parseInt(getCookieValue("darkMode")), themeColourHue = parseInt(getCookieValue("colourThemeHue"));
if(darkMode == 1) document.body.classList.add("dark");
document.querySelector("[name='toggle-dark-mode']").addEventListener("click", () => {
darkMode = !darkMode;
document.body.classList.toggle("dark");
setCookie("darkMode", darkMode ? 1 : 0);
});
document.addEventListener("keydown", function(e) {
if(e.ctrlKey) {
darkMode = !darkMode;
document.body.classList.toggle("dark");
setCookie("darkMode", darkMode ? 1 : 0);
}
});
if(themeColourHue != null) document.documentElement.style.setProperty("--col-theme-hue", themeColourHue);
else themeColourHue = getComputedStyle(document.documentElement).getPropertyValue("--col-theme-hue");
info('Keydown CTRL = toggle dark mode');
setDropDowns();
//setAllImgIntrinsicWidth();
setInterval(function() {
themeColourHue = themeColourHue >= 359 ? 0 : parseInt(themeColourHue) + 1;
document.documentElement.style.setProperty("--col-theme-hue", `${themeColourHue}`);
setCookie("colourThemeHue", themeColourHue);
}, 500);
};
</script>
</head>
<body>
<side-nav>
<p class="py-1 font-weight-bold text-middle">CSS Files</p>
<a href="#variables">Variables</a>
<a href="#layout">Layout</a>
<div class="drop-down">
<div class="drop-down-inside">
<a href="#quotes">Quotes</a>
<a href="#content-images">Images</a>
<a href="#forms">Forms</a>
<a href="#lists">Lists</a>
<a href="#tables">Tables</a>
</div>
<a class="drop-down-button" href="#content">Content</a>
</div>
<div class="drop-down">
<div class="drop-down-inside">
<a href="#alignment">Alignment</a>
<a href="#box">Box</a>
<a href="#line-clamp">Line Clamp</a>
<a href="#row">Row</a>
<a href="#text">Text</a>
</div>
<a class="drop-down-button" href="#classes">Classes</a>
</div>
<a href="#custom">Custom</a>
<p class="py-1 font-weight-bold text-middle">JavaScript File</p>
<div class="drop-down">
<div class="drop-down-inside">
<a href="#console">Console</a>
<a href="#cookies">Cookies</a>
<a href="#functions-images">Images</a>
</div>
<a class="drop-down-button" href="#functions">Functions</a>
</div>
</side-nav>
<main class="container">
<h1>Scott's Stylesheets</h1>
<p>The framework is divided into 5 CSS files and 1 JavaScript file (see sidebar).</p>
<hr>
<section id="variables">
<div class="flex mb-1">
<h2 class="mb-0">Variables</h2>
<button class="ml-a" type="button" name="toggle-dark-mode">Toggle Dark Mode</button>
</div>
<p>The <code>variables.css</code> file initialises variables and values for the framework; this includes colours for the theme. The base colours are black, white and a chosen colour. For the sake of this demo, you can see the chosen colour changing in real-time. This implementation simplifies adding themes such as dark mode (click toggle dark mode to see effect).</p>
<h3>Colour Scheme</h3>
<p>I use a simple black and white colour scheme with a primary user-defined theme colour set via the <code>--col-theme-hue</code> property located on the <code>:root</code> element. You can see the hue property increment by the second.</p>
<table>
<thead>
<tr>
<th>Colour</th>
<th>Property</th>
<th>Background Class</th>
<th>Color Class</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>Black (Constant)</td>
<td><var>--col-const-black</var></td>
<td><code>.bg-const-black</code></td>
<td><code>.text-const-black</code></td>
<td class="bg-const-black text-const-white">#111</td>
</tr>
<tr>
<td>White (Constant)</td>
<td><var>--col-const-white</var></td>
<td><code>.bg-const-white</code></td>
<td><code>.text-const-white</code></td>
<td class="bg-const-white text-const-black">#FFF</td>
</tr>
<tr>
<td>Black</td>
<td><var>--col-black</var></td>
<td><code>.bg-black</code></td>
<td><code>.text-black</code></td>
<td class="bg-black text-white">#111</td>
</tr>
<tr>
<td>White</td>
<td><var>--col-white</var></td>
<td><code>.bg-white</code></td>
<td><code>.text-white</code></td>
<td class="bg-white text-black">#FFF</td>
</tr>
<tr class="bg-theme-light">
<td class="text-const-white">Theme (Light)</td>
<td class="text-const-white"><var>--col-theme-light</var></td>
<td class="text-const-white"><code>.bg-theme-light</code></td>
<td class="text-const-white"><code>.text-theme-light</code></td>
<td class="text-const-white">n, 75%, 55%</td>
</tr>
<tr class="bg-theme">
<td class="text-const-white">Theme</td>
<td class="text-const-white"><var>--col-theme</var></td>
<td class="text-const-white"><code>.bg-theme</code></td>
<td class="text-const-white"><code>.text-theme</code></td>
<td class="text-const-white">n, 70%, 50%</td>
</tr>
<tr class="bg-theme-dark">
<td class="text-const-white">Theme (Dark)</td>
<td class="text-const-white"><var>--col-theme-dark</var></td>
<td class="text-const-white"><code>.bg-theme-dark</code></td>
<td class="text-const-white"><code>.text-theme-dark</code></td>
<td class="text-const-white">n, 65%, 45%</td>
</tr>
</tbody>
</table>
</section>
<hr>
<section id="layout">
<h2>Layout</h2>
<p>The <code>layout.css</code> file determines the position of elements.</p>
<h3>Side Nav</h3>
<article>
<p>The <code>side-nav</code> element .</p>
</article>
</section>
<hr>
<section id="content">
<h2>Content</h2>
<p>The <code>content.css</code> file determines how elements cascade (i.e. padding, margin), not their layout or position.</p>
<h3 id="quotes">Quotes</h3>
<article>
<h4>Blockquote</h4>
<p>The <code>blockquote</code> element is for block quotes like so:</p>
<blockquote cite="http://">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</blockquote>
<h4>Q</h4>
<p>The <code>q</code> or <i>quote</i> element is for inline quotes like so: <q cite="">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do.</q></p>
</article>
<div class="flex mb-1">
<h3 id="content-images" class="mb-0">Images</h3>
<a class="button" href="#functions-images">Go To Image Functions</a>
</div>
<article>
<p>The <code>image</code> element.</p>
<figure>
<img src="images/splhcb.webp" alt="Placeholder">
<figcaption>This is a figure caption.</figcaption>
</figure>
</article>
<h3 id="forms">Forms</h3>
<article>
<form>
<fieldset>
<legend>Fieldset Legend</legend>
<div class="flex mb-1">
<input id="checkbox-input" type="checkbox" name="checkbox" value="checkbox" checked>
<label for="checkbox-input">Checkbox</label>
</div>
<div class="flex mb-1">
<input id="checkbox-disabled-input" type="checkbox" name="checkbox-disabled" value="checkbox-disabled" disabled>
<label for="checkbox-disabled-input">Checkbox (disabled)</label>
</div>
<div class="flex mb-1">
<input id="checkbox-readonly-input" type="checkbox" name="checkbox-readonly" value="checkbox-readonly" readonly>
<label for="checkbox-readonly-input">Checkbox (readonly)</label>
</div>
<div class="flex mb-1">
<label for="color-input">Colour</label>
<input id="color-input" type="color" name="color">
</div>
<div class="flex mb-1">
<label for="date-input">Date</label>
<input id="date-input" type="date" name="date">
</div>
<div class="flex mb-1">
<label for="datetime-local-input">Datetime Local</label>
<input id="datetime-local-input" type="datetime-local" name="datetime-local">
</div>
<div class="flex mb-1">
<label for="email-input">Email</label>
<input id="email-input" type="email" name="email" placeholder="[email protected]">
</div>
<div class="flex mb-1">
<label for="file-input">File</label>
<input id="file-input" type="file" name="file">
</div>
<div id="list-input-div">
<div class="flex mb-1">
<label for="list-input">List</label>
<input id="list-input" name="list" list="list-items" placeholder="List Item A">
</div>
<datalist id="list-items">
<option value="List Item A"/>
<option value="List Item B"/>
<option value="List Item C"/>
</datalist>
</div>
<div class="flex mb-1">
<label for="month-input">Month</label>
<input id="month-input" type="month" name="month">
</div>
<div class="flex mb-1">
<label class="mb-1" for="text">Number</label>
<input id="number-input" type="number" name="number" placeholder="42">
<p class="input-suffix">px</p>
</div>
<div class="flex mb-1">
<label for="password">Password</label>
<input id="password" type="password" name="password" placeholder="SecurePW2022!;">
</div>
<p>Radio:</p>
<div class="flex mb-1">
<input id="radio-a-input" type="radio" name="radio" value="a">
<label for="radio-a-input">Radio A</label>
<input id="radio-b-input" type="radio" name="radio" value="b">
<label for="radio-b-input">Radio B</label>
</div>
<div class="flex mb-1">
<label for="range-input">Range</label>
<input id="range-input" type="range" name="range">
</div>
<div class="flex mb-1">
<label for="tel-input">Telephone</label>
<p class="input-prefix">+(44)</p>
<input id="tel-input" type="tel" name="tel" placeholder="7388933973">
</div>
<div class="flex mb-1">
<label for="text">Text</label>
<input id="text" type="text" name="text" placeholder="Placeholder...">
</div>
<div class="flex mb-1">
<label for="time-input">Time</label>
<input id="time-input" type="time" name="time">
</div>
<div class="flex mb-1">
<label for="url-input">URL</label>
<input id="url-input" type="url" name="url" placeholder="https://www.example.com">
</div>
<div class="flex mb-1">
<label for="week-input">Week</label>
<input id="week-input" type="week" name="week">
</div>
<div class="floating-label mb-1">
<label class="mb-1" for="textarea">Textarea with floating-label</label>
<textarea id="textarea" name="textarea" placeholder="This is placeholder text..."></textarea>
</div>
<div class="flex mb-1">
<label for="select-1-input">Select</label>
<select id="select-1-input" name="select-1">
<optgroup label="Option Group A">
<option value="A1" selected>Option A1</option>
<option value="A2" disabled>Option A2</option>
</optgroup>
<optgroup label="Option Group B">
<option value="B1">Option B1</option>
</optgroup>
</select>
</div>
<div class="mb-1">
<label class="mb-1" for="select-2-input">Select (multiple)</label>
<select id="select-2-input" name="select-2" multiple>
<optgroup label="Option Group A">
<option value="A1" selected>Option A1</option>
<option value="A2">Option A2</option>
</optgroup>
<optgroup label="Option Group B">
<option value="B1" disabled>Option B1</option>
</optgroup>
</select>
</div>
<div id="button-inputs" class="flex">
<input type="button" name="button" value="Button">
<input type="reset" name="reset" value="Reset">
<input type="submit" name="submit" value="Submit" onclick="return false;">
</div>
</fieldset>
</form>
</article>
<h3 id="lists">Lists</h3>
<article>
<div class="row">
<div class="col-12 md_col-4">
<p>Lettered list:</p>
<ol type="A">
<li>List item</li>
<li>Another item</li>
</ol>
</div>
<div class="col-12 md_col-4">
<p>Ordered list:</p>
<ol>
<li>List item</li>
<li>Another item</li>
</ol>
</div>
<div class="col-12 md_col-4">
<p>Unordered list:</p>
<ul>
<li>List item</li>
<li>Another item</li>
</ul>
</div>
</div>
</article>
<h3 id="tables">Tables</h3>
<article>
<table>
<caption>Table caption</caption>
<thead>
<tr>
<th>Table Head</th>
<th>Table Head</th>
<th>Table Head</th>
</tr>
</thead>
<tbody>
<tr>
<td>Table Data</td>
<td></td>
<td></td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Table Foot</td>
</tr>
</tfoot>
</table>
</article>
</section>
<hr>
<section id="classes">
<h2>Classes</h2>
<p>The <code>classes.css</code> file contain classes to affect elements appearance.</p>
<h3 id="alignment">Alignment</h3>
<article>
<p>You can align text.</p>
<div class="box">
<p class="text-start">This text is aligned left via <code>.text-start</code>.</p>
<hr>
<p class="text-middle">This text is aligned middle via <code>.text-middle</code>.</p>
<hr>
<p class="text-end">This text is aligned right via <code>.text-end</code>.</p>
<hr>
<p class="text-justify">This text is justified via <code>.text-justify</code> so we need some filler to reach the end of the line to text-wrap.</p>
</div>
</article>
<h3 id="box">Box</h3>
<article>
<div class="flex">
<div class="box">
<p>Sunt in culpa qui officia deserunt mollit anim id est laborum. Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</div>
<div class="box bg-theme text-white">
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident.</p>
</div>
</div>
</article>
<h3 id="line-clamp">Line Clamp</h3>
<article>
<code>.line-clamp-<n></code>
<p>You can line clamp text with <code>.line-clamp</code>. The text will append an ellipsis if it overflows. The class itself is set to 3 lines by default, however, you can set the number of lines to clamp with <code>.line-clamp-n</code>, where <code>n</code> is equal to the number of lines to clamp.</p>
<div class="box">
<p class="line-clamp-1">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<hr>
<p class="line-clamp-2">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<hr>
<p class="line-clamp-3">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</article>
<h3 id="row">Row</h3>
<article>
<p>The <code>.row</code> uses <code>display: flexbox;</code> to position children elements. Rather than use the <code>margin</code> property to seperate elements, the <code>gap</code> property is utilised.</p>
<div class="row">
<div class="col-12">
<p class="p-1 b-1 mb-1 text-middle"><code>col-12</code></p>
</div>
<div class="col-10">
<p class="p-1 b-1 mb-1 text-middle"><code>col-10</code></p>
</div>
<div class="col-2">
<p class="p-1 b-1 mb-1 text-middle"><code>col-2</code></p>
</div>
<div class="col-8">
<p class="p-1 b-1 mb-1 text-middle"><code>col-8</code></p>
</div>
<div class="col-4">
<p class="p-1 b-1 mb-1 text-middle"><code>col-4</code></p>
</div>
<div class="col-6">
<p class="p-1 b-1 mb-1 text-middle"><code>col-6</code></p>
</div>
<div class="col-6">
<p class="p-1 b-1 mb-1 text-middle"><code>col-6</code></p>
</div>
</div>
</article>
<h3 id="text">Text Case</h3>
<article class="mb-0">
<p>The <code class="text-lowercase">.text-capitalise</code> class transforms text into capitalised case like so: <span class="text-capitalise">Lorem ipsum dolor sit amet, consectetur adipisicing elit.</span></p>
<p>The <code class="text-lowercase">.text-lowercase</code> class transforms text into lowercase like so: <span class="text-lowercase">Lorem ipsum dolor sit amet, consectetur adipisicing elit.</span></p>
<p>The <code class="text-lowercase">.text-uppercase</code> class transforms text into uppercase like so: <span class="text-uppercase">Lorem ipsum dolor sit amet, consectetur adipisicing elit.</span></p>
</article>
</section>
<hr>
<section id="custom">
<h2>Custom</h2>
<p>The <code>custom.css</code> file is used to override rules and add themes. In fact, you can apply themes to components like the code block below.</p>
<div class="flex">
<button class="mb-1 mx-a" type="button" name="toggle-code-block-dark-mode" onclick="document.querySelector('#code-block').classList.toggle('dark');">Toggle Code Block Dark Mode</button>
</div>
<code id="code-block" class="block dark">
<div class="line"><span class="keyword">var</span> x <span class="assignment">=</span> <span class="value">1</span><span>;</span></div>
<div class="line"><span class="keyword">var</span> x <span class="assignment">=</span> <span class="value">1</span><span>;</span></div>
<div class="line"><span class="keyword">const</span> y <span class="assignment">=</span> <span class="value">2</span><span>;</span></div>
<div class="line"><span class="keyword">let</span> z <span class="assignment">=</span> <span class="value">3</span><span>;</span></div>
<span class="language">JavaScript</span>
</code>
</section>
<hr>
<section>
<h2 id="functions">Functions</h2>
<p>The <code>functions.js</code> file contains all JavaScript functions for this framework.</p>
<h3 id="console">Console</h3>
<p>The console functions are shorthands to remove <code>console.</code> notation required to log.</p>
<article id="console-article">
<h4>Log</h4>
<p><code>log()</code> is short for <code>console.log()</code>.</p>
<h4>Table</h4>
<p><code>table()</code> is short for <code>console.table()</code>.</p>
<h4>Warn</h4>
<p><code>warn()</code> is short for <code>console.warn()</code>.</p>
<h4>Warn</h4>
<p><code>error()</code> is short for <code>console.error()</code>.</p>
</article>
<h3 id="cookies">Cookies</h3>
<article id="cookies-article">
<h4>Default Cookie</h4>
<p><code>defaultCookie(cookieName, cookieDefaultValue)</code> checks if a cookie is set, if not, the function sets the cookie and value. The purpose of this function is to not override a set cookie, but to always have a cookie set.</p>
<h4>Get Cookies</h4>
<p><code>getCookies()</code> returns all cookies as an string.</p>
<h4>Get Cookies Split</h4>
<p><code>getCookiesSplit()</code> returns all cookies as an array.</p>
<h4>Log Cookies</h4>
<p><code>logCookies()</code> prints all cookies in the console.</p>
<h4>Get Cookie</h4>
<p><code>getCookie(cookieName)</code> returns a cookie as a string.</p>
<h4>Get Cookie Split</h4>
<p><code>getCookieSplit(cookieName)</code> splits a cookie and returns it as an array.</p>
<h4>Set Cookie</h4>
<p><code>setCookie(cookieName, cookieValue)</code> sets - or if isset updates - a cookie and value.</p>
<h4>Isset Cookie</h4>
<p><code>issetCookie(cookieName)</code> returns a Boolean, true if a cookie is set or false if not.</p>
<h4>Log Cookie</h4>
<p><code>logCookie(cookieName)</code> prints a cookie in the console.</p>
<h4>Get Cookie Value</h4>
<p><code>getCookieValue(cookieName)</code> returns a cookie value as a string.</p>
<h4>Log Cookie Value</h4>
<p><code>logCookieValue(cookieName)</code> prints a cookie value in the console.</p>
</article>
<h3 id="functions-images">Images</h3>
<article>
<h4>Set Image Intrinsic Width</h4>
<p><code>setImgIntrinsicWidth(id)</code>.</p>
<p>This function serves SEO. It sets the selected <code>img</code> maxium width to its intrinsic width.</p>
<h4>Set All Image Intrinsic Width</h4>
<p><code>setAllImgIntrinsicWidth()</code>.</p>
<p>This function applies the above function to all <code>img</code> elements.</p>
</article>
</section>
</main>
<footer class="container p-0">
<div class="bg-theme btl-r-1 btr-r-1 mx-2">
<p class="text-const-white text-middle py-1 mb-0">Copyright © 2020-2022 Scott Sewards All Rights Reserved</p>
</div>
</footer>
</body>
</html>