Slide 1

Slide 1 text

& & & Typography WEB NEXT The STEPS For

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

Responsive Web Typography

Slide 6

Slide 6 text

8 Different font sizes for different reading distances

Slide 7

Slide 7 text

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

Slide 8

Slide 8 text

No content

Slide 9

Slide 9 text

sizecalc.com

Slide 10

Slide 10 text

7 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

6 Establish hierarchy appropriate for the screen size

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

5 Indented paragraphs vs block paragraphs

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

4 Use graded fonts to normalize rendering

Slide 21

Slide 21 text

ia.net/know-how/responsive-typography

Slide 22

Slide 22 text

No content

Slide 23

Slide 23 text

3 Take advantage of multiple optical sizes

Slide 24

Slide 24 text

No content

Slide 25

Slide 25 text

2 Use 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

1 Web fonts are a progressive enhancement

Slide 30

Slide 30 text

PERFORMANCE STRATEGIES Load only fonts that you really need Provide decent fallback options Use SVG instead of web fonts for lettering Subset web fonts Don’t inline

Slide 31

Slide 31 text

github.com/typekit/webfontloader

Slide 32

Slide 32 text

bramstein.com/writing/smashing-book-5-web-fonts-performance.html

Slide 33

Slide 33 text

No content

Slide 34

Slide 34 text

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

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

.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 40

Slide 40 text

No content

Slide 41

Slide 41 text

No content

Slide 42

Slide 42 text

No content

Slide 43

Slide 43 text

.section .grid:before { content: '§'; position: absolute; left: 50%; display: block; @include rem(font-size, 1); @include rem(line-height, 4); @include rem(width, 2); @include rem(height, 4); @include rem(top, -2); @include rem(margin-left, -1); text-align: center; background: #fff; }

Slide 44

Slide 44 text

No content

Slide 45

Slide 45 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"; /* clagnut.com/sandbox/css3/ */

Slide 46

Slide 46 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 47

Slide 47 text

No content

Slide 48

Slide 48 text

}}} {{{ 3D effects drop caps rotated letters flipped words

Slide 49

Slide 49 text

No content

Slide 50

Slide 50 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 51

Slide 51 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 52

Slide 52 text

No content

Slide 53

Slide 53 text

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

Slide 54

Slide 54 text

No content

Slide 55

Slide 55 text

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

Slide 56

Slide 56 text

No content

Slide 57

Slide 57 text

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

Slide 58

Slide 58 text

No content

Slide 59

Slide 59 text

No content

Slide 60

Slide 60 text

No content

Slide 61

Slide 61 text

You & Me

Slide 62

Slide 62 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 */ } .s1 { position: absolute; left: 10%; top: 10%; } /* webdesign.maratz.com/lab/expressive-web-typography/ */

Slide 63

Slide 63 text

No content

Slide 64

Slide 64 text

No content

Slide 65

Slide 65 text

goo.gl/424HzX

Slide 66

Slide 66 text

No content

Slide 67

Slide 67 text

No content

Slide 68

Slide 68 text

No content

Slide 69

Slide 69 text

No content

Slide 70

Slide 70 text

preview.typetester.org

Slide 71

Slide 71 text

&ogether You Me

Slide 72

Slide 72 text

&ogether You Me

Slide 73

Slide 73 text

&ogether You Me

Slide 74

Slide 74 text

You! Thank COLOPHON @markodugonjic [email protected]