Slide 1

Slide 1 text

& & & Typography WEB DIRECTED Art

Slide 2

Slide 2 text

No content

Slide 3

Slide 3 text

No content

Slide 4

Slide 4 text

No content

Slide 5

Slide 5 text

No content

Slide 6

Slide 6 text

Responsive Web Typography

Slide 7

Slide 7 text

7 Different font sizes for different reading distances

Slide 8

Slide 8 text

0,26mm 1,3mm 71cm 350cm

Slide 9

Slide 9 text

sizecalc.com

Slide 10

Slide 10 text

6 Maintain perfect proportions in a paragraph

Slide 11

Slide 11 text

Line height for each breakpoint is adjusted according to the line length rendered at that breakpoint. Short line lengths require tighter line spacing, because the reader’s eye doesn’t have to travel much to reach the next line of text. As line length gets longer, more line spacing is required. Line height for each breakpoint is adjusted according to the line length rendered at that breakpoint. Short line lengths require tighter line spacing, because the reader’s eye doesn’t have to travel much to reach the next line of text. As line length gets longer, more line spacing is required. Line height for each breakpoint is adjusted according to the line length rendered at that breakpoint. Short line lengths require tighter line spacing, because the reader’s eye doesn’t have to travel much to reach the next line of text. As line length gets longer, more line spacing is required.

Slide 12

Slide 12 text

No content

Slide 13

Slide 13 text

5 Establish hierarchy appropriate for the screen real-estate

Slide 14

Slide 14 text

STYLE OPTIONS ALL CAPS FOR THE SUBHEAD H2 SMALL CAPS FOR THE SUBHEAD H3 Italic for the Subhead H4

Slide 15

Slide 15 text

modularscale.com

Slide 16

Slide 16 text

SETTING SUBHEADS WITH CSS blog.typekit.com/2013/07/25/setting-subheads-with-css/ webdesign.maratz.com/lab/subheads/

Slide 17

Slide 17 text

4 Indented paragraphs on mobile vs block paragraphs on desktop

Slide 18

Slide 18 text

SMALL SCREEN – style variations – indented paragraphs – white space LARGE SCREEN – typographic scale – block paragraphs – graphic elements

Slide 19

Slide 19 text

sarasoueidan.com/blog/css-shapes/

Slide 20

Slide 20 text

3 Use graded fonts to normalize rendering across different pixel densities

Slide 21

Slide 21 text

ia.net/know-how/responsive-typography

Slide 22

Slide 22 text

No content

Slide 23

Slide 23 text

2 Look for type families that have multiple optical sizes

Slide 24

Slide 24 text

No content

Slide 25

Slide 25 text

1 Use different font widths according to the width of the screen

Slide 26

Slide 26 text

No content

Slide 27

Slide 27 text

font-to-width.com

Slide 28

Slide 28 text

No content

Slide 29

Slide 29 text

The Benton Project bentonmodern.webtype.com Indra Kupferschmid CTS Nick Sherman QAD

Slide 30

Slide 30 text

No content

Slide 31

Slide 31 text

No content

Slide 32

Slide 32 text

No content

Slide 33

Slide 33 text

No content

Slide 34

Slide 34 text

.columns { @media only screen and (min-height: 25em) { @media only screen and (min-width: 40em) and (max-width: 59.9375em) { -webkit-columns: 2; -moz-columns: 2; columns: 2; -webkit-column-gap: 2.7em; -moz-column-gap: 2.7em; column-gap: 2.7em; } @media only screen and (min-width: 60em) { -webkit-columns: 3; -moz-columns: 3; columns: 3; -webkit-column-gap: 2.7em; -moz-column-gap: 2.7em; column-gap: 2.7em; } } }

Slide 35

Slide 35 text

No content

Slide 36

Slide 36 text

No content

Slide 37

Slide 37 text

No content

Slide 38

Slide 38 text

No content

Slide 39

Slide 39 text

/* Alternate characters */ -webkit-font-feature-settings: "ss01"; -moz-font-feature-settings: "ss01" 1; font-feature-settings: "ss01"; /* Common ligatures */ -webkit-font-feature-settings: "liga"; -moz-font-feature-settings: "liga" 1; font-feature-settings: "liga"; /* Small caps */ -webkit-font-feature-settings: "smcp"; -moz-font-feature-settings: "smcp" 1; font-feature-settings: "smcp"; /* http://clagnut.com/sandbox/css3/ */

Slide 40

Slide 40 text

@supports ((font-feature-settings: "smcp") or (-webkit-font-feature-settings: "smcp") or (-moz-font-feature-settings: "smcp" 1)) { .small-caps { text-transform: lowercase; -webkit-font-feature-settings: "smcp"; -moz-font-feature-settings: "smcp" 1; font-feature-settings: "smcp"; } } /* stateofwebtype.com/#font-feature-settings */

Slide 41

Slide 41 text

No content

Slide 42

Slide 42 text

3D effects drop caps flipped type rotated type { }

Slide 43

Slide 43 text

No content

Slide 44

Slide 44 text

text-shadow: 1px 0px #ddc, 0px 1px #996, 2px 1px #ddc, 1px 2px #996, 3px 2px #ddc, 2px 3px #996, 4px 3px #ddc, 3px 4px #996, 5px 4px #ddc, 4px 5px #996, 6px 5px #ddc, 5px 6px #996, 7px 6px #ddc, 6px 7px #996, 8px 7px #ddc, 7px 8px #996, 9px 8px #ddc, 8px 9px #996; /* practice.typekit.com/lesson/using-shades/ */

Slide 45

Slide 45 text

@function generate3DShadow($max,$x,$y) { $val: 1px 0 #{$x}, 0 1px #{$y}; @for $i from 1 through $max { $val: #{$val}, #{$i+1}px #{$i}px #{$x}; $val: #{$val}, #{$i}px #{$i+1}px #{$y}; } @return $val; } text-shadow: generate3DShadow(10,#ddc,#996);

Slide 46

Slide 46 text

No content

Slide 47

Slide 47 text

var dropcaps = document.querySelectorAll('.drop-cap'); if (window.innerWidth < 600) { window.Dropcap.layout(dropcaps, 3); } else { window.Dropcap.layout(dropcaps, 5, 3); } /* http://webplatform.adobe.com/dropcap.js/ */

Slide 48

Slide 48 text

No content

Slide 49

Slide 49 text

.o { -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); transform: rotate(90deg); /* Glyph-specific adjustments */ }

Slide 50

Slide 50 text

No content

Slide 51

Slide 51 text

.flip { display: block; -webkit-transform: scale(-1, -1); -moz-transform: scale(-1, -1); transform: scale(-1, -1); }

Slide 52

Slide 52 text

No content

Slide 53

Slide 53 text

No content

Slide 54

Slide 54 text

No content

Slide 55

Slide 55 text

You & Me

Slide 56

Slide 56 text

.container { font-size: 10vw; } .container h1 { font-size: 1em; line-height: 1; position: relative; width: 100%; height: 0; padding-top: 75%; /* 4:3 aspect ratio */ padding-top: 50%; /* 2:1 aspect ratio */ } .container h1 .s1 { position: absolute; left: 10%; top: 10%; } /* http://webdesign.maratz.com/lab/expressive-web-typography/ */

Slide 57

Slide 57 text

No content

Slide 58

Slide 58 text

No content

Slide 59

Slide 59 text

preview.typetester.org

Slide 60

Slide 60 text

COLOPHON You! Thank @markodugonjic [email protected]