console
function variableResize() {
let bodyStyles = window.getComputedStyle(document.body);
let root = document.documentElement;
const maxWindowSize = bodyStyles.getPropertyValue('--bp-xlarge') * 16;
const minWindowSize = bodyStyles.getPropertyValue('--bp-small') * 16;
const windowWidth = window.innerWidth
const pWidthVar = '--p-wdth';
const pMinFontWidth = bodyStyles.getPropertyValue('--p-wdth-min');
const pMaxFontWidth = bodyStyles.getPropertyValue('--p-wdth-max');
scale(pWidthVar, pMinFontWidth, pMaxFontWidth);
const pWeightVar = '--p-wght';
const pMinFontWeight = bodyStyles.getPropertyValue('--p-wght-min');
const pMaxFontWeight = bodyStyles.getPropertyValue('--p-wght-max');
scale(pWeightVar, pMinFontWeight, pMaxFontWeight);
const h1WidthVar = '--h1-wdth';
const h1MinFontWidth = bodyStyles.getPropertyValue('--h1-wdth-min');
const h1MaxFontWidth = bodyStyles.getPropertyValue('--h1-wdth-max');
scale(h1WidthVar, h1MinFontWidth, h1MaxFontWidth);
const h1WeightVar = '--h1-wght';
const h1MinFontWeight = bodyStyles.getPropertyValue('--h1-wght-min');
const h1MaxFontWeight = bodyStyles.getPropertyValue('--h1-wght-max');
scale(h1WeightVar, h1MinFontWeight, h1MaxFontWeight);
const h2WidthVar = '--h2-wdth';
const h2MinFontWidth = bodyStyles.getPropertyValue('--h2-wdth-min');
const h2MaxFontWidth = bodyStyles.getPropertyValue('--h2-wdth-max');
scale(h2WidthVar, h2MinFontWidth, h2MaxFontWidth);
const h2WeightVar = '--h2-wght';
const h2MinFontWeight = bodyStyles.getPropertyValue('--h2-wght-min');
const h2MaxFontWeight = bodyStyles.getPropertyValue('--h2-wght-max');
scale(h2WeightVar, h2MinFontWeight, h2MaxFontWeight);
function scale(varName, minValue, maxValue) {
minValue = minValue * 1;
maxValue = maxValue * 1;
const percent = (windowWidth - minWindowSize) / (maxWindowSize - minWindowSize);
if (maxValue < minValue) {
var valueScale = minValue - (percent * (minValue - maxValue));
} else {
var valueScale = (percent * (maxValue - minValue)) + minValue;
}
const newValue = windowWidth > maxWindowSize
? maxValue
: windowWidth < minWindowSize
? minValue
: valueScale;
root.style.setProperty(varName, newValue);
}
}
window.addEventListener("load", variableResize);
window.addEventListener("resize", variableResize);
<article id="main-content" class="main-content editorial3">
<header>
<h1>Design is communication</h1>
<h2>And if you can’t explain it, you’re not done designing it yet</h2>
</header>
<footer>
<div class="date-header">Published Wednesday, 16 December, 2015 </div>
<div class="byline">by Jason Pamental</div>
</footer>
<p class="lede">A while back I wrote an article about one of my most influential experiences studying Graphic Design: the requirement of one of my instructors that we show up for any ‘first crit’ with no fewer than <a href="https://medium.com/@jpamental/30-thumbnails-e45bb445b09e">30 thumbnails</a>. But there was another experience, with another instructor, that perhaps had an even greater impact on me and on the way I guide and teach other designers.</p>
<section class="article-body multicolumn">
<p>While <a href="http://www.ric.edu/art/cv/pages/heemong-kim.aspx">Heemong Kim</a>’s requirement centered on the start of any project, <a href="http://www.ric.edu/art/cv/pages/nancy-bockbrader.aspx">Nancy Bockbrader</a>’s signature element came at the finish: every project, no matter how big or small, had to include a paper explaining the ‘why’ behind the design decisions made in the course of the assignment. It could be as short as a paragraph or two, but if you couldn’t explain in clear language the reasoning for your typeface selection, color palette or any other visual language, you just weren’t done.</p>
<figure>
<img class="image" src="images/1-bx3abzlwxm0hwlpxver7va.jpeg" alt="Matchbox with Design Explanation">
<figcaption>In this project I incorporated my paper into the design, mounting it inside the lid of a matchbox set</figcaption>
</figure>
<p>I’m not sure, but I may have been one of the only students who actually liked that part.</p>
<p>This forced clarity. It meant that even if you made up the explanation to fit the project, you still had to sell it. You had to be comfortable with the vocabulary of design, and how to use it convincingly and with rigor.</p>
<p>It probably helped that I went to school a few years later than most, but I was ready to think, and do so out loud. I found by focusing on the explanation, it made the work stronger. Because when you have to say it out loud (even metaphorically), a weak idea has no place to hide. It becomes very apparent, very quickly, that the reasoning for a typeface choice, or the cultural relevance of a color palette, or the subtle symbolism embedded in a logo might just have been more for your benefit than the imaginary client’s.</p>
<p>I’ve used this technique in classes I’ve taught, and even with design teams I’ve managed. Not for the client per se, but for our own internal review. This is even more important. When conducting an internal design review it’s critical the designer be able explain why this solution is the best one.</p>
<blockquote><p>Without explanation all we can do is evaluate execution, not effectiveness</p></blockquote>
<p>There’s an important byproduct of this process: if every designer has to explain their work clearly and convincingly on a regular basis, they’re far more likely to do so with clients. This is critical, because in all but the rarest of cases, our clients aren’t designers. They don’t know what we know, or speak the same language we speak. We must be our own translators, and educate the client along the way. If we can’t bring them along to the view we have created, why should they believe us when we say it’s the right one?</p>
<figure>
<img class="image" src="images/1-r3nu-j9j1izupsdbz4rdvq.jpeg" alt="Detail of the matchbox set made of steel, oak & black-and-white photos on acetate">
<figcaption>Detail of the matchbox set made of steel, oak & black-and-white photos on acetate</figcaption>
</figure>
<p>I’ve brought this practice into the teams I’ve run over the years, and make it part of the daily routine. When we talk about work, we talk about why it’s effective. When a designer works on a project, they present it to the client. If two designers are working, they each present their own. Not only does this provide opportunity to practice this kind of communication, it also gives them the credit they deserve for the work they have done. The solution comes from the team, so the team should have time in front of the client to shine.</p>
<p>Besides, as <a href="https://twitter.com/monteiro">Mike Monteiro</a> put it so well in <a href="http://abookapart.com/products/design-is-a-job">Design is a Job</a>: if you’re not the one selling it, you didn’t finish designing.</p>
</section>
<p>[ True story: the matchbox set pictured was a project for a class with Nancy, and was included in <a href="http://www.graphis.com/">Graphis Magazine</a>’s <em>Student Design Annual 1997</em> ]</p>
<p class="caption"><em>Text and images ©2019 Jason Pamental. All rights reserved. <a href="https://rwt.io/blog/2015/12/design-communication">Originally published on RWT.io</a></em></p>
</article>
@font-face {
font-family: 'Univers Next Variable';
src: url('https://rwt.io/_demo_fonts/monotype/univers/UniversNextVariable.woff2') format('woff2-variations');
font-display: swap;
font-stretch: 75% 140%;
font-style: normal;
font-weight: 300 900;
}
@font-face {
font-family: 'Univers Next Variable';
src: url('https://rwt.io/_demo_fonts/monotype/univers/UniversNextVariable-Italic.woff2') format('woff2-variations');
font-display: swap;
font-stretch: 75% 140%;
font-style: italic;
font-weight: 300 900;
}
:root {
--font-stack-sans-vf: "Univers Next Variable", Helvetica, arial, sans-serif;
--font-stack-heading: var(--font-stack-sans-vf);
--font-stack-body: var(--font-stack-sans-vf);
--bp-small: 25;
--bp-medium: 45;
--bp-large: 55;
--bp-xlarge: 65;
--gray-dark: #313141;
--white: #ffffff;
--text-color: var(--gray-dark);
--background-color: var(--white);
--rem-px: 16;
--p-size-s-px: 16;
--p-size-l-px: 20;
--h1-size-s-px: 40;
--h1-size-l-px: 72;
--h2-size-s-px: 28;
--h2-size-l-px: 48;
--p-size-min: calc( var(--p-size-s-px) / var(--rem-px) );
--p-size-max: calc( var(--p-size-l-px) / var(--rem-px) );
--p-lh-min: 1.3;
--p-lh-max: 1.6;
--p-wdth-min: 90;
--p-wdth-max: 100;
--p-wght-min: 350;
--p-wght-max: 400;
--p-wdth: var(--p-wdth-min);
--p-wght: var(--p-wght-min);
--h1-size-min: calc( var(--h1-size-s-px) / var(--rem-px) );
--h1-size-max: calc( var(--h1-size-l-px) / var(--rem-px) );
--h1-lh-min: 1.05;
--h1-lh-max: 1.1;
--h1-wdth-min: 75;
--h1-wdth-max: 85;
--h1-wght-min: 600;
--h1-wght-max: 700;
--h1-wdth: var(--h1-wdth-min);
--h1-wght: var(--h1-wght-min);
--h2-size-min: calc( var(--h2-size-s-px) / var(--rem-px) );
--h2-size-max: calc( var(--h2-size-l-px) / var(--rem-px) );
--h2-lh-min: 1.05;
--h2-lh-max: 1.1;
--h2-wdth-min: 85;
--h2-wdth-max: 100;
--h2-wght-min: 425;
--h2-wght-max: 500;
--h2-wdth: var(--h2-wdth-min);
--h2-wght: var(--h2-wght-min);
}
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
background-color: var(--background-color);
color: var(--text-color);
font-family: var(--font-stack-body);
margin: 0;
}
h1 {
font-family: var(--font-stack-heading);
font-size: calc( var(--h1-size-min) * 1rem);
line-height: var(--h1-lh-min);
font-stretch: calc( var(--h1-wdth) * 1%);
font-weight: var(--h1-wght);
}
@media screen and (min-width: 25em) {
h1 {
line-height: calc(( var(--h1-lh-min) * 1em ) + ( var(--h1-lh-max) - var(--h1-lh-min) ) * ((100vw - ( var(--bp-small) * 1em )) / ( var(--bp-xlarge) - var(--bp-small) )));
font-size: calc(( var(--h1-size-min) * 1em ) + ( var(--h1-size-max) - var(--h1-size-min) ) * ((100vw - ( var(--bp-small) * 1em )) / ( var(--bp-xlarge) - var(--bp-small) )));
}
}
@media screen and (min-width: 65em) {
h1 {
font-size: calc( var(--h1-size-max) * 1em);
font-stretch: calc( var(--h1-wdth-max) * 1%);
font-weight: var(--h1-wght-max);
line-height: var(--h1-lh-max);
}
}
h2 {
font-family: var(--font-stack-heading);
font-size: calc( var(--h2-size-min) * 1rem);
line-height: var(--h2-lh-min);
font-stretch: calc( var(--h2-wdth) * 1%);
font-weight: var(--h2-wght);
}
@media screen and (min-width: 25em) {
h2 {
line-height: calc(( var(--h2-lh-min) * 1em ) + ( var(--h2-lh-max) - var(--h2-lh-min) ) * ((100vw - ( var(--bp-small) * 1em )) / ( var(--bp-xlarge) - var(--bp-small) )));
font-size: calc(( var(--h2-size-min) * 1em ) + ( var(--h2-size-max) - var(--h2-size-min) ) * ((100vw - ( var(--bp-small) * 1em )) / ( var(--bp-xlarge) - var(--bp-small) )));
}
}
@media screen and (min-width: 65em) {
h2 {
font-size: calc( var(--h2-size-max) * 1em);
font-stretch: calc( var(--h2-wdth-max) * 1%);
font-weight: var(--h2-wght-max);
line-height: var(--h2-lh-max);
}
}
p {
font-family: var(--font-stack-body);
font-size: calc( var(--p-size-min) * 1rem);
line-height: var(--p-lh-min);
font-stretch: calc( var(--p-wdth) * 1%);
font-weight: var(--p-wght);
}
@media screen and (min-width: 25em) {
p {
line-height: calc(( var(--p-lh-min) * 1em ) + ( var(--p-lh-max) - var(--p-lh-min) ) * ((100vw - ( var(--bp-small) * 1em )) / ( var(--bp-xlarge) - var(--bp-small) )));
font-size: calc(( var(--p-size-min) * 1em ) + ( var(--p-size-max) - var(--p-size-min) ) * ((100vw - ( var(--bp-small) * 1em )) / ( var(--bp-xlarge) - var(--bp-small) )));
}
}
@media (min-width: 65em) {
p {
font-size: calc( var(--p-size-max) * 1em);
font-stretch: calc( var(--p-wdth-max) * 1%);
font-weight: var(--p-wght-max);
line-height: var(--p-lh-max);
}
}
* + p {
margin-top: 1em;
}
p {
margin: 0 auto;
max-width: 96vw;
}
@media screen and (min-width: 46em) {
p {
max-width: 40em;
}
}
* + p {
margin-top: 1em;
}
h1 {
margin: 0.5em 0;
}
h2 {
margin: 0 0 0.5em;
}
figure {
margin: 0 auto;
}
* + figure {
margin-top: 1em;
}
figcaption {
font-size: 0.925em;
margin: 0 0.25em;
}
img {
height: auto;
max-width: 100%;
width: 100%;
}
.main-content {
margin-bottom: 2em;
}
article > header {
margin: 0 auto;
max-width: 98vw;
}
article > footer {
margin: 0 auto;
max-width: 98vw;
}
article > header h2 {
font-style: italic;
}
.lede {
--p-size-min: 1.25;
--p-size-max: 2;
font-weight: 325;
max-width: 96vw;
}
@media screen and (min-width: 64em) {
.lede {
max-width: 40em;
}
}
.caption {
font-size: 0.925em;
max-width: 98vw;
}
@media screen and (min-width: 35em) {
.caption {
max-width: calc(40 * 1.25rem);
}
}
.editorial3 > header {
display: inline;
float: left;
padding-left: 1em;
shape-outside: polygon(0px 0px, 35em 0px, 35em 47%, 55.5em 47%, 55.5em 75%, 42em 75%, 42em 100%, 0 100%);
}
.editorial3 > footer {
clear: left;
display: inline;
float: left;
padding: 0 2em 4em 1em;
}
.editorial3 h1 {
--h1-size-min: 6;
--h1-size-max: 8;
--h1-lh-min: 0.8;
--h1-lh-max: 1.1;
--h1-wdth: 60;
--h1-wdth-max: 60;
--h1-wght: 900;
--h1-wght-max: 900;
display: inline;
float: left;
letter-spacing: -0.05em;
margin: 0 -0.01em 0 0;
max-width: 65vw;
}
@media screen and (min-width: 55em) {
.editorial3 h1 {
margin-bottom: 0;
}
}
.editorial3 > header h2 {
--h2-size-min: 1.5;
--h2-size-max: 1.75;
--h2-wght: 300;
--h2-wght-max: 300;
--h2-wdth: 80;
--h2-wdth-max: 85;
clear: left;
display: inline;
float: left;
color: #888;
margin: 0.5rem 0.25rem 1.5rem 0.25rem;
max-width: 50vw;
}
@media screen and (min-width: 55em) {
.editorial3 > header h2 {
margin-bottom: 1rem;
}
}
.editorial3 .lede {
--p-size-min: 1.5;
--p-size-max: 2;
color: #953800;
max-width: none;
padding-right: 2vw;
}
.editorial3 .lede:first-line {
font-stretch: 130%;
font-variant-caps: all-small-caps;
font-weight: 650;
}
.editorial3 .article-body {
clear: both;
max-width: 96vw;
margin-left: auto;
margin-right: auto;
margin-bottom: 4rem;
padding-top: 2em;
}
.editorial3 .multicolumn {
column-width: 25em;
column-gap: 1.5em;
widows: 2;
orphans: 2;
}
.editorial3 .article-body p {
--p-lh-min: 1.3;
--p-lh-max: 1.33;
hyphens: auto;
}
.editorial3 .article-body > p:first-of-type::first-letter {
color: #a54810;
float: left;
font-size: 4.85em;
font-feature-settings: none;
font-weight: 900;
font-stretch: 60%;
line-height: .95;
margin: 0 0 -.3em 0;
padding: 0 0.1em 0.135em 0;
}
.editorial3 .article-body > p:last-child:after {
color: #a54810;
content: "\2766";
display: inline;
font-family: Georgia, "New Times Roman", serif;
font-size: 1.5em;
line-height: 0.5;
}
figure {
break-inside: avoid;
}
.editorial3 blockquote {
break-inside: avoid;
border-left: solid 0.5em #a54810;
padding: 0 0 0 1rem;
margin: 1rem 0 0 0;
}
.editorial3 blockquote p {
--p-size-min: 1.5;
--p-size-max: 2.25;
--p-lh-min: 1;
--p-lh-max: 1.1;
--p-wdth-min: 75;
--p-wdth-max: 80;
font-style: italic;
}
.editorial3.main-content > p {
margin-left: 2vw;
}