-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_guide.html
More file actions
931 lines (780 loc) · 47.8 KB
/
style_guide.html
File metadata and controls
931 lines (780 loc) · 47.8 KB
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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<!--
************************************************************************************************
* *
* DDDD EEEEEE SSSS II GGGG NN NN AAA TTTTTTTT II OOO NN NN *
* DDDDDD EE SS SS II GG GG NNN NN AAAAA TT II OO OO NNN NN *
* DD DD EE SS II GG NN N NN AA AA TT II OO OO NN N NN *
* DD DD EEEEE SSS II GG GGGGG NN N NN AA AA TT II OO OO NN N NN *
* DD DD EE SSS II GG GG NN N NN AAAAAAA TT II OO OO NN N NN *
* DDDDDD EE SS SS II GG GG NN NNN AA AA TT II OO OO NN NNN *
* DDDD EEEEEE SSSS II GGGG NN NN AA AA TT II OOO NN NN *
* *
************************************* www.designation.io ***************************************
-->
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<meta charset='UTF-8'>
<title>DESIGNATION: Style Guide</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="description" content="Become a designer. Learn user experience, web design, and graphic design to build websites, mobile applications, and change careers.">
<meta name="author" content="DESIGNATION Labs">
<meta name="language" content="ES">
<meta name="application-name" content="DESIGNATION">
<meta name="copyright" content="DESIGNATION">
<meta name="url" content="http://designation.io">
<meta name="keywords" content="DESIGNATION, thedesignation,designation IO, designationIO, designation,the designation,Design,UX,User Experience,UI,Visual Design,Branding,Graphic Design,Digital Design,Front-end Development,Front-end Web Development,Frontend,Frontend Dev,Development,HTML,CSS,JavaScript,jQuery,Design school,School,Class,Design class,Digital design school,digital design,tech school,tech class, tech education, interaction design, Digital design class,technology,entrepreneurship,user interface,learn photoshop, learn web design, learn digital design,learn illustrator,learn adobe,designing interactions,layout design,typography,mobile design,responsive design">
<!--Open graph-->
<meta name="og:title" content="DESIGNATION: Design a new career." />
<meta name="og:type" content="website" />
<meta name="og:url" content="http://designation.io" />
<meta name="og:image" content="http://designation.io/img/icons_social/open_graph.png" />
<meta name="og:site_name" content="DESIGNATION: Design a new career."/>
<meta name="fb:page_id" content="388435334586956" />
<meta name="og:email" content="team@designation.io"/>
<meta name="og:region" content="IL"/>
<meta name="og:country-name" content="USA"/>
<meta name="og:description" content="Become a designer. Learn user experience, web design, and graphic design to build websites, mobile applications, and change careers with Chicago's leading web design program.">
<meta property="fb:admins" content="1289433233">
<!-- Twitter cards -->
<meta name="twitter:card" content="DESIGNATION: Design a new career.">
<meta name="twitter:url" content="http://designation.io">
<meta name="twitter:title" content="DESIGNATION: Design a new career.">
<meta name="twitter:description" content="Become a designer. Learn user experience, web design, and graphic design to build websites, mobile applications, and change careers with Chicago's leading web design program.">
<meta name="twitter:image" content="http://designation.io/img/icons_social/open_graph.png">
<!-- CSS
================================================== -->
<link rel="stylesheet" type="text/css" href="css/shared_magic.css">
<link rel="stylesheet" type="text/css" href="css/shared_animate.css">
<link rel="stylesheet" type="text/css" href="css/shared_designation.css"> <!-- base company styles -->
<link rel="stylesheet" type="text/css" href="css/shared_responsive.css"> <!-- shared media queries -->
<link rel="stylesheet" type="text/css" href="css/style_guide.css"> <!-- this page's stylesheet -->
<link rel="stylesheet" type="text/css" href="css/shared_easybox.css"> <!-- for video styles -->
<link rel="stylesheet" media="only screen and (max-device-width: 1024px)" href="css/ipad/style_guide.css" type="text/css" /> <!-- iPad styling -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="img/favicon/favicon.ico">
<link rel="apple-touch-icon" sizes="57x57" href="img/favicon/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="114x114" href="img/favicon/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="72x72" href="img/favicon/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="144x144" href="img/favicon/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="60x60" href="img/favicon/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon" sizes="120x120" href="img/favicon/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="76x76" href="img/favicon/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="152x152" href="img/favicon/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="img/favicon/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="img/favicon/favicon-160x160.png" sizes="160x160" />
<link rel="icon" type="image/png" href="img/favicon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="img/favicon/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="img/favicon/favicon-16x16.png" sizes="16x16" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="msapplication-TileImage" content="img/favicon/mstile-144x144.png" />
<meta name="msapplication-square70x70logo" content="img/favicon/mstile-70x70.png" />
<meta name="msapplication-square144x144logo" content="img/favicon/mstile-144x144.png" />
<meta name="msapplication-square150x150logo" content="img/favicon/mstile-150x150.png" />
<meta name="msapplication-square310x310logo" content="img/favicon/mstile-310x310.png" />
<meta name="msapplication-wide310x150logo" content="img/favicon/mstile-310x150.png" />
<!-- typekit -->
<script type="text/javascript" src="//use.typekit.net/ezr2vao.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<!-- GOOGLE ANALYTICS -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-38551667-3', 'designation.io');
ga('send', 'pageview');
</script>
<!-- MAILCHIMP GOAL TRACKING -->
<script type="text/javascript">
var $mcGoal = {'settings':{'uuid':'f5c7579668f546f2132350384','dc':'us5'}};
(function() {
var sp = document.createElement('script'); sp.type = 'text/javascript'; sp.async = true; sp.defer = true;
sp.src = ('https:' == document.location.protocol ? 'https://s3.amazonaws.com/downloads.mailchimp.com' : 'http://downloads.mailchimp.com') + '/js/goal.min.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(sp, s);
})();
</script>
</head>
<body>
<!-- NAVIGATION -->
<div class="main_nav_items">
<a href="index" onclick="ga('send', 'event', 'href', 'Home', 'Full white logo header link');"><img class="shown_logo" alt="Designation" src="img/logo/logo_white(585x80).png" onmouseover="hover(this);" onmouseout="unhover(this);" /></a>
<a href="index" onclick="ga('send', 'event', 'href', 'Home', 'White mark logo header link');"><img class="hidden_mark" alt="Designation" src="img/logo/mark_white(200x200).png" onmouseover="hover(this);" onmouseout="unhover(this);" /></a>
<div class="right-side-nav-items">
<a onclick="ga('send', 'event', 'href', 'Learn Design', 'Learn Design main nav link');" href="learn_design">Learn<span class="hide_on_width_squeeze"> Design</span></a>
<a onclick="ga('send', 'event', 'href', 'FAQ', 'FAQ main nav link');" href="faq">FAQ</a>
<a onclick="ga('send', 'event', 'href', 'Hire Talent', 'Hire Talent main nav link');" href="hire_talent">Hire<span class="hide_on_width_squeeze"> Talent</span></a>
<a onclick="ga('send', 'event', 'href', 'About Us', 'About Us main nav link');" href="about_us">About<span class="hide_on_width_squeeze"> Us</span></a>
<a onclick="ga('send', 'event', 'href', 'Blog', 'Blog main nav link');" href="/blog">Blog</a>
<a onclick="ga('send', 'event', 'href', 'Apply', 'Apply main nav blue button');" href="apply"><div style="display: inline-block" class="apply_in_right"><div class="button_blue_solid" style="padding: 5px 20px;"><strong>Apply</strong></div></div></a>
</div>
</div>
<nav>
<div style="height: 50px;"> <!-- main height of nav bar. Remember to change in CSS and JS as well -->
</div>
<div class="temp_nav main_temp_nav" > <!-- height is 40px -->
<a class="stickybar_link1" href="#logo" onclick="ga('send', 'event', 'href', 'Logo anchorlink', 'Logo sub nav 1 anchorlink');">Logo</a>
<a class="stickybar_link2" href="#adjectives" onclick="ga('send', 'event', 'href', 'Adjectives anchorlink', 'Adjectives sub nav 1 anchorlink');">Adjectives</a>
<a class="stickybar_link3" href="#colors" onclick="ga('send', 'event', 'href', 'Colors anchorlink', 'Colors sub nav 1 anchorlink');">Colors</a>
<a class="stickybar_link4" href="#typography" onclick="ga('send', 'event', 'href', 'Typography anchorlink', 'Typography sub nav 1 anchorlink');">Typography</a>
<a class="stickybar_link5" href="#buttons" onclick="ga('send', 'event', 'href', 'Buttons anchorlink', 'Buttons sub nav 1 anchorlink');">Buttons</a>
<a class="stickybar_link6" href="#forms" onclick="ga('send', 'event', 'href', 'Forms anchorlink', 'Forms sub nav 1 anchorlink');">Forms</a>
<a class="stickybar_link7" href="#images" onclick="ga('send', 'event', 'href', 'Images anchorlink', 'Images sub nav 1 anchorlink');">Images</a>
</div>
</nav>
<!-- END NAVIGATION -->
<!-- HERO IMAGE -->
<div id="hero_wrapper" >
<div id="hero_description">
<div class="h1_and_p_wrapper">
<h1 style="font-family: 'Minion Pro', 'minion-pro', serif;"><i>Style Guide</i></h1>
<p class="white futura">Official branding and UI guidelines</p>
<br>
<div class="arrow-container" style="display:inline-block"><a onclick="ga('send', 'event', 'href', 'Learn more arrow anchorlink', 'Bouncing arrow provoking user to scroll down');" href="#logo"><div class="arrow-down"></div></a></div>
</div>
</div>
</div>
<div class="temp_nav display_hidden_soon" > <!-- height is 40px -->
<a href="#logo" onclick="ga('send', 'event', 'href', 'Images anchorlink', 'Images sub nav 2 anchorlink');">Logo</a>
<a href="#adjectives" onclick="ga('send', 'event', 'href', 'Adjectives anchorlink', 'Adjectives sub nav 2 anchorlink');">adjectives</a>
<a href="#colors" onclick="ga('send', 'event', 'href', 'Colors anchorlink', 'Colors sub nav 2 anchorlink');">Colors</a>
<a href="#typography" onclick="ga('send', 'event', 'href', 'Typography anchorlink', 'Typography sub nav 2 anchorlink');">Typography</a>
<a href="#buttons" onclick="ga('send', 'event', 'href', 'Buttons anchorlink', 'Buttons sub nav 2 anchorlink');">Buttons</a>
<a href="#forms" onclick="ga('send', 'event', 'href', 'Forms anchorlink', 'Forms sub nav 2 anchorlink');">Forms</a>
<a href="#images" onclick="ga('send', 'event', 'href', 'Images anchorlink', 'Images sub nav 2 anchorlink');">Images</a>
</div>
<!-- _________________ MAIN MEATY CSS: LOGO / THEME / COLORS / TYPOGRAPHY / BUTTONS / FORMS / IMAGES _________________-->
<!-- LOGO DIV -->
<div class="logo" anchor="logo">
<h2 class="futura black center">Logo</h2><br>
<div class="takes_up_three">
<div class="takes_up_three_1of3">
<div class="card_wrap">
<img src="img/logo/logo_color(585x80).png" style="max-height: 40px" alt="Logo Color"><br/>
</div>
<div class="card_wrap_under">Color Logo</div>
</div>
<div class="takes_up_three_2of3">
<div class="card_wrap">
<img src="img/logo/logo_white(585x80).png" style="max-height: 40px" alt="Logo White">
</div>
<div class="card_wrap_under">White Logo</div>
</div>
<div class="takes_up_three_3of3">
<div class="card_wrap">
<img src="img/logo/logo_black(585x80).png" style="max-height: 40px" alt="Logo Black">
</div>
<div class="card_wrap_under">Black Logo</div>
</div>
</div>
<div class="clear-both"></div>
</div> <!-- /LOGO DIV -->
<!-- ADJECTIVES -->
<div class=" adjectives" anchor="adjectives">
<h2 class="futura white center">Adjectives</h2><br>
<div class="takes_up_two white">
<div class="h4 takes_up_two_1of2">Clear</div>
<div class="h4 takes_up_two_2of2">Modern</div>
<div class="clear-both"></div>
</div>
<div class="takes_up_two white">
<div class="h4 takes_up_two_1of2">Polished</div>
<div class="h4 takes_up_two_2of2">Flat</div>
<div class="clear-both"></div>
</div>
<div class="takes_up_two white">
<div class="h4 takes_up_two_1of2">Clean</div>
<div class="h4 takes_up_two_2of2">Pleasant</div>
<div class="clear-both"></div>
</div>
<div class="takes_up_two white">
<div class="h4 takes_up_two_1of2">Honest</div>
<div style="font-family: 'Comic Sans MS';" class="h4 takes_up_two_2of2">Humorous</div>
<div class="clear-both"></div>
</div>
<div class="clear-both"></div>
</div> <!-- ADJECTIVES -->
<!-- COLORS -->
<div class="colors" anchor="colors">
<h2 class="futura black center">Colors</h2><br>
<h4 class="futura black_lighter center">Primary Colors</h4><br>
<p class="black center">Blue is used for buttons. Bold Blue is used in flat iconography and saturated in HD backgrounds via color overlay. Black and White should be used for text and primary navigation UI components.</p><br><br>
<div class="takes_up_four">
<div class="takes_up_four_1of4">
<div class="card_wrap" style="background: #5189B4; height: 100px">
</div>
<div class="card_wrap_under">
Blue<br/>#5189B4
</div>
</div>
<div class="takes_up_four_2of4">
<div class="card_wrap" style="background: #174e76; height: 100px">
</div>
<div class="card_wrap_under">
Bold Blue<br/>#174e76
</div>
</div>
<div class="takes_up_four_3of4">
<div class="card_wrap" style="background: #222222; height: 100px">
</div>
<div class="card_wrap_under">
Black<br/>#222222
</div>
</div>
<div class="takes_up_four_4of4">
<div class="card_wrap" style="background: #fcfcfc; height: 100px">
</div>
<div class="card_wrap_under">
White<br/>#FCFCFC
</div>
</div>
</div>
<div style="padding-top: 50px" class="clear-both"></div>
<h4 class="futura black_lighter center">Secondary Colors</h4><br>
<p class="black_lighter center">Green is predominantly used with important call-to-action buttons, but can be used sparingly for other UI elements. Transparent Black is used for sub-navigation menus. Light Black is used in body text when Black is the heading color. Grey is used in body when White is the heading color. Light Grey is used to subtly separate elements with use of a 1px border.</p><br><br>
<div class="takes_up_five">
<div class="takes_up_five_1of5">
<div class="card_wrap" style="background: #4EBD8D; height: 100px">
</div>
<div class="card_wrap_under">
Green<br/>#4EBD8D
</div>
</div>
<div class="takes_up_five_2of5">
<div class="card_wrap" style="background: rgba(34, 34, 34, 0.7); height: 100px">
</div>
<div class="card_wrap_under">
Transparent Black<br/>#222222<br/>(0.8 opacity)
</div>
</div>
<div class="hide_until_responsive clear-both"></div>
<div class="takes_up_five_3of5">
<div class="card_wrap" style="background: #777777; height: 100px">
</div>
<div class="card_wrap_under">
Light Black<br/>#777777
</div>
</div>
<div class="takes_up_five_4of5">
<div class="card_wrap" style="background: #a7a7a7; height: 100px">
</div>
<div class="card_wrap_under">
Grey<br/>#A7A7A7
</div>
</div>
<div class="hide_until_responsive clear-both"></div>
<div class="takes_up_five_5of5">
<div class="card_wrap" style="background: #e5e5e5; height: 100px">
</div>
<div class="card_wrap_under">
Light Grey<br/>#E5E5E5
</div>
</div>
</div>
<div class="clear-both"></div>
</div> <!-- /COLORS -->
<!-- TYPOGRAHPY -->
<div class="typography" anchor="typography">
<h2 class="futura white center">Typography</h2><br>
<div class="futura white_darker center">Minion Pro (Italic) in normal weight is used for main page headings. Futura PT is used for all other headings and body text.</div><br><br>
<div class="takes_up_one">
<div class="takes_up_one_1of1 white_darker center">
<div class="takes_up_five">
<div class="takes_up_five_1of5">
<div class="card_wrap" style="background: #fcfcfc; height: 100px; width: 76%;">
<span class="black minion_pro" style="font-family: 'Minion Pro'; font-weight: 100"><strong>Aa</strong></span>
</div>
<div class="card_wrap_under">
<span class="minion_pro" style="font-weight: normal">Minion Pro<br/>Italic</span>
</div>
</div>
<div class="takes_up_five_2of5">
<div class="card_wrap" style="background: #fcfcfc; height: 100px; width: 76%;">
<span class="black" style="font-weight: 100">Aa</span>
</div>
<div class="card_wrap_under">
<span style="font-weight: 100">Futura PT<br/>Light</span>
</div>
</div>
<div class="hide_until_responsive clear-both"></div>
<div class="takes_up_five_3of5">
<div class="card_wrap" style="background: #fcfcfc; height: 100px; width: 76%;">
<span class="black" style="font-weight: 300">Aa</span>
</div>
<div class="card_wrap_under">
<span style="font-weight: 300">Futura PT<br/>Book</span>
</div>
</div>
<div class="takes_up_five_4of5">
<div class="card_wrap" style="background: #fcfcfc; height: 100px; width: 76%;">
<span class="black" style="font-weight: 500">Aa</span>
</div>
<div class="card_wrap_under">
<span style="font-weight: 500">Futura PT<br/>Medium</span>
</div>
</div>
<div class="hide_until_responsive clear-both"></div>
<div class="takes_up_five_5of5">
<div class="card_wrap" style="background: #fcfcfc; height: 100px; width: 76%;">
<span class="black" style="font-weight: 700">Aa</span>
</div>
<div class="card_wrap_under">
<span style="font-weight: 700">Futura PT<br/>Bold</span>
</div>
</div>
</div>
<div style="padding-top: 1.4em" class="clear-both"></div>
<div style=" font-weight: 500;">H1</div>
<h1 class="heading_header1 minion_pro">Minion Pro Heading #1</h1>
<br>
<div style=" font-weight: 500">H2</div>
<h2 class="heading_header2 minion_pro">Minion Pro Heading #2</h2>
<br>
<div style="font-weight: 500">24px</div>
<div style="font-size: 24px">Lorem ipsum is here to demonstrate Futura PT in usage.</div><br/>
<div style="font-weight: 500">22px</div>
<div style="font-size: 22px">Lorem ipsum is here to demonstrate Futura PT in usage.</div><br/>
<div style="font-weight: 500">20px</div>
<div style="font-size: 20px">Lorem ipsum is here to demonstrate Futura PT in usage.</div><br/>
<div style="font-weight: 500">18px</div>
<div style="font-size: 18px">Lorem ipsum is here to demonstrate Futura PT in usage.</div><br/>
<div style="font-weight: 500">16px</div>
<div style="font-size: 16px">Lorem ipsum is here to demonstrate Futura PT in usage.</div><br/>
<div style="font-weight: 500">14px</div>
<div style="font-size: 14px">Lorem ipsum is here to demonstrate Futura PT in usage.</div><br/>
<div style="font-weight: 500">12 px</div>
<div style="font-size: 12px">Lorem ipsum is here to demonstrate Futura PT in usage.</div><br/>
</div>
</div>
</div> <!-- /TYPOGRAPHY -->
<!-- BUTTONS -->
<div class=" buttons" anchor="buttons">
<h2 class="futura black center">Buttons</h2><br>
<p class="center black_lighter">Transparent-background Blue buttons are used in body text. Solid Blue buttons are used for prominent call-to-actions, typically in a fixed UI element (e.g., navigation bar). Solid Green buttons are used for call-to-actions that have the highest priority. Transparent-background Green buttons are used sparingly, usually to complement Transparent-background Blue buttons. Anchor links are represented by underlined text. <a class="text_link" href="downloads/designation_buttons.html" onclick="ga('send', 'event', 'href', 'Download', 'Download CSS zip for Button and anchor links');" download="downloads/designation_buttons.html">Download CSS for Button and Anchor Links</a>.</p><br/><br/>
<div class="takes_up_four black">
<div class="takes_up_four_1of4">
<div class="card_wrap">
<div class="button_blue"><strong>Button</strong></div>
</div>
<div class="card_wrap_under">
Transparent-background Blue
</div>
</div>
<div class="takes_up_four_2of4">
<div class="card_wrap">
<div class="button_blue_solid"><strong>Button</strong></div>
</div>
<div class="card_wrap_under">
Solid Blue
</div>
</div>
<div class="takes_up_four_3of4">
<div class="card_wrap">
<div class="button_green"><strong>Button</strong></div>
</div>
<div class="card_wrap_under">
Transparent-background Green
</div>
</div>
<div class="takes_up_four_4of4">
<div class="card_wrap">
<div class="button_white-green_solid"><strong>Button</strong></div>
</div>
<div class="card_wrap_under">
Solid Green
</div>
</div>
</div>
<div class="clear-both" style="padding-top: 50px; position: relative;"></div>
<div class="takes_up_two black">
<div class="takes_up_two_1of2">
<div class="card_wrap">
<div class="button_white-blue_solid button_larger"><strong>Large Button</strong></div>
</div>
<div class="card_wrap_under">
Solid Blue
</div>
</div>
<div class="hide_until_responsive clear-both"></div>
<div class="takes_up_two_1of2">
<div class="card_wrap">
<div class="button_white-green_solid button_larger"><strong>Large Button</strong></div>
</div>
<div class="card_wrap_under">
Solid Green
</div>
</div>
</div>
<div class="clear-both" style="padding-top: 50px; position: relative;"></div>
<div class="takes_up_one black" style="margin: 0 auto; text-align: center">
<div class="takes_up_one_1of1">
<div class="card_wrap">
<a class="text_link">This is what a text anchor link looks like</a>
</div>
<div class="card_wrap_under">
Anchor Link
</div>
</div>
</div>
<div class="clear-both"></div>
</div> <!-- /BUTTONS -->
<!-- FORMS -->
<div class="forms" anchor="forms">
<h2 class="futura white center">Forms</h2><br>
<h4 class="futura black_lighter center">Single-submission form fields</h4><br>
<p class="center white_darker">Single-submission fields are simple, rectangular boxes, typically meant for signing up a user's email. <a class="text_link2" href="downloads/designation_forms.html" onclick="ga('send', 'event', 'href', 'Download', 'Download CSS zip for Forms');" download="downloads/designation_forms.html">Download CSS for Single-Submission Form Fields</a>.</p><br>
<div class="takes_up_one">
<div class="takes_up_one_1of1">
<input type="email" value="" name="EMAIL" class="form_field" placeholder="Form field" required style="border-radius: 0 !important; font-family: 'futura-pt', 'Futura Std', 'futura', sans-serif; font-size: 0.8em">
</div>
</div>
<br><br>
<h4 class="futura black_lighter center">Multiple-submission form fields</h4><br>
<p class="center white_darker">Multiple-submission form fields use a mix of <a href="http://jotform.us" class="text_link2" target="_blank">Jotform</a> native styling, and a clean, simple interface.</p><br>
<div class="takes_up_one">
<div class="takes_up_one_1of1" style="font-size: 0.8em">
Please see our <a class="text_link2" href="apply">Apply page</a> for form field styling and error messages in action.
</div>
</div>
</div> <!-- /FORMS -->
<!-- IMAGES -->
<div class="images" anchor="images">
<h2 class="futura black center">Images</h2><br>
<h4 class="futura black_lighter center">Inline Images</h4><br>
<p class="center black_lighter">All inline images should have the border-radius of a perfect circle.</p>
<br>
<div class="image_wrap inline_pic">
<img src="img/icons_flat/code.png" alt="Code" style="border-radius: 9999px">
</div>
<div class="image_wrap inline_pic">
<img src="img/team/zeke_franco.jpg" alt="Zeke" style="border-radius: 9999px">
</div>
<div class="image_wrap inline_pic">
<img src="img/icons_flat/graphics.png" alt="Graphics" style="border-radius: 9999px">
</div>
<div class="image_wrap inline_pic">
<img src="img/team/jj_lee.jpg" alt="JJ" style="border-radius: 9999px">
</div>
<div style="clear: both"></div>
<div style="padding-top: 50px" class="clear-both"></div>
<h4 class="futura black_lighter center">Background Images</h4><br>
<p class="center black_lighter">Dark HD images should be used as backgrounds that span the entire width of the body. Use images that have vignette filtered edges, and a 'Linear Burn' color overlay of Bold Blue (#174e76) with an opacity ranging from 10% to 20%.</p><br><br>
</div> <!-- /IMAGES -->
<div class="images_continued1">
<h2 class="minion_pro white center">Example #1</h2><br>
</div>
<div class="images_continued2">
<h2 class="minion_pro white center">Example #2</h2><br>
</div>
<div class="images_continued3">
<h2 class="minion_pro white center">Example #3</h2><br>
</div>
<div class="images_continued4">
<h2 class="minion_pro white center">Example #4</h2><br>
</div>
<div class="images_continued5">
<h2 class="minion_pro white center">Example #5</h2><br>
</div>
<!-- _________________ /MAIN MEATY CSS: LOGO / THEME / COLORS / TYPOGRAPHY / BUTTONS / FORMS / IMAGES _________________-->
<!-- DOWNLOAD DIV -->
<!--
<div class=".download download">
<h4 class="futura white">Download UI components in HTML/CSS.</h4>
<div class="h white_lighter" style="padding-top: 1.45em">
<a href="apply.html"><div class="button_white-blue" style="font-size: 0.9em;"><strong>Download Zip</strong></div></a>
</div>
</div>
--> <!-- /DOWNLOAD DIV -->
<!-- SUBSCRIBE DIV -->
<div class="subscribe_div learn_more tuition" anchor="tuition">
<h3 class="minion_pro black">The world needs more design talent<span style="margin-right: 5px; margin-left: -1px; position: relative;"></h3><br>
<div class="h black_lighter">
<a href="apply" onclick="ga('send', 'event', 'href', 'Apply', 'Apply big green button near page bottom');"><div class="button_white-green_solid button_large" style="font-size: 1em;"><strong>Apply Now</strong></div></a>
</div>
</div>
<!-- /SUBSCRIBE DIV -->
<!-- SUBSCRIBE DIV -->
<div class="apply_div subscribe" anchor="subscribe" >
<h3 class="minion_pro white">Learn more</h3><br>
<div class="h white">
Enter your email below to view the complete Program Roadmap.
<form style="margin-top: 1.45em" action="http://thedesignation.us5.list-manage2.com/subscribe/post?u=f5c7579668f546f2132350384&id=a246930c5d" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<input type="email" value="" name="EMAIL" class="email submit_field" id="mce-EMAIL" placeholder="nyan@cat.com" required style="margin: 0 !important; border-radius: 0 !important; height: 34px; width: 25%; padding: 10px; font-size: 1em; font-family: 'futura-pt', 'Futura Std', 'Futura', sans-serif; border: 1px solid #e5e5e5">
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;"><input type="text" name="b_f5c7579668f546f2132350384_a246930c5d" value=""></div>
<input onclick="ga('send', 'event', 'href', 'Subscribe', 'Big, green Subscribe button in Program Roadmap div');" type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe(NULLED_THIS_ID)" class="button_subscribe" style="position: relative; font-family: 'futura-pt', 'Futura Std', sans-serif"><br>
<span class="white -h4">No spam ever. We promise.</span>
</form>
<br>
</div>
</div>
<!-- /SUBSCRIBE DIV -->
<!-- FOOTER -->
<footer>
<div class="-h4 footer_wrapper">
<div class="footer_col1">
<div class="footer_col1_content">
<span><strong>About Us</strong></span><br>
<a onclick="ga('send', 'event', 'href', 'What We Do', 'What We Do footer link');" class="button_no_underline_white_to_blue" href="about_us#what_we_do">What We Do</a><br>
<a onclick="ga('send', 'event', 'href', 'Team', 'Team footer link');" class="button_no_underline_white_to_blue" href="about_us#team">Team</a><br>
<a onclick="ga('send', 'event', 'href', 'Press', 'Press footer link');" class="button_no_underline_white_to_blue" href="about_us#press">Press</a><br>
<a onclick="ga('send', 'event', 'href', 'Contact Us', 'Contact Us footer link');" class="button_no_underline_white_to_blue" href="about_us#contact_us">Contact Us</a><br>
<br>
<span><strong>Social</strong></span><br>
<a onclick="ga('send', 'event', 'href', 'Blog', 'Blog footer link');" class="button_no_underline_white_to_blue" href="/blog">Blog</a><br>
<a onclick="ga('send', 'event', 'href', 'Facebook', 'Facebook footer link');" class="button_no_underline_white_to_blue" href="http://facebook.com/Designation" target="_blank">Facebook</a><br>
<a onclick="ga('send', 'event', 'href', 'Twitter', 'Twitter footer link');" class="button_no_underline_white_to_blue" href="http://twitter.com/designationIO" target="_blank">Twitter</a><br>
<br>
<span><strong>Playground</strong></span><br>
<a onclick="ga('send', 'event', 'href', 'Style Guide', 'Style Guide footer link');" class="button_no_underline_white_to_blue" href="/style_guide">Style Guide</a><br>
<a onclick="ga('send', 'event', 'href', 'Dedesigntheweb.com', 'Dedesigntheweb.com footer link');" class="button_no_underline_white_to_blue" href="http://dedesigntheweb.com" target="_blank">Dedesign the Web</a><br>
</div>
</div>
<div class="footer_col2">
<div class="footer_col2_content">
<span><strong>For Students</strong></span><br>
<a onclick="ga('send', 'event', 'href', 'Learn Design', 'Learn Design footer link');" class="button_no_underline_white_to_blue" href="learn_design">Learn Design</a><br>
<a onclick="ga('send', 'event', 'href', 'FAQ', 'FAQ footer link');" class="button_no_underline_white_to_blue" href="faq">FAQ</a><br>
<a onclick="ga('send', 'event', 'href', 'Apply', 'Apply footer link');" class="button_no_underline_white_to_blue" href="apply">Apply</a><br>
<br>
<span><strong>For Companies</strong></span><br>
<a onclick="ga('send', 'event', 'href', 'Hire Talent', 'Hire Talent footer link');" class="button_no_underline_white_to_blue" href="hire_talent">Hire Talent</a><br>
<a onclick="ga('send', 'event', 'href', 'Become a Client', 'Become a Client footer link');" class="button_no_underline_white_to_blue" href="black">Become a Client</a><br>
<br>
<span><strong>Legal Stuff</strong></span><br>
<a onclick="ga('send', 'event', 'href', 'Privacy Policy', 'Privacy Policy footer link');" class="button_no_underline_white_to_blue" href="privacy_policy">Privacy Policy</a><br>
<a onclick="ga('send', 'event', 'href', 'Terms of Service', 'Terms of Service footer link');" class="button_no_underline_white_to_blue" href="terms_of_service">Terms of Service</a><br>
<a onclick="ga('send', 'event', 'href', 'Attributions', 'Attributions footer link');" class="button_no_underline_white_to_blue" href="attributions">Attributions</a><br>
<br>
</div>
</div>
<div class="footer_col3">
<div class="footer_col3_content">
<span><strong>Subscribe</strong></span><br>
Enter your email to keep up with our latest updates.
<!-- Begin MailChimp Signup Form -->
<form action="http://thedesignation.us5.list-manage2.com/subscribe/post?u=f5c7579668f546f2132350384&id=a246930c5d" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate footer_subscribe_form" target="_blank" novalidate>
<input type="email" value="" name="EMAIL" class="email submit_field" id="mce-EMAIL" placeholder="nyan@cat.com" required>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;"><input type="text" name="b_f5c7579668f546f2132350384_a246930c5d" value=""></div>
<input onclick="ga('send', 'event', 'href', 'Subscribe', 'Small Subscribe blue button in footer');" type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="footer_subscribe_button button_blue_solid" >
</form>
<!--End mc_embed_signup-->
<br>
<p style="color: #9e9e9e;">DESIGNATION Labs © 2014</p>
<p style="color: #9e9e9e" class="-h4 konami_directions">Try this: ↑ ↑ ↓ ↓ ← → ← → B A</p>
<img id="cities" alt="Chicago" src="img/icons_flat/cities.png" style="position: absolute; bottom: 0; right: 0;">
</div>
</div>
</div>
<div style="clear:both;"></div>
</footer> <!-- /FOOTER -->
<!-- START SCRIPTS -->
<!-- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>-->
<script type="text/javascript" src="js/jquery-1.7.min.js"></script>
<script type="text/javascript" src="js/waypoints.js"></script>
<script type="text/javascript" src="js/waypoints-sticky.js"></script>
<script type="text/javascript" src="js/jquery.stellar.min.js"></script>
<script type="text/javascript" src="js/ddscrollspy.js"></script>
<script type="text/javascript" src="js/jquery.popup.js"></script>
<script type="text/javascript" src="js/easybox.distrib.min.js"></script>
<script type="text/javascript" src="js/jquery.responsImg.js"></script>
<script type="text/javascript" src="js/jquery.tinycarousel.min.js"></script>
<script type="text/javascript" src="js/konami_code.js"></script>
<script type="text/javascript" src="js/fade_hero.js"></script>
<script type="text/javascript" src="js/fade_nav.js"></script>
<script type="text/javascript" src="js/general.js"></script>
<style type="text/css">
.icon_and_text {
-vendor-animation-duration: 1s;
-vendor-animation-delay: 2s;
-webkit-animation-iteration-count: 0;
-moz-animation-iteration-count: 0;
-ms-animation-iteration-count: 0;
-o-animation-iteration-count: 0;
animation-iteration-count: 0;
}
</style>
<!-- CSS3 Animations on scroll: Testiomonials fade in-->
<script>
var hero_wrapper_height = $("#hero_wrapper").outerHeight();
var overview_height = $(".overview").outerHeight();
var curriculum_height = $(".curriculum").outerHeight();
var careers_height = $(".careers").outerHeight();
var alumni_height = $(".alumni").outerHeight();
$('.icon_and_text').css("opacity","0");
$(window).scroll(function() {
$('.icon_and_text').each(function(){
var Pos = $(this).offset().top;
var topOfWindow = $(window).scrollTop();
if (Pos < topOfWindow+hero_wrapper_height + overview_height) {
$(this).addClass("magic fadeIn");
$(this).css("opacity","1");
}
});
});
</script>
<script type="text/javascript">
/* declaring heights of divs */
/*
var the_program = $(".the_program").outerHeight();
var curriculum = $(".curriculum").outerHeight();
var find_a_job = $(".find_a_job").outerHeight();
var alumni = $(".alumni").outerHeight();
var hero_height = $('#hero_description').outerHeight();
var curriculum_wrapper = $(".curriculum div div .content_wrapper").outerHeight();
*/
</script>
<!-- Parallax background effects -->
<script type="text/javascript">
$(window).stellar({ horizontalScrolling: false });
</script>
<!-- sticky nav bar -->
<script type="text/javascript">
$(document).ready(function() {
$('.my-sticky-element').waypoint('sticky');
});
</script>
<!--ARBITARY ANCHOR JS FOR SMOOTH-SCROLLING ANCHORLINKS -->
<script type="text/javascript" src="js/jquery.arbitrary-anchor.js"></script>
<!-- Hide company logo & apply button on scroll, and show hidden menu Logo and Apply Now button -->
<script type="text/javascript">
$(document).ready(function() {
// magic-transition the Apply button on document load
jQuery('.apply_button').addClass('magictime tinRightIn');
// $('nav').hide();
// pop up new logo on scroll past 600px
$(window).scroll(function(){
var windowsize = $(window).width();
var fromTopPx = 599 - 50; // distance to trigger (40 is the height of the main nav bar)
var scrolledFromtop = jQuery(window).scrollTop();
if(scrolledFromtop > fromTopPx){
// $('.company_logo').hide();
// $('.apply_button').hide();
// $('.company_logo_in_nav').css("display","inline");
// $('.apply_button_in_nav').css("display","inline");
$('nav').css("display","inline");
$('.display_hidden_soon').css("visibility","hidden");
} else {
// jQuery('.company_logo').show();
// jQuery('.apply_button').show();
jQuery('nav').show();
// $('.company_logo_in_nav').css("display","none");
// $('.apply_button_in_nav').css("display","none");
$('nav').css("display","none");
$('.display_hidden_soon').css("visibility","visible");
}
});
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$('#fade_in_logo').css("opacity","0");
$('#fade_in').css("opacity","0");
$('#buttons_wrap').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function() {
$('#footer_temp').addClass('animated fadeIn').css("opacity","1");
});
$('#footer_temp').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function() {
/* $("#hero_description").animate({
'background-position-x': '10%',
'background-position-y': '20%'
}, 10000, 'linear'); */
});
});
</script>
<!-- Making sub navbar link highlighted when user is scrolling through section -->
<script type="text/javascript">
var logo_height = $(".logo").outerHeight();
var adjectives_height = $(".adjectives").outerHeight();
var colors_height = $(".colors").outerHeight();
var typography_height = $(".typography").outerHeight();
var buttons_height = $(".buttons").outerHeight();
var forms_height = $(".forms").outerHeight();
var images_height = $(".images").outerHeight() + $(".images_continued1").outerHeight() + $(".images_continued2").outerHeight() + $(".images_continued3").outerHeight() + $(".images_continued4").outerHeight() + $(".images_continued5").outerHeight();
/* slide-up and down javascript for FAQ (commented out for now b/c need to dynamically change height) */
/*
jQuery('.expander').hide();
jQuery('.trigger').click(function() {
jQuery(this).next('.expander').slideToggle();
faq = faq + $(this).outerHeight();
console.log(faq);
});
*/
$(window).scroll(function() {
var windscroll = $(window).scrollTop();
if (windscroll >= 598 - 50 && windscroll < 598 - 50 + logo_height) { // height of header (600) and main navbar (50)
// Highlight 'Logo'
$('.stickybar_link1').addClass('selected_nav_link');
$('.stickybar_link2').removeClass('selected_nav_link');
} else if (windscroll >= 598 - 50 + logo_height && windscroll < 598 - 50 + logo_height + adjectives_height) {
// Highlight 'Adjectives'
$('.stickybar_link1').removeClass('selected_nav_link');
$('.stickybar_link2').addClass('selected_nav_link');
$('.stickybar_link3').removeClass('selected_nav_link');
} else if (windscroll >= 598 - 50 + logo_height + adjectives_height && windscroll < 598 - 50 + logo_height + adjectives_height + colors_height) {
// Highlight 'Colors'
$('.stickybar_link2').removeClass('selected_nav_link');
$('.stickybar_link3').addClass('selected_nav_link');
$('.stickybar_link4').removeClass('selected_nav_link');
} else if (windscroll >= 598 - 50 + logo_height + adjectives_height + colors_height && windscroll < 599 - 50 + logo_height + adjectives_height + colors_height + typography_height) {
// Highlight 'Typography'
$('.stickybar_link3').removeClass('selected_nav_link');
$('.stickybar_link4').addClass('selected_nav_link');
$('.stickybar_link5').removeClass('selected_nav_link');
} else if (windscroll >= 598 - 50 + logo_height + adjectives_height + colors_height + typography_height && windscroll < 599 - 50 + logo_height + adjectives_height + colors_height + typography_height + buttons_height) {
// Highlight 'Buttons'
$('.stickybar_link4').removeClass('selected_nav_link');
$('.stickybar_link5').addClass('selected_nav_link');
$('.stickybar_link6').removeClass('selected_nav_link');
} else if (windscroll >= 598 - 50 + logo_height + adjectives_height + colors_height + typography_height + buttons_height && windscroll < 599 - 50 + logo_height + adjectives_height + colors_height + typography_height + buttons_height + forms_height) {
// Highlight 'Forms'
$('.stickybar_link5').removeClass('selected_nav_link');
$('.stickybar_link6').addClass('selected_nav_link');
$('.stickybar_link7').removeClass('selected_nav_link');
} else if (windscroll >= 598 - 50 + logo_height + adjectives_height + colors_height + typography_height + buttons_height + forms_height && windscroll < 599 - 50 + logo_height + adjectives_height + colors_height + typography_height + buttons_height + forms_height + images_height) {
// Highlight 'Images'
$('.stickybar_link6').removeClass('selected_nav_link');
$('.stickybar_link7').addClass('selected_nav_link');
$('.stickybar_link8').removeClass('selected_nav_link');
} else if ( windscroll >= 599 - 50 + logo_height + adjectives_height + colors_height + typography_height + buttons_height + forms_height + images_height ) {
$('.stickybar_link7').removeClass('selected_nav_link');
}
})
</script>
<!-- fade in the question containers in FAQ on scroll -->
<script type="text/javascript">
// first 6 faq questions
var general_questions = $(".general_questions").outerHeight();
var admissions_questions = $(".admissions_questions").outerHeight();
var careers_questions = $(".careers_questions").outerHeight();
var other_questions = $(".other_questions").outerHeight();
$(window).scroll(function() {
var scroll = $(window).scrollTop();
$(".general_questions").css("opacity","0");
$(".admissions_questions").css("opacity","0");
$(".careers_questions").css("opacity","0");
$(".other_questions").css("opacity","0");
if (scroll >= 100) {
$(".general_questions").css("opacity","1").addClass("animated fadeIn");
}
if (scroll >= 100 + general_questions) {
$(".admissions_questions").css("opacity","1").addClass("animated fadeIn");
}
if (scroll >= 100 + general_questions + admissions_questions) {
$(".careers_questions").css("opacity","1").addClass("animated fadeIn");
}
if (scroll >= 100 + general_questions + admissions_questions + careers_questions) {
$(".other_questions").css("opacity","1").addClass("animated fadeIn");
}
if (scroll >= 200 + general_questions + admissions_questions + careers_questions + other_questions) {
$(".button_large").css("opacity","1").addClass("animated tada");
}
});
</script>
</body>
</html>