-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
838 lines (742 loc) · 35.6 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" href="styles/normalise.css">
<link rel="stylesheet" href="styles/variables.css">
<link rel="stylesheet" href="styles/fonts.css">
<link rel="stylesheet" href="styles/colors.css">
<link rel="stylesheet" href="styles/size-16.css">
<link rel="stylesheet" href="styles/forms.css">
<link rel="stylesheet" href="styles/buttons.css">
<link rel="stylesheet" href="styles/lists.css">
<link rel="stylesheet" href="styles/images.css">
<link rel="stylesheet" href="styles/tables.css">
<link rel="stylesheet" href="styles/backgrounds.css">
<link rel="stylesheet" href="styles/shadows.css">
<link rel="stylesheet" href="styles/paddings-margins.css">
<link rel="stylesheet" href="styles/modifiers.css">
<link rel="stylesheet" href="styles/custom.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<section id="contents">
<h1>Primary Buttons</h1>
<table>
<thead>
<tr>
<th>Type</th>
<th>Inactive</th>
<th>Hover</th>
<th>Active</th>
<th>Disabled</th>
</tr>
</thead>
<tr>
<td>Primary / Default size</td>
<td><button class="gp-button gp-button-default gp-button-primary">Primary</button></td>
<td><button class="gp-button gp-button-default gp-button-primary primary-hover">Primary</button></td>
<td><button class="gp-button gp-button-default gp-button-primary primary-active">Primary</button></td>
<td><button class="gp-button gp-button-default gp-button-primary" disabled>Primary</button></td>
</tr>
<tr>
<td>Secondary / Default size</td>
<td><button class="gp-button gp-button-default gp-button-secondary">Secondary</button></td>
<td><button class="gp-button gp-button-default gp-button-secondary secondary-hover">Secondary</button></td>
<td><button class="gp-button gp-button-default gp-button-secondary secondary-active">Secondary</button></td>
<td><button class="gp-button gp-button-default gp-button-secondary" disabled>Secondary</button></td>
</tr>
<tr>
<td>Tertiary / Default size</td>
<td><button class="gp-button gp-button-default gp-button-tertiary">Tertiary</button></td>
<td><button class="gp-button gp-button-default gp-button-tertiary tertiary-hover">Tertiary</button></td>
<td><button class="gp-button gp-button-default gp-button-tertiary tertiary-active">Tertiary</button></td>
<td><button class="gp-button gp-button-default gp-button-tertiary" disabled>Tertiary</button></td>
</tr>
</table>
<header>
<h1>H1 How razorback-jumping frogs can level six piqued gymnasts!</h1>
<h5>H5 How razorback-jumping frogs can level six piqued gymnasts!</h5>
<button class="gp-button gp-button-primary gp-button-default">Subscribe to out doctrines</button>
</header>
<h1>How razorback-jumping frogs can level six piqued gymnasts!</h1>
<p>Quem facilisi moderatius id eam, id tamquam albucius per. Vel quem congue appareat cu, mei te eros convenire. Sea bonorum epicuri ea, ei exerci tacimates pro, aliquam pertinacia eu vim. Vix ei stet ornatus. Est mediocrem reprimique contentiones ei, mea ne primis intellegat. Dico purto nullam sea an.
</p>
<h1>H1 How razorback-jumping frogs can level six piqued gymnasts!</h1>
<h2>H2 How razorback-jumping frogs can level six piqued gymnasts!</h2>
<h3>H3 How razorback-jumping frogs can level six piqued gymnasts!</h3>
<h4>H4 How razorback-jumping frogs can level six piqued gymnasts!</h4>
<h5>H5 How razorback-jumping frogs can level six piqued gymnasts!</h5>
<h6>H6 How razorback-jumping frogs can level six piqued gymnasts!</h6>
<h2>Relative buttons test</h2>
<h3>Primary</h3>
<table>
<tr>
<td>
<button class="gp-button gp-button-primary gp-button-small">Primary small</button>
</td><td>
<button class="gp-button gp-button-primary gp-button-small gp-button-icon-left">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
Primary small
</button>
</td><td>
<button class="gp-button gp-button-primary gp-button-small gp-button-icon-right">
Primary small
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td><td>
<button class="gp-button gp-button-primary gp-button-small gp-button-icon-only">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td>
</tr>
</table>
<table>
<tr>
<td>
<button class="gp-button gp-button-primary gp-button-default">Primary default</button>
</td><td>
<button class="gp-button gp-button-primary gp-button-default gp-button-icon-left">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
Primary default
</button>
</td><td>
<button class="gp-button gp-button-primary gp-button-default gp-button-icon-right">
Primary defaultf
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td><td>
<button class="gp-button gp-button-primary gp-button-default gp-button-icon-only">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td>
</tr>
</table>
<table>
<tr>
<td>
<button class="gp-button gp-button-primary gp-button-large">Primary large</button>
</td><td>
<button class="gp-button gp-button-primary gp-button-large gp-button-icon-left">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
Primary large
</button>
</td><td>
<button class="gp-button gp-button-primary gp-button-large gp-button-icon-right">
Primary large
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td><td>
<button class="gp-button gp-button-primary gp-button-large gp-button-icon-only">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td>
</tr>
</table>
<table>
<h3>Secondary</h3>
<table>
<tr>
<td>
<button class="gp-button gp-button-secondary gp-button-small">secondary small</button>
</td><td>
<button class="gp-button gp-button-secondary gp-button-small gp-button-icon-left">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
secondary small
</button>
</td><td>
<button class="gp-button gp-button-secondary gp-button-small gp-button-icon-right">
secondary small
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td><td>
<button class="gp-button gp-button-secondary gp-button-small gp-button-icon-only">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td>
</tr>
</table>
<table>
<tr>
<td>
<button class="gp-button gp-button-secondary gp-button-default">secondary default</button>
</td><td>
<button class="gp-button gp-button-secondary gp-button-default gp-button-icon-left">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
secondary default
</button>
</td><td>
<button class="gp-button gp-button-secondary gp-button-default gp-button-icon-right">
secondary defaultf
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td><td>
<button class="gp-button gp-button-secondary gp-button-default gp-button-icon-only">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td>
</tr>
</table>
<table>
<tr>
<td>
<button class="gp-button gp-button-secondary gp-button-large">secondary large</button>
</td><td>
<button class="gp-button gp-button-secondary gp-button-large gp-button-icon-left">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
secondary large
</button>
</td><td>
<button class="gp-button gp-button-secondary gp-button-large gp-button-icon-right">
secondary large
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td><td>
<button class="gp-button gp-button-secondary gp-button-large gp-button-icon-only">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td>
</tr>
</table>
<table>
<h3>Tertiary</h3>
<table>
<tr>
<td>
<button class="gp-button gp-button-tertiary gp-button-small">tertiary small</button>
</td><td>
<button class="gp-button gp-button-tertiary gp-button-small gp-button-icon-left">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
tertiary small
</button>
</td><td>
<button class="gp-button gp-button-tertiary gp-button-small gp-button-icon-right">
tertiary small
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td><td>
<button class="gp-button gp-button-tertiary gp-button-small gp-button-icon-only">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td>
</tr>
</table>
<table>
<tr>
<td>
<button class="gp-button gp-button-tertiary gp-button-default">tertiary default</button>
</td><td>
<button class="gp-button gp-button-tertiary gp-button-default gp-button-icon-left">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
tertiary default
</button>
</td><td>
<button class="gp-button gp-button-tertiary gp-button-default gp-button-icon-right">
tertiary defaultf
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td><td>
<button class="gp-button gp-button-tertiary gp-button-default gp-button-icon-only">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td>
</tr>
</table>
<table>
<tr>
<td>
<button class="gp-button gp-button-tertiary gp-button-large">tertiary large</button>
</td><td>
<button class="gp-button gp-button-tertiary gp-button-large gp-button-icon-left">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
tertiary large
</button>
</td><td>
<button class="gp-button gp-button-tertiary gp-button-large gp-button-icon-right">
tertiary large
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td><td>
<button class="gp-button gp-button-tertiary gp-button-large gp-button-icon-only">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
</button>
</td>
</tr>
</table>
<table>
<h1>Typography</h1>
<div class="block-wrap">
<div class="sample">
<p style="font-size: 1.5em;margin-bottom: 1rem;line-height:2rem;">
A pangram. How razorback-jumping frogs can level six piqued gymnasts! How razorback-jumping frogs can level six piqued gymnasts!
</p>
<p style="font-size: 1.5em;margin-bottom: 1rem;line-height:2rem;">
How razorback-jumping frogs can level six piqued gymnasts! How razorback-jumping frogs can level six piqued gymnasts!
</p>
</div>
<div class="moustache"></div>
<div class="dash"></div>
<div class="description">
<p class="system">
This document is set at <span class="highlight-pink">100%</span>. <br><br><br>If I want a paragraph written in <span class="highlight-yellow">24px</span> then I have to set that paragraph to:
</p>
<p>
<span class="system highlight-green">p =
<br>font-size : 1.5<span class="highlight-pink">em</span>;
<br>line-height : 2<span class="highlight-yellow">rem</span>;
<br>margin-bottom : 1<span class="highlight-yellow">rem</span>;
</span>
</p>
</div>
</div>
<div class="block-wrap">
<div class="sample">
<p style="font-size: 1.125em;margin-bottom: 1rem;line-height:1.5rem;">
How razorback-jumping frogs can level six piqued gymnasts! How razorback-jumping frogs can level six piqued gymnasts!</p>
<p style="font-size: 1.125em;margin-bottom: 1rem;line-height:1.5rem;">
How razorback-jumping frogs can level six piqued gymnasts! How razorback-jumping frogs can level six piqued gymnasts!</p>
</div>
<div class="moustache"></div>
<div class="dash"></div>
<div class="description">
<p class="system">This document is set at <span class="highlight-pink">100%</span>. <br><br>If I want a paragraph written in <span class="highlight-yellow">18px</span> then I have to set that paragraph to:
</p>
<p>
<span class="system highlight-green"> p =
<br>font-size : 1.125<span class="highlight-pink">em</span>;
<br>line-height : 1.5<span class="highlight-yellow">rem</span>;
<br>margin-bottom : 1<span class="highlight-yellow">rem</span>;
</span>
</p>
</div>
</div>
<div class="block-wrap">
<div class="sample">
<p style="font-size: 1.0em;margin-bottom: 1rem;line-height:1.5rem;">
How razorback-jumping frogs can level six piqued gymnasts! How razorback-jumping frogs can level six piqued gymnasts!</p>
<p style="font-size: 1.0em;margin-bottom: 1rem;line-height:1.5rem;">
How razorback-jumping frogs can level six piqued gymnasts! How razorback-jumping frogs can level six piqued gymnasts!</p>
</div>
<div class="moustache"></div>
<div class="dash"></div>
<div class="description">
<p class="system">This document is set at <span class="highlight-pink">100%</span>. <br><br>If I want a paragraph written in <span class="highlight-yellow">16px</span> then I have to set that paragraph to:
</p>
<p>
<span class="system highlight-green"> p =
<br>font-size : 1.0<span class="highlight-pink">em</span>;
<br>line-height : 1.5<span class="highlight-yellow">rem</span>;
<br>margin-bottom : 1<span class="highlight-yellow">rem</span>;
</span>
</p>
</div>
</div>
<div class="block-wrap">
<div class="sample">
<p style="font-size: 0.875em;margin-bottom: 1rem;line-height:1.0rem;">
How razorback-jumping frogs can level six piqued gymnasts! How razorback-jumping frogs can level six piqued gymnasts!</p>
<p style="font-size: 0.875em;margin-bottom: 1rem;line-height:1.0rem;">
How razorback-jumping frogs can level six piqued gymnasts! How razorback-jumping frogs can level six piqued gymnasts!</p>
</div>
<div class="moustache"></div>
<div class="dash"></div>
<div class="description">
<p class="system">This document is set at <span class="highlight-pink">100%</span>. <br><br>If I want a paragraph written in <span class="highlight-yellow">14px</span> then I have to set that paragraph to:
</p>
<p>
<span class="system highlight-green "> p =
<br>font-size: 0.875<span class="highlight-pink">em</span>;
<br>margin-bottom : 1.0<span class="highlight-yellow">rem</span>;
<br>line-height : 1.0<span class="highlight-yellow">rem</span>;
</span>
</p>
</div>
</div>
<div class="block-wrap">
<div class="sample">
<p style="font-size: 0.750em;margin-bottom: 0.5rem;line-height:1rem; ">How razorback-jumping frogs can level six piqued gymnasts! How razorback-jumping frogs can level six piqued gymnasts!</p>
<p style="font-size: 0.750em;margin-bottom: 0.5rem;line-height:1rem; ">How razorback-jumping frogs can level six piqued gymnasts! How razorback-jumping frogs can level six piqued gymnasts!</p>
</div>
<div class="moustache"></div>
<div class="dash"></div>
<div class="description">
<p class="system ">This document is set at <span class="highlight-pink ">100%</span>. <br><br>If I want a paragraph written in <span class="highlight-yellow ">12px</span> then I have to set that paragraph to:
</p>
<p>
<span class="system highlight-green "> p =
<br>font-size : 0.750<span class="highlight-pink">em</span>;
<br>margin-bottom : 0.25<span class="highlight-yellow">rem</span>;
<br>line-height : 1<span class="highlight-yellow">rem</span>;
</span>
</p>
</div>
</div>
<p>line-height:1.5rem Electricity is the movement of electrons. Electrons create charge, which we can harness to do work. Your lightbulb, your stereo, your phone, etc., are all harnessing the movement of the electrons in order to do work. They all
operate
using the same basic power source: the movement of electrons.</p>
<p style="line-height:2rem">line-height:2rem Electricity is the movement of electrons. Electrons create charge, which we can harness to do work. Your lightbulb, your stereo, your phone, etc., are all harnessing the movement of the electrons in
order to do work. They all operate
using the same basic power source: the movement of electrons.</p>
<h1>Tables</h1>
<h2>Default table</h2>
<table>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
<tr>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
</tr>
<tr>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
</tr>
<tr>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
</tr>
</tbody>
</table>
<h2>Condensed table</h2>
<table class="condensed">
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
<tr>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
</tr>
<tr>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
</tr>
<tr>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
</tr>
<tr>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
</tr>
</tbody>
</table>
<h2>Striped table</h2>
<table class="striped">
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
<tr>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
</tr>
<tr>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
</tr>
<tr>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
</tr>
</tbody>
</table>
<h2>Striped & Condensed table</h2>
<table class="striped condensed">
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
<tr>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
</tr>
<tr>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
</tr>
<tr>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
<td>How razorback-jumping frogs can level six piqued gymnasts!</td>
</tr>
</tbody>
</table>
<p>sdkjfh</p>
<h1>Forms</h1>
<p>The labels for the button rows below have their line-height set to the height of the highest element. So, the large buttons are 48px high, which means the labels have a line height of 3rem.</p>
<form action="" class="gp-form">
<fieldset>
<!-- Row -->
<div class="gp-form-row">
<!-- Row col 1-->
<div class="gp-form-col">
</div>
<!-- Row col 2-->
<div class="gp-form-col">
</div>
</div>
<!-- END Row -->
<p>The inputs have their border removed from their line-height - there's no padding involved</p>
<!-- Row -->
<div class="gp-form-row">
<!-- Row col 1-->
<div class="gp-form-col">
<div><label for="Telefonnummer">White buttons →</label></div>
</div>
<!-- Row col 2-->
<div class="gp-form-col">
<div>
<input type="text" class="gp-input-small">
</div>
</div>
</div>
<!-- END Row -->
<!-- Row -->
<div class="gp-form-row">
<!-- Row col 1-->
<div class="gp-form-col">
<div><label for="Telefonnummer">White buttons →</label></div>
</div>
<!-- Row col 2-->
<div class="gp-form-col">
<div>
<input type="text" class="gp-input-default">
</div>
</div>
</div>
<!-- END Row -->
<!-- Row -->
<div class="gp-form-row gp-form-row-lh-3rem">
<!-- Row col 1-->
<div class="gp-form-col">
<div><label for="Telefonnummer">White buttons →</label></div>
</div>
<!-- Row col 2-->
<div class="gp-form-col">
<div>
<input type="text" class="gp-input-big">
</div>
</div>
</div>
<!-- END Row -->
<!-- Row -->
<div class="gp-form-row gp-form-row-lh-3rem">
<!-- Row col 1-->
<div class="gp-form-col">
<div>
<label for="Telefonnummer">White buttons →</label><input type="radio" id="huey" name="drone" value="huey" checked>
</div>
</div>
</div>
<!-- END Row -->
<!-- Row -->
<div class="gp-form-row">
<!-- Row col 1-->
<div class="gp-form-col gp-form-row-lh-2rem">
<div><label for="Telefonnummer">White buttons →</label></div>
</div>
<!-- Row col 2-->
<div class="gp-form-col">
<div>
<button class="gp-button gp-button-primary gp-button-default gp-button-icon-left">
<span class="icon">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path d="M0 10c0 5.52 4.47 10 9.99 10C15.52 20 20 15.52 20 10S15.52 0 9.99 0C4.47 0 0 4.48 0 10zm2 0c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8-8-3.58-8-8zm7-2v7h2V8H9zm0-3v2h2V5H9z" fill-rule="evenodd"/>
</svg>
</span>
Icon-left
</button>
</div>
</div>
</div>
<!-- END Row -->
</fieldset>
</form>
<h1>Shadowy boxes</h1>
<div class="shadowbox background-white rounded padding-x2 margin-bottom-x2">
<p>This is a rounded box width x2 padding</p>
</div>
<div class="shadowbox background-green-mint-10percent rounded-top padding-x2 margin-bottom-x2">
<p>This is a rounded box with x1 padding</p>
</div>
<div class="background-green-mint-30percent padding-x1 rounded-top">as</div>
<div class="displaybox background-blue-sky-shade-70 padding-x2">
<p class="score">26%</p>
<p class="message blue-sky">Recyclability</p>
</div>
<div class="displaybox background-blue-sky-shade-80 padding-x1">
<p class="message green-mint">Dude!...that score sucks!...go pick another material....man!</p></div>
<header>
<h2>Emballasjematerial</h2>
<p>This is the sub header text</p>
</header>
</section>
</body>
</html>