web toolshtml & css flexbox, multi-column layout and css grid microformats and semantic markup...

39
Web Tools speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Upload: others

Post on 13-Jul-2020

37 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Web Tools

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 2: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

What is in your toolkit?

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 3: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 4: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 5: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 6: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 7: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 8: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

What is the nature of the web?

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 9: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 10: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 11: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 12: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

What's else?

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 13: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

A11Yspeaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 14: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

UXspeaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 15: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Design Systems

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 16: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

HTML & CSSFlexbox, multi-column layout and CSS GridMicroformats and semantic markup

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 17: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019
Page 18: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

<nav class="ucla-c-topic-nav"><ul> <li><a href="#climate-change">Climate Change</a></li> <li><a href="#energy">Energy</a></li> <li><a href="#policy-law-regulation">Policy, Law &amp; Regulation</a></li> <li><a href="#economics-corporate-sustainability">Economics &amp; Corporate Sustainability</a></li></ul></nav>

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 19: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Flexboxspeaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 20: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

.ucla-c-topic-nav ul { display: flex; flex-direction: column; list-style: none;}

@media screen and (min-width: 30em) { .ucla-c-topic-nav ul { display: flex; flex-direction: row; flex-wrap: wrap; }}

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 21: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019
Page 22: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

<h2><a id="climate-change"></a>Climate Change</h2>

<div class="ucla-c-faculty-advisors">

<ul> <li><a href="#">Alan Barreca</a></li> <li><a href="#">Alex Hall</a></li> <li><a href="#">Peter Kareiva</a></li> <li><a href="#">Liz Koslov</a></li></ul>

</div>

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 23: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Multi-Columnspeaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 24: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

@media screen and (min-width: 30em) { .ucla-c-faculty-advisors > ul { column-count: 3; column-gap: 1em; }}

@media screen and (min-width: 60em) { .ucla-c-faculty-advisors > ul { column-count: 5; column-gap: 1em; }}

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 25: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019
Page 26: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Microformats and HTML5

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 27: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

<div class="ucla-c-people-grid">

<article class="h-card"> <a class="u-url" href="#"> <h2 class="fn p-name">Jane Kitty Doe</h2> <img class="u-photo" src="https://placekitten.com/300/400" alt="kitten photo" /> <p class="p-job-title">Assistant Professor</p> <small class="p-org">Institute of the Environment and Sustainability</small> </a></article>

<article class="h-card"> ...</article></div>

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 28: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

<div class="ucla-c-people-grid">

<article class="h-card"> <a class="u-url" href="#"> <figure> <img class="u-photo" src="https://placekitten.com/300/400" alt="kitten photo" /> <figcaption> <h2 class="fn p-name">Kitty Doe</h2> <p class="p-job-title">Assistant Professor</p> <small class="p-org">Institute of the Environment and Sustainability</small> </figcaption> </figure> </a> </article>

</div>

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 29: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

CSS Gridspeaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 30: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019
Page 31: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019
Page 32: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019
Page 33: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019
Page 34: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

RWDspeaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 35: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

.ucla-c-people-grid { display: grid; grid-gap: 2vw; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-template-rows: auto;}

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 36: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

/* fall back if no grid support */.ucla-c-people-grid > article { display: inline-block; margin: 1em; vertical-align: top; width: 300px;}

.ucla-c-people-grid > img { height: auto; width: 200px;}

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 37: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

@supports (display: grid) {

.ucla-c-people-grid { display: grid; grid-gap: 2vw; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); grid-template-rows: auto; }

/* reset properties */ .ucla-c-people-grid > article { margin: initial; width: initial; }}

speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 38: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

What's next?speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Page 39: Web ToolsHTML & CSS Flexbox, multi-column layout and CSS Grid Microformats and semantic markup speaking.scottgruber.me @ UC Tech Santa Barbara 2019

Art Direction for the Web.Thank you.

speaking.scottgruber.me @ UC Tech Santa Barbara 2019