forked from tomas/skel.css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1056 lines (898 loc) · 36.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
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
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Skel.css: Responsive CSS Boilerplate</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--<link rel="stylesheet" href="dist/latest/skel.css">-->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/components.css">
<link rel="stylesheet" href="css/extras.css">
<link rel="stylesheet" href="web/custom.css">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<link rel="icon" type="image/png" href="images/favicon.png">
<script>
var entityMap = {
"&": "&",
"<": "<",
">": ">",
'"': '"',
"'": ''',
"/": '/'
}
function escapeHtml(string) {
return String(string).replace(/[&<>"'\/]/g, function (s) {
return entityMap[s];
});
}
document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('.toggle-visible').forEach(function(el) {
el.addEventListener('click', function(ev) {
ev.preventDefault();
var target = ev.target.getAttribute('href');
document.querySelector(target).classList.toggle('visible');
})
})
document.querySelectorAll('.code-example-body').forEach(function(el) {
var newContent = escapeHtml(el.innerHTML.replace(/^\n/g, ''))
el.innerHTML = newContent;
})
})
</script>
</head>
<body class="code-snippets-visible">
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<section class="text-center pt-100 pb-100">
<h2 class="title">A simple, responsive boilerplate.</h2>
<a class="button primary" href="empty.html">View empty HTML boilerplate</a>
<a class="button primary" href="examples/plugins.html">View plugins</a>
</section>
<nav class="navbar">
<div class="container">
<ul class="menu">
<li>
<a class="item" href="#grid">Grid</a>
</li>
<li>
<a class="item" href="#typography">Typography</a>
</li>
<li>
<a class="item" href="#buttons">Buttons</a>
</li>
<li>
<a class="item" href="#forms">Forms</a>
</li>
<li>
<a class="item" href="#lists">Lists</a>
</li>
<li>
<a class="item" href="#code">Code</a>
</li>
<li>
<a class="item" href="#tables">Tables</a>
</li>
<li>
<a class="item" href="#queries">Queries</a>
</li>
<li>
<a class="item" href="#utilities">Utilities</a>
</li>
</ul>
</div>
</nav>
<!-- Grid -->
<div class="docs-section" id="grid">
<h6 class="docs-header">The grid</h6>
<p>Use the <code>.width-[width]</code> <code>.w-[width]</code> class on elements under a container with the <code>.grid</code> class. For example, <code>.w-10</code> and <code>.w-80</code></p>
<div class="example-grid docs-example">
<div class="grid">
<div class="width-10"><p>10%</p></div>
<div class="width-90"><p>90%</p></div>
</div>
<div class="grid">
<div class="width-20"><p>20%</p></div>
<div class="width-80"><p>80%</p></div>
</div>
<div class="grid">
<div class="width-30"><p>30%</p></div>
<div class="width-70"><p>70%</p></div>
</div>
<div class="grid">
<div class="width-40"><p>40%</p></div>
<div class="width-60"><p>60%</p></div>
</div>
<div class="grid">
<div class="width-50"><p>50%</p></div>
<div class="width-50"><p>50%</p></div>
</div>
<div class="grid">
<div class="width-60"><p>60%</p></div>
<div class="width-40"><p>40%</p></div>
</div>
<div class="grid">
<div class="width-70"><p>70%</p></div>
<div class="width-30"><p>30%</p></div>
</div>
<div class="grid">
<div class="width-80"><p>80%</p></div>
<div class="width-20 "><p>20%</p></div>
</div>
<div class="grid">
<div class="width-90"><p>90%</p></div>
<div class="width-10"><p>10%</p></div>
</div>
</div>
<h6 class="docs-header">1/X classes</h6>
<div class="example-grid docs-example">
<div class="grid">
<div class="width-1-2"><p>1/2</p></div>
<div class="width-1-2"><p>1/2</p></div>
</div>
<div class="grid">
<div class="width-1-3"><p>1/3</p></div>
<div class="width-1-3"><p>1/3</p></div>
<div class="width-1-3"><p>1/3</p></div>
</div>
<div class="grid">
<div class="width-1-4"><p>1/4</p></div>
<div class="width-1-4"><p>1/4</p></div>
<div class="width-1-4"><p>1/4</p></div>
<div class="width-1-4"><p>1/4</p></div>
</div>
<div class="grid">
<div class="width-1-5"><p>1/5</p></div>
<div class="width-1-5"><p>1/5</p></div>
<div class="width-1-5"><p>1/5</p></div>
<div class="width-1-5"><p>1/5</p></div>
<div class="width-1-5"><p>1/5</p></div>
</div>
</div>
<!-- CODE EXAMPLE ———————————————————————————————————————— -->
<pre class="code-example">
<code class="code-example-body prettyprint"><!-- .container is main centered wrapper -->
<div class="container">
<!-- for same column widths, set the parent class to one, two, three or four columns -->
<div class="two columns">
<div><p>First column</p></div>
<div><p>Second column</p></div>
</div>
<!-- columns don't have to be 'div' elements, by the way. any block element will do. -->
<div class="four columns">
<section><p>Hello</p></section>
<section><p>there</p></section>
<section><p>my old</p></section>
<section><p>friend</p></section>
</div>
<!-- beside width-[num] classes, you can also use relative divisions. just make sure the parent has a 'grid' class. -->
<div class="grid">
<div class="width-one-third"><p>1/3</p></div>
<div class="width-two-thirds"><p>2/3</p></div>
</div>
<div class="grid">
<div class="width-30">
<div class="grid">
<div class="width-one-half"><p>nested A 1/2</p></div>
<div class="width-one-half"><p>nested A 1/2</p></div>
</div>
</div>
<div class="width-70">
<div class="grid">
<div class="width-one-third"><p>nested B 1/3</p></div>
<div class="width-two-thirds"><p>nested B 2/3</p></div>
</div>
</div>
</div>
<div class="grid">
<div class="width-60 grid">
<div class="width-one-third"><p>nested C 1/3</p></div>
<div class="width-two-thirds"><p>nested C 2/3</p></div>
</div>
<div class="width-40 grid">
<div class="width-one-half"><p>nested D 1/2</p></div>
<div class="width-one-half"><p>nested D 1/2</p></div>
</div>
</div>
</div>
</code>
</pre>
<!-- ————————————————————————————————————————————————————— -->
<p>The code above renders the following result:</p>
<div class="example-grid docs-example">
<div class="two columns">
<div><p>First column</p></div>
<div><p>Second column</p></div>
</div>
<!-- note: REMOVED, since now .full is used for 100% width and 100% height -->
<!--<div class="two full columns">
<div><p>Full first column</p></div>
<div><p>Full second column</p></div>
</div>-->
<div class="four columns">
<div><p>Hello</p></div>
<div><p>there</p></div>
<div><p>my old</p></div>
<div><p>friend</p></div>
</div>
<div class="grid">
<div class="width-one-third"><p>1/3</p></div>
<div class="width-two-thirds"><p>2/3</p></div>
</div>
<div class="grid">
<div class="width-30">
<div class="grid">
<div class="width-one-half"><p>nested A 1/2</p></div>
<div class="width-one-half"><p>nested A 1/2</p></div>
</div>
</div><!-- /width-30 -->
<div class="width-70">
<div class="grid">
<div class="width-one-third"><p>nested B 1/3</p></div>
<div class="width-two-thirds"><p>nested B 2/3</p></div>
</div>
</div><!-- /width-70 -->
</div>
<div class="grid">
<div class="width-60 grid">
<div class="width-one-third"><p>nested C 1/3</p></div>
<div class="width-two-thirds"><p>nested C 2/3</p></div>
</div><!-- /width-70 -->
<div class="width-40 grid">
<div class="width-one-half"><p>nested D 1/2</p></div>
<div class="width-one-half"><p>nested D 1/2</p></div>
</div><!-- /width-30 -->
</div>
</div><!-- /docs-example -->
</div><!-- / Grid section -->
<!-- Typography -->
<div class="docs-section" id="typography">
<h6 class="docs-header">Typography</h6>
<p>Type is all set with the <code>rems</code>, so font-sizes and spacial relationships can be responsively sized based on a single <code><html></code> font-size property. Out of the box, Skeleton never changes the <code><html></code> font-size, but it's there in case you need it for your project. All measurements are still base 10 though so, an <code><h1></code> with <code>5.0rem</code>font-size just means <code>50px</code>.</p>
<div class="docs-example">
<div class="row">
<div class="width-6">
<p><strong>The typography base</strong> is <a href="http://www.google.com/fonts/specimen/Raleway">Raleway</a> served by Google, set at 15rem (15px) over a 1.6 line height (24px). Other type basics like <a href="#">anchors</a>, <strong>strong</strong>, <em>emphasis</em>, and <u>underline</u> are all obviously included.</p>
<p><strong>Headings</strong> create a family of distinct sizes each with specific <code>letter-spacing</code>, <code>line-height</code>, and <code>margins</code>.</p>
</div>
<div class="width-6">
<h1>Heading<span class="heading-font-size"> <code><h1></code> 50rem</span></h1>
<h2>Heading<span class="heading-font-size"> <code><h2></code> 42rem</span></h2>
<h3>Heading<span class="heading-font-size"> <code><h3></code> 36rem</span></h3>
<h4>Heading<span class="heading-font-size"> <code><h4></code> 30rem</span></h4>
<h5>Heading<span class="heading-font-size"> <code><h5></code> 24rem</span></h5>
<h6>Heading<span class="heading-font-size"> <code><h6></code> 15rem</span></h6>
</div>
</div>
</div>
<!-- CODE EXAMPLE ———————————————————————————————————————— -->
<pre class="code-example">
<code class="code-example-body prettyprint"><!-- Standard Headings -->
<h1>Heading</h1>
<h2>Heading</h2>
<h3>Heading</h3>
<h4>Heading</h4>
<h5>Heading</h5>
<h6>Heading</h6>
<!-- Base type size -->
<p>The base type is 15px over 1.6 line height (24px)</p>
<!-- Other styled text tags -->
<strong>Bolded</strong>
<em>Italicized</em>
<a>Colored</a>
<u>Underlined</u>
</code>
</pre>
<!-- ————————————————————————————————————————————————————— -->
</div>
<!-- Buttons -->
<div class="docs-section" id="buttons">
<h6 class="docs-header">Buttons</h6>
<p>Buttons come in two basic flavors in Skeleton. The standard <code><button></code> element is plain, whereas the <code>.button-primary</code> button is vibrant and prominent. Button styles are applied to a number of appropriate form elements, but can also be arbitrarily attached to anchors with a <code>.button</code> class.</p>
<div class="docs-example">
<div>
<a class="button" href="#">Anchor button</a>
<button>Button element</button>
<input type="submit" value="submit input">
<input type="button" value="button input">
</div>
<div>
<a class="button primary" href="#">Anchor button</a>
<a class="button secondary" href="#">Anchor button</a>
<button class="button danger">Button element</button>
<input class="button success" type="submit" value="submit input">
<input class="button warning" type="button" value="button input">
<button class="button selected">Selected</button>
<button class="button ghost">Ghost</button>
</div>
</div>
<!-- CODE EXAMPLE ———————————————————————————————————————— -->
<pre class="code-example">
<code class="code-example-body prettyprint"><!-- Standard buttons -->
<a class="button" href="#">Anchor button</a>
<button>Button element</button>
<input type="submit" value="submit input">
<input type="button" value="button input">
<!-- Primary buttons -->
<a class="button button-primary" href="#">Anchor button</a>
<button class="button-primary">Button element</button>
<input class="button-primary" type="submit" value="submit input">
<input class="button-primary" type="button" value="button input">
</code>
</pre>
<!-- ————————————————————————————————————————————————————— -->
</div>
<!-- Forms -->
<div class="docs-section" id="forms">
<h6 class="docs-header">Forms</h6>
<p>Forms are a huge pain, but hopefully these styles make it a bit easier. All inputs, select, and buttons are normalized for a common height cross-browser so inputs can be stacked or placed alongside each other.</p>
<div class="docs-example docs-example-forms">
<form>
<div class="row">
<div class="width-6">
<label for="exampleEmailInput">Your email</label>
<input class="u-full-width" type="email" placeholder="[email protected]" id="exampleEmailInput">
</div>
<div class="width-6">
<label for="exampleRecipientInput">Reason for contacting</label>
<select class="u-full-width" id="exampleRecipientInput">
<option value="Option 1">Questions</option>
<option value="Option 2">Admiration</option>
<option value="Option 3">Can I get your number?</option>
</select>
</div>
<div class="width-6">
<label for="selectBuried">A "buried" select</label>
<select class="buried" id="selectBuried">
<option value="Option 1">One item</option>
<option value="Option 2">Another item</option>
<option disabled value="Option 3">A disabled item</option>
</select>
</div>
</div>
<label for="exampleMessage">Message</label>
<textarea class="u-full-width" placeholder="Hi Dave …" id="exampleMessage"></textarea>
<label class="example-send-yourself-copy">
<input type="checkbox">
<span class="label-body">Send a copy to yourself</span>
</label>
<input class="button-primary" type="submit" value="Submit">
</form>
</div>
<!-- CODE EXAMPLE ———————————————————————————————————————— -->
<pre class="code-example">
<code class="code-example-body prettyprint"><!-- The above form looks like this -->
<form>
<div class="row">
<div class="width-6">
<label for="exampleEmailInput">Your email</label>
<input class="u-full-width" type="email" placeholder="[email protected]" id="exampleEmailInput">
</div>
<div class="width-6">
<label for="exampleRecipientInput">Reason for contacting</label>
<select class="u-full-width" id="exampleRecipientInput">
<option value="Option 1">Questions</option>
<option value="Option 2">Admiration</option>
<option value="Option 3">Can I get your number?</option>
</select>
</div>
</div>
<label for="exampleMessage">Message</label>
<textarea class="u-full-width" placeholder="Hi Dave …" id="exampleMessage"></textarea>
<label class="example-send-yourself-copy">
<input type="checkbox">
<span class="label-body">Send a copy to yourself</span>
</label>
<input class="button-primary" type="submit" value="Submit">
</form>
<!-- Always wrap checkbox and radio inputs in a label and use a <span class="label-body"> inside of it -->
<!-- Note: The class .u-full-width is just a utility class shorthand for width: 100% -->
</code>
</pre>
<!-- ————————————————————————————————————————————————————— -->
</div>
<!-- Forms -->
<div class="docs-section" id="forms">
<h6 class="docs-header">Stacked Forms</h6>
<p>The default.</p>
<div class="docs-example docs-example-forms">
<form class="stacked">
<fieldset>
<legend>Form Legend</legend>
<label for="email-1">Email</label>
<input id="email-1" type="email" placeholder="Email">
<label for="password-1">Password</label>
<input id="password-1" type="password" placeholder="Password">
<label for="state-1">State</label>
<select id="state-1">
<option>AL</option>
<option>CA</option>
<option>IL</option>
</select>
<label for="comment">Comment</label>
<textarea id="comment"></textarea>
<label for="remember">
<input id="remember" type="checkbox"> Remember me
</label>
<button type="submit" class="button primary">Sign in</button>
</fieldset>
</form>
</div>
<!-- CODE EXAMPLE ———————————————————————————————————————— -->
<pre class="code-example">
<code class="code-example-body prettyprint">
<form class="stacked">
<fieldset>
<legend>Form Legend</legend>
<label for="email">Email</label>
<input id="email" type="email" placeholder="Email">
<label for="password">Password</label>
<input id="password" type="password" placeholder="Password">
<label for="state">State</label>
<select id="state">
<option>AL</option>
<option>CA</option>
<option>IL</option>
</select>
<label for="remember">
<input id="remember" type="checkbox"> Remember me
</label>
<button type="submit" class="button primary">Sign in</button>
</fieldset>
</form>
</code>
</pre>
<!-- ————————————————————————————————————————————————————— -->
</div>
<!-- Forms -->
<div class="docs-section" id="forms">
<h6 class="docs-header">Aligned Forms</h6>
<p>Add a `aligned` class to the form element, and voilá.</p>
<div class="docs-example docs-example-forms">
<form class="aligned">
<fieldset>
<div>
<label for="name">Username</label>
<input id="name" type="text" placeholder="Username">
</div>
<div>
<label for="password">Password</label>
<input id="password" type="password" placeholder="Password">
</div>
<div>
<label for="email">Email Address</label>
<input id="email" type="email" placeholder="Email Address">
</div>
<label for="state">State</label>
<select id="state">
<option>AL</option>
<option>CA</option>
<option>IL</option>
</select>
<div>
<label for="foo">Supercalifragilistic Long Label</label>
<input id="foo" type="text" placeholder="Enter something here...">
</div>
<div>
<label for="cb">
<input id="cb" type="checkbox"> I've read the terms and conditions
</label>
<button type="submit" class="button primary">Submit</button>
</div>
</fieldset>
</form>
</div>
<!-- CODE EXAMPLE ———————————————————————————————————————— -->
<pre class="code-example">
<code class="code-example-body prettyprint">
<form class="aligned">
<fieldset>
<div>
<label for="name">Username</label>
<input id="name" type="text" placeholder="Username">
</div>
<div>
<label for="password">Password</label>
<input id="password" type="password" placeholder="Password">
</div>
<div>
<label for="email">Email Address</label>
<input id="email" type="email" placeholder="Email Address">
</div>
<div>
<label for="foo">Supercalifragilistic Label</label>
<input id="foo" type="text" placeholder="Enter something here...">
</div>
<div>
<label for="cb">
<input id="cb" type="checkbox"> I've read the terms and conditions
</label>
<button type="submit" class="button primary">Submit</button>
</div>
</fieldset>
</form>
</code>
</pre>
<!-- ————————————————————————————————————————————————————— -->
</div>
<!-- Lists -->
<div class="docs-section" id="lists">
<h6 class="docs-header">Lists</h6>
<div class="row docs-example">
<div class="width-6">
<ul>
<li>Unordered lists have basic styles</li>
<li>
They use the circle list style
<ul>
<li>Nested lists styled to feel right</li>
<li>Can nest either type of list into the other</li>
</ul>
</li>
<li>Just more list items mama san</li>
</ul>
</div>
<div class="width-6">
<ol>
<li>Ordered lists also have basic styles</li>
<li>
They use the decimal list style
<ul>
<li>Ordered and unordered can be nested</li>
<li>Can nest either type of list into the other</li>
</ul>
</li>
<li>Last list item just for the fun</li>
</ol>
</div>
</div>
<!-- CODE EXAMPLE ———————————————————————————————————————— -->
<pre class="code-example">
<code class="code-example-body prettyprint">
<ul>
<li>Item 1</li>
<li>
Item 2
<ul>
<li>Item 2.1</li>
<li>Item 2.2</li>
</ul>
</li>
<li>Item 3</li>
</ul>
<!-- Easily substitute any <ul> or an <ol> to get number lists or sublists. Skeleton doesn't support lists nested deeper than 2 levels -->
</code>
</pre>
<!-- ————————————————————————————————————————————————————— -->
</div>
<!-- Code -->
<div class="docs-section" id="code">
<h6 class="docs-header">Code</h6>
<p>Code styling is kept basic – just wrap anything in a <code><code></code> and it will appear like <code>this</code>. For blocks of code, wrap a <code><code></code> with a <code><pre></code>.</p>
<div class="docs-example">
<p>Un poco de código inline como este: <code>$ sh foo.sh 2> /dev/null</code> funciona bien.</p>
</div>
<div class="docs-example">
<p>Un comando con varias lineas se pone en un pre:</p>
<pre>curl \
-i \
-H "Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdXR" \
http://localhost:5001/v1</pre>
</div>
<div class="docs-example">
<p>Y para que tenga fondo se mete un code dentro del pre:</p>
<pre><code>.content {
background-color: red;
}</code></pre>
</div>
<!-- CODE EXAMPLE ———————————————————————————————————————— -->
<pre class="code-example">
<code class="code-example-body prettyprint"><pre><code>.content {
background-color: red;
}</code></pre>
</code>
</pre>
<!-- ————————————————————————————————————————————————————— -->
</div>
<!-- Tables -->
<div class="docs-section" id="tables">
<h6 class="docs-header">Tables</h6>
<p>Be sure to use properly formed table markup with <code><thead></code> and <code><tbody></code> when building a <code>table</code>.</p>
<div class="docs-example">
<table class="u-full-width">
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Sex</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>Dave Gamache</td>
<td>26</td>
<td>Male</td>
<td>San Francisco</td>
</tr>
<tr>
<td>Dwayne Johnson</td>
<td>42</td>
<td>Male</td>
<td>Hayward</td>
</tr>
</tbody>
</table>
</div>
<!-- CODE EXAMPLE ———————————————————————————————————————— -->
<pre class="code-example">
<code class="code-example-body prettyprint"><table class="u-full-width">
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Sex</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>Dave Gamache</td>
<td>26</td>
<td>Male</td>
<td>San Francisco</td>
</tr>
<tr>
<td>Dwayne Johnson</td>
<td>42</td>
<td>Male</td>
<td>Hayward</td>
</tr>
</tbody>
</table>
</code>
</pre>
<!-- ————————————————————————————————————————————————————— -->
</div>
<h2 id="extras">Extras (Components)</h2>
<div class="docs-section" id="extras">
<h6 class="docs-header">Extras: Accordion with Details + Summary</h6>
<div class="docs-example">
<div style="max-width: 500px; margin: 100px auto">
<details>
<summary>
Is it accessible?
<i class="toggle-icon"></i>
</summary>
<p>Yes. It adheres to the WAI-ARIA design pattern.</p>
</details>
<details>
<summary>
Is it unstyled?
<i class="toggle-icon"></i>
</summary>
<p>Yes. It's unstyled by default, giving you freedom over the look and feel.</p>
</details>
<details>
<summary>
Can it be animated?
<i class="toggle-icon"></i>
</summary>
<p>Yes! You can use the transition prop to configure the animation.</p>
</details>
</div>
</div>
<!-- CODE EXAMPLE ———————————————————————————————————————— -->
<pre class="code-example">
<code class="code-example-body prettyprint">
<div style="max-width: 500px; margin: 100px auto">
<details>
<summary>
Is it accessible?
<i class="toggle-icon"></i>
</summary>
<p>Yes. It adheres to the WAI-ARIA design pattern.</p>
</details>
<details>
<summary>
Is it unstyled?
<i class="toggle-icon"></i>
</summary>
<p>Yes. It's unstyled by default, giving you freedom over the look and feel.</p>
</details>
<details>
<summary>
Can it be animated?
<i class="toggle-icon"></i>
</summary>
<p>Yes! You can use the transition prop to configure the animation.</p>
</details>
</div>
</code>
</pre>
<!-- ————————————————————————————————————————————————————— -->
</div>
<div class="docs-section">
<h6 class="docs-header">Extras: Alerts</h6>
<p>Notice (default), warning, success and error. Can optionally have a close button (either a BUTTON or an A tag) at the left or right. </p>
<div class="docs-example">
<div class="alert">
<button class="right close-button"></button>
This is very important.
</div>
<div class="alert alert-warning">
<a href="#close" class="left close-button"></a>
This is very important.
</div>
<div class="alert alert-success">
<a href="#close" class="left close-button"></a>
This is very important.
</div>
<div class="alert alert-error">
<a href="#close" class="right close-button"></a>
This is very important.
</div>
</div>
<!-- CODE EXAMPLE ———————————————————————————————————————— -->
<pre class="code-example">
<code class="code-example-body prettyprint">
<div class="alert">
<button class="right close-button"></button>
This is very important.
</div>
<div class="alert alert-warning">
<a href="#close" class="left close-button"></a>
This is very important.
</div>
<div class="alert alert-success">
<button class="left close-button"></button>
This is very important.
</div>
<div class="alert alert-error">
<a href="#close" class="right close-button"></a>
This is very important.
</div>
</code>
</pre>
<!-- ————————————————————————————————————————————————————— -->
</div>
<div class="docs-section">
<h6 class="docs-header">Extras: Navbar</h6>
<p>In light and dark modes.</p>
<div class="docs-example">
<div class="navbar">
<div class="container">
<a href="#mobile-menu2" class="toggle-visible right sm:visible menu-icon"></a>
<ul class="left menu">
<li><a class="item" href="/">FooApp</a></li>
</ul>
<ul class="right menu sm:hidden" id="mobile-menu2">
<li><a class="item" href="#">Home</a></li>
<li><a class="item" href="/settings">Settings</a></li>
<li class="hover dropdown">
<span class="item">Dropdown on hover<i class="caret"></i></span>
<ul class="menu">
<li><a class="item" href="#">Foo</a></li>
<li><a class="item" href="#">Bar</a></li>
<li><a class="item" href="#">Baz</a></li>
</ul>
</li>
<li><a class="item" href="#">Logout</a></li>
</ul>
</div>
</div>
</div>
<!-- CODE EXAMPLE ———————————————————————————————————————— -->
<pre class="code-example">
<code class="code-example-body prettyprint">
<div class="navbar">
<div class="container">
<a href="#mobile-menu2" class="toggle-visible right sm:visible menu-icon"></a>
<ul class="left menu">
<li><a class="item" href="/">FooApp</a></li>
</ul>
<ul class="right menu sm:hidden" id="mobile-menu2">
<li><a class="item" href="#">Home</a></li>
<li><a class="item" href="/settings">Settings</a></li>
<li class="hover dropdown">
<span class="item">Dropdown on hover<i class="caret"></i></span>
<ul class="menu">
<li><a class="item" href="#">Foo</a></li>
<li><a class="item" href="#">Bar</a></li>
<li><a class="item" href="#">Baz</a></li>
</ul>
</li>
<li><a class="item" href="#">Logout</a></li>
</ul>
</div>
</div>
</code>
</pre>
<!-- ————————————————————————————————————————————————————— -->
<div class="docs-example">
<div class="dark navbar">
<div class="container">
<a href="#mobile-menu3" class="toggle-visible right sm:visible menu-icon"></a>
<ul class="left menu">
<li><a class="item" href="/">FooApp</a></li>
</ul>
<ul class="right menu sm:hidden" id="mobile-menu3">
<li><a class="item" href="#">Home</a></li>
<li><a class="active item" href="/settings">Settings</a></li>
<li class="hover dropdown">
<span class="item"><i class="caret"></i>Dropdown on hover</span>
<ul class="menu">
<li><a class="item" href="#">Foo</a></li>
<li><a class="item" href="#">Bar</a></li>
<li><a class="item" href="#">Baz</a></li>
</ul>
</li>
<li class="item"><a class="small button" href="#">Logout</a></li>
</ul>
</div>
</div>
</div>
<!-- CODE EXAMPLE ———————————————————————————————————————— -->
<pre class="code-example">
<code class="code-example-body prettyprint">
<div class="dark navbar">
<div class="container">
<a href="#mobile-menu3" class="toggle-visible right sm:visible menu-icon"></a>
<ul class="left menu">
<li><a class="item" href="/">FooApp</a></li>
</ul>
<ul class="right menu sm:hidden" id="mobile-menu3">
<li><a class="item" href="#">Home</a></li>
<li><a class="active item" href="/settings">Settings</a></li>
<li class="hover dropdown">
<span class="item"><i class="caret"></i>Dropdown on hover</span>
<ul class="menu">
<li><a class="item" href="#">Foo</a></li>
<li><a class="item" href="#">Bar</a></li>
<li><a class="item" href="#">Baz</a></li>
</ul>
</li>