-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathindex.html.ejs
635 lines (499 loc) · 26.8 KB
/
index.html.ejs
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
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
<!DOCTYPE html>
<html lang="en">
<head>
<title>system.css | A design system for building retro Apple-inspired interfaces</title>
<link rel="Shortcut Icon" type="image/x-icon" href="icon.png" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta property="og:title" content="system.css" />
<meta name="Description" content="A design system for building retro Apple interfaces" />
<meta property="og:description" content="A design system for building retro Apple interfaces" />
<link rel="stylesheet" href="system.css">
<link rel="stylesheet" href="docs.css">
</head>
<body ontouchstart>
<div class="container">
<div class="layout">
<p class="col col-main">
<aside class="window sidebar">
<div class="title-bar">
<button aria-label="Close" class="close"></button>
<h1 class="title">Docs</h1>
<button aria-label="Resize" class="resize"></button>
</div>
<div class="separator"></div>
<div class="window-pane">
<ul class="menu-items">
<li><a href="#intro">Intro</a></li>
<li>Components
<ul>
<li><a href="#buttons">Buttons</a></li>
<li><a href="#radio-buttons">Radio Buttons</a></li>
<li><a href="#checkboxes">Checkboxes</a></li>
<li><a href="#menu-bar">Menu Bar</a></li>
<li><a href="#select-menu">Select Menu</a></li>
<li><a href="#text-box">Text Box</a></li>
</ul>
</li>
<li>Windows
<ul>
<li><a href="#title-bar">Title Bar</a></li>
<li><a href="#window-contents">Window Contents</a></li>
<li><a href="#dialogs">Dialogs</a></li>
</ul>
</li>
<li><a href="#contributing">Contributing, Credits, etc.</a></li>
<li>Sponsors
<ul>
<li><a href="https://getcssscan.com/?ref=systemcss" target="_blank">Get CSS Scan browser extension</a></li>
</ul>
</li>
</ul>
</div>
</aside>
</p>
<p class="col col-complementary" role="complementary">
<div class="standard-dialog">
<p class="heading center">System.css</p>
<p class="desc center">A design system for building retro <span role="img" class="apple" aria-label="Apple"></span>-inspired interfaces</p>
<h2 class="subheading" id="intro">Intro</h2>
<p>System.css is a CSS library for building interfaces that resemble Apple's System OS which ran from 1984-1991. Design-wise, not much really changed from System 1 to System 6; however this library is based on System 6 as it was the final monochrome version of MacOS.</p>
<p>Fortunately, this library does not use any JavaScript and is compatible with any front-end framework of your choice. Most styles can also be overwritten to allow for deeper customization.</p>
<h2 class="subheading">Components</h2>
<section class="component">
<h3 class="subheading" id="buttons">Buttons</h3>
<div style="padding-left: 20px;">
<blockquote>
A button is a rounded rectangle that is named with text. Clicking a button performs the action described by the button's name.
<footer>— Apple HI Guidelines, p. 204</footer>
</blockquote>
<p>A standard button measures 59px wide and 20px tall. We use the <code>.btn</code> class for these buttons</p>
<%- example(`
<button class="btn">Cancel</button>
<button class="btn">Submit</button>
`)%>
<p>When pressed, buttons invert. The button below is stimulated to be in the active state.</p>
<%- example(`
<button [[class="btn active"]]>Active</button>
`)%>
<p>Buttons can also have dynamic widths.</p>
<%- example(`
<button class="btn">Buttons can be long!!</button>
`)%>
<p>Or even have a default choice.</p>
<%- example(`
<button class="btn">Cancel</button>
<button class="btn btn-default">Find</button>
`)%>
<p>Disabled buttons look the same as standard buttons, but with grey button text. Add the <code>disabled</code> attribute to use it.</p>
<%- example(`
<button class="btn" disabled>Disabled</button>
`)%>
<!--<p>Default buttons have an extra border around them. Add the <code>disabled</code> attribute to use it.</p>
<div class="example">
<span class="default">
<button [[ class="btn"]]>Default</button>
</span>
</div> -->
</div>
</section>
<section class="component">
<h3 class="subheading" id="radio-buttons">Radio Buttons</h3>
<div style="padding-left: 20px;">
<blockquote>
A radio button is a Macintosh control that displays a setting, either on or off, and is part of a group in which only one button can be on at a time.
<footer>— Apple HI Guidelines, p. 210</footer>
</blockquote>
<p>Radio Buttons can be rendered by specifying a <code>radio</code> type on an <code>input</code> tag and assigning it a name.</p>
<%- example(`
<div class="field-row">
<input id="radio1" type="radio" name="first-example">
<label for="radio1">Left</label>
</div>
<div class="field-row">
<input id="radio2" type="radio" name="first-example">
<label for="radio2">Center</label>
</div>
<div class="field-row">
<input id="radio3" type="radio" name="first-example">
<label for="radio3">Right</label>
</div>
`)%>
</div>
</section>
<section class="component">
<h3 class="subheading" id="checkboxes">Checkboxes</h3>
<div style="padding-left: 20px;">
<blockquote>
Checkboxes, like radio buttons, provide alternative choices for users. A
checkbox is a square with label text next to it
<footer>— Apple HI Guidelines, p. 211</footer>
</blockquote>
<p>Checkboxes can be rendered by specifying a <code>checkbox</code> type on an <code>input</code> tag and assigning it a name.</p>
<%- example(`
<div class="field-row">
<input id="checkbox${getNewId()}" type="checkbox" name="chbx-example">
<label for="checkbox${getCurrentId()}">Left</label>
</div>
<div class="field-row">
<input id="checkbox${getNewId()}" type="checkbox" name="chbx-example">
<label for="checkbox${getCurrentId()}">Center</label>
</div>
<div class="field-row">
<input id="checkbox${getNewId()}" type="checkbox" name="chbx-example">
<label for="checkbox${getCurrentId()}">Right</label>
</div>
`)%>
</div>
</section>
<section class="component">
<h3 class="subheading" id="menu-bar">Menu Bar</h3>
<div style="padding-left: 20px;">
<blockquote>
The menu bar extends across the top of the screen and contains words and
icons that serve as the title of each menu
<footer>— Apple HI Guidelines, p. 52</footer>
</blockquote>
<p>A menu bar consists of menu elements that name menu items and they typically have a dropdown menu associated with them.</p>
<p>To create a menu bar we will use the <code>.menu-bar</code> class. </p>
<%- example(`
<ul role="menu-bar">
<li role="menu-item" tabindex="0" aria-haspopup="true">
File
<ul role="menu">
<li role="menu-item"><a href="#menu">Action</a></li>
<li role="menu-item"><a href="#menu">Another Action</a></li>
<li role="menu-item" class="divider"><a href="#menu">Something else here</a></li>
<li role="menu-item"><a href="https://twitter.com/sakofchit">sakun's twitter</a></li>
</ul>
</li>
<li role="menu-item" tabindex="0" aria-haspopup="true">
Edit
<ul role="menu">
<li role="menu-item"><a href="#menu">Action</a></li>
<li role="menu-item"><a href="#menu">Another Action</a></li>
<li role="menu-item" class="divider"><a href="#menu">Something else here</a></li>
<li role="menu-item"><a href="https://sakun.co">sakun's projects</a></li>
</ul>
</li>
<li role="menu-item" tabindex="0" aria-haspopup="true">
View
<ul role="menu">
<li role="menu-item"><a href="#menu">Action</a></li>
<li role="menu-item"><a href="#menu">Another Action</a></li>
<li role="menu-item"><a href="#menu">Something else here</a></li>
</ul>
</li>
<li role="menu-item" tabindex="0" aria-haspopup="true">
Special
<ul role="menu">
<li role="menu-item"><a href="#menu">You</a></li>
<li role="menu-item"><a href="#menu">Get the</a></li>
<li role="menu-item"><a href="#menu">Idea</a></li>
</ul>
</li>
</ul>
`)%>
<p>In case of a menu item as a single children or plain text with no menu dropdown associated with it, use <code>aria-haspopup="false"</code> attribute.</p>
<%- example(`
<ul role="menu-bar">
<li role="menu-item" tabindex="0" aria-haspopup="false">Single Item</li>
<li role="menu-item" tabindex="0" aria-haspopup="false"><a target="_blank" href="https://github.com/sakofchit/system.css">System.css on GitHub</a></li>
</ul>
`)%>
<p>We can also manipulate a menu bar into a standard dropdown.</p>
<%- example(`
<ul role="menu-bar">
<li role="menu-item" tabindex="0" aria-haspopup="true">
Dropdown
<ul role="menu">
<li role="menu-item"><a href="#menu">Action</a></li>
<li role="menu-item"><a href="#menu">Another Action</a></li>
<li role="menu-item" class="divider"><a href="#menu">Something else here</a></li>
<li role="menu-item"><a href="https://twitter.com/sakofchit">sakun's twitter</a></li>
</ul>
</li>
</ul>
`)%>
</div>
</section>
<section class="component">
<h3 class="subheading" id="select-menu">Select Menu</h3>
<div style="padding-left: 20px;">
<blockquote>
A select menu can be used to create a drop-down list, typically used in forms.
</blockquote>
<p>Select menus can be rendered using the <code>select</code> and <code>option</code> elements.</p>
<%- example(`
<select>
<option>name</option>
<option>age</option>
<option>date of birth</option>
</select>
`)%>
<p>By default the first option will be selected, but you can change that by adding the <code>selected</code> attribute to an <code>option</code></p>
<%- example(`
<select>
<option>name</option>
<option>age</option>
<option selected>date of birth</option>
</select>
`)%>
</div>
</section>
<section class="component">
<h3 class="subheading" id="text-box">Text Box</h3>
<div style="padding-left: 20px;">
<blockquote>
The place or places in a dialog box where information can be typed. Also called text entry field.
<footer>— Apple HI Guidelines, p. 372</footer>
</blockquote>
<p>Text Boxes can be rendered by specifying a <code>text</code> type on an <code>input</code> tag</p>
<%- example(`
<input aria-label="Example text box" type="text" placeholder="some cool text"/>
`)%>
<p>Other types of text are also supported</p>
<%- example(`
<form>
<label for="text_email">Email</label><br>
<input id="text_email" type="email" placeholder="panic@thedis.co"/><br>
<label for="text_pwd">Password</label><br>
<input id="text_pwd" type="password" placeholder="password"/><br><br>
</form>
`)%>
</div>
</section>
<section class="component">
<h2 class="subheading" id="windows">Windows</h2>
<div style="padding-left: 20px;">
<blockquote>
Standard document windows have standard structural components.
These components include the title bar, size box, close box, zoom box,
and scroll bars. Windows are designed for visual consistency across all monitors
<footer>— Apple HI Guidelines, p. 134, 159</footer>
</blockquote>
</div>
</section>
<section class="component">
<h3 class="subheading" id="title-bar">Title Bar</h3>
<div style="padding-left: 20px;">
<blockquote>
A standard title bar is at least 19px tall, has a close button, caption, and racing stripes.
</blockquote>
<p>They're usually a part of a window. Title bars use the Chicago 12pt font.</p>
<%- example(`
<div class="window">
<div class="title-bar">
<button aria-label="Close" class="close"></button>
<h1 class="title">A Title Bar</h1>
<button aria-label="Resize" disabled class="hidden"></button>
</div>
</div>
`)%>
<p>Title bars can look different depending on what they're intended for.</p>
<%- example(`
<div class="window">
<div class="title-bar">
<button aria-label="Close" class="close"></button>
<h1 class="title">Also a Title Bar</h1>
<button aria-label="Resize" class="resize"></button>
</div>
</div>
<div class="window">
<div class="title-bar">
<h1 class="title">Dialog Title</h1>
</div>
</div>
`)%>
<p>You can also set a title bar to be inactive by applying the <code>.inactive-title-bar</code> class</p>
<%- example(`
<div class="window">
<div class="inactive-title-bar">
<h1 class="title">Inactive Title Bar</h1>
</div>
</div>
`)%>
</div>
</section>
<section class="component">
<h3 class="subheading" id="window-contents">Window Contents</h3>
<div style="padding-left: 20px;">
<blockquote>
Document windows present a view into the content that people create and store.
<footer>— Apple HI Guidelines, p. 134</footer>
</blockquote>
<p>This is a window (without stuff in it). To create a basic window, we simply use the <code>.window</code> class.</p>
<%- example(`
<div class="window scale-down">
<div class="title-bar">
<button aria-label="Close" class="close"></button>
<h1 class="title">Window Without Stuff</h1>
<button aria-label="Resize" class="resize"></button>
</div>
</div>
`)%>
<p>This is a window with stuff in it. We can achieve this by simply adding a div with the <code>.window-pane</code> below the title bar.</p>
<%- example(`
<div class="window">
<div class="title-bar">
<button aria-label="Close" class="close"></button>
<h1 class="title">Window With Stuff</h1>
<button aria-label="Resize" class="resize"></button>
</div>
<div class="separator"></div>
<div class="window-pane">
Woo I got stuff in me!
</div>
</div>
`)%>
<p>You can also add a details bar to a window by adding<code>.details-bar</code> below the title bar.</p>
<%- example(`
<div class="window">
<div class="title-bar">
<button aria-label="Close" class="close"></button>
<h1 class="title">Window With Details</h1>
<button aria-label="Resize" class="resize"></button>
</div>
<div class="details-bar">
<span>some</span>
<span>more</span>
<span>details</span>
</div>
<div class="window-pane">
Woo I got a details bar.
</div>
</div>
`)%>
<p>You can also create an inactive window using an inactive title bar.</p>
<%- example(`
<div class="window">
<div class="inactive-title-bar">
<h1 class="title">Inactive Window</h1>
</div>
<div class="details-bar">
<span>some</span>
<span>more</span>
<span>details</span>
</div>
<div class="window-pane">
not active :(
</div>
</div>
`)%>
</div>
</section>
<section class="component">
<h3 class="subheading" id="dialogs">Dialogs</h3>
<div style="padding-left: 20px;">
<blockquote>
Dialog boxes are windows that provide a standard framework in which the
computer can present alternatives from which the user can choose.
<footer>— Apple HI Guidelines, p. 176</footer>
</blockquote>
<p>
A basic dialog is just a box with text in it. We use the <code>.standard-dialog</code> class here.
</p>
<%- example(`
<div class="standard-dialog center scale-down" style="width:30rem;">
<h1 class="dialog-text">The Macintosh Finder, Version 1.0 (18 Jan 84)</h1>
<p class="dialog-text">© 1984 Apple Computer</p>
</div>
`)%>
<p>
A modeless dialog box looks like a window without a size box, zoom box, or
scroll bars.
</p>
<%- example(`
<div class="window scale-down" style="width:30rem;">
<div class="title-bar">
<button aria-label="Close" class="close"></button>
<h1 class="title">Modeless Dialog</h1>
<button aria-label="Resize" disabled class="hidden"></button>
</div>
<div class="separator"></div>
<div class="modeless-dialog">
<section class="field-row" style="justify-content: flex-start">
<label for="text_find" class="modeless-text">Find:</label>
<input id="text_find" type="text" style="width:100%;" placeholder=""/>
</section>
<section class="field-row" style="justify-content: flex-end">
<button class="btn">Cancel</button>
<button class="btn" style="width:95px;">Find</button>
</section>
</div>
</div>
`)%>
<p>
We can also have a modal dialog box, which typically has some interactive component within it. It has a double-outline border. We achieve this by using a nested <code>div</code>. The outer <code>div</code> uses the <code>.outer-border</code> class and the <code>.inner-border</code> for the inner <code>div</code>.
</p>
<%- example(`
<div class="modal-dialog outer-border" style="width: 30rem;">
<div class="inner-border center">
<div class="modal-contents">
<h1 class="modal-text">Modal Dialog</h1>
<div style="padding-left: 20px;">
<div class="field-row">
<input id="radio${getNewId()}" type="radio" name="second-example">
<label for="radio${getCurrentId()}">Room</label>
</div>
<div class="field-row">
<input id="radio${getNewId()}" type="radio" name="second-example">
<label for="radio${getCurrentId()}">For</label>
</div>
<div class="field-row">
<input id="radio${getNewId()}" type="radio" name="second-example">
<label for="radio${getCurrentId()}">Stuff</label>
</div>
</div>
<section class="field-row" style="justify-content: flex-end">
<button class="btn">Cancel</button>
<button class="btn" style="width:95px;">OK</button>
</section>
</div>
</div>
</div>
`)%>
<blockquote>
Alert boxes appear when the system software or an application needs to
communicate information to the user. Alert boxes provide messages about
error conditions and warn users about potentially hazardous situations or
actions
<footer>— Apple HI Guidelines, p. 176</footer>
</blockquote>
<p>Like modal dialogs, alert boxes also have a double-outline frame. The empty square is where you'd place an icon.</p>
<%- example(`
<div class="alert-box outer-border scale-down" style="width:30rem;">
<div class="inner-border">
<div class="alert-contents" style="padding-left: 30px; padding-right:20px;">
<section class="field-row" style="justify-content: flex-start">
<div class="square"></div>
<p class="alert-text" style="padding-left:10px;">This is a standard alert box. The text would be placed here.
This is where more text appears</p>
</section>
<section class="field-row" style="justify-content: flex-end">
<button class="btn">Cancel</button>
<button class="btn" style="width:95px;">OK</button>
</section>
</div>
</div>
</div>
`)%>
</div>
</section>
<h2 class="subheading" id="contributing">Contributing, Credits, etc.</h2>
<section class="component">
<div>
<p>Thanks for checking this project out! This library was made in good fun and was largely inspired by <a href="https://github.com/jdan/98.css" target="_blank">98.css</a>. The <a href="http://www.suppertime.co.uk/blogmywiki/2017/04/chicago/" target="_blank">Chicago 12pt</a> and <a href="http://www.suppertime.co.uk/blogmywiki/2017/04/finderskeepers/" target="_blank">Geneva 9pt</a> fonts are recreations by <a href="https://twitter.com/blogmywiki" target="_blank">@blogmywiki</a></p>
<p>System.css is still in beta! There's a few things that are currently missing that I incline on adding pretty soon. I recreated components based on Apple's Human Interface Guidelines. However, there's still a pretty good chance that I've might've missed/overlooked something essential. I've also had to recreate most of the assets, which can also be found <a href="https://github.com/sakofchit/system.css/tree/main/icon">here</a>.</p>
<p>If you find a bug, consider opening an issue <a href="https://github.com/sakofchit/system.css/issues">here</a>. If there's something that you'd like to add, please feel free to create a PR!</p>
<p>If you'd like to see what else I'm up to, consider following me on <a href="https://twitter.com/sakofchit" target="_blank">Twitter</a> or checking out my <a href="https://sakun.co" target="_blank">personal site</a> :)</p>
</div>
</section>
<h2 class="subheading">Sponsors</h2>
<p><a href="https://getcssscan.com/?ref=systemcss" target="_blank">CSS Scan</a>: The fastest and easiest way to check, copy and edit CSS</p>
</div>
</div>
</p>
</div>
</body>
</html>