SlideShare a Scribd company logo
TACTICAL
HTML & CSS
MODULAR
HTML & CSS
TURBO WORKSHOP
Shay Howe
@shayhowe
learn.shayhowe.com
Darby Frey
@darbyfrey
darbyfrey.com
@shayhowe & @darbyfreyModular HTML & CSS
Shay Howe
@shayhowe
learn.shayhowe.com
Darby Frey
@darbyfrey
darbyfrey.com
@shayhowe & @darbyfreyModular HTML & CSS
1. The Problem
2. Groundwork
3. Assembling Layout
4. Accommodating Content
5. Turbo with SCSS
6. Onward
OUR SCHEDULE
@shayhowe & @darbyfreyModular HTML & CSS
THE
PROBLEM
The Gust by Willem van de Velde the Younger
@shayhowe & @darbyfreyModular HTML & CSS
COMMON PROBLEMS
• Websites have difficulty scaling
• Code becomes brittle
• Files and code bases begin to swell
@shayhowe & @darbyfreyModular HTML & CSS
WHAT’S WRONG
• Best practices aren’t exactly best practices
• Standards need to evolve
@shayhowe & @darbyfreyModular HTML & CSS
BEST BAD PRACTICES
• Avoid extra elements
• Avoid classes
• Leverage type selectors
• Leverage descendent selectors
@shayhowe & @darbyfreyModular HTML & CSS
BEST BAD PRACTICES
Avoiding classes
section	
  ul#nav	
  li	
  {...}
section:nth-­‐child(2)	
  div:nth-­‐child(7)	
  >	
  a	
  {...}
Leveraging selectors
a.btn	
  {...}
#main	
  a.btn	
  {...}
#main	
  div.feature	
  a.btn	
  {...}
@shayhowe & @darbyfreyModular HTML & CSS
BEST BAD PRACTICES
Bad
#contact	
  li:nth-­‐child(1)	
  input,
#contact	
  li:nth-­‐child(2)	
  input	
  {
	
  	
  width:	
  160px;
}
#contact	
  li:nth-­‐child(3)	
  textarea	
  {
	
  	
  width:	
  280px;
}
@shayhowe & @darbyfreyModular HTML & CSS
BEST BAD PRACTICES
Good
.col-­‐1	
  {
	
  	
  width:	
  160px;
}
.col-­‐2	
  {
	
  	
  width:	
  280px;
}
@shayhowe & @darbyfreyModular HTML & CSS
SPECIFICITY?
• Specificity determines which styles are applied
• Each selector has a specificity weight
• High specificity beats low specificity
• Low specificity is key
@shayhowe & @darbyfreyModular HTML & CSS
MEASURING SPECIFICITY
Formula
• IDs, Classes/Pseudo-classes/Attributes, Elements
High Specificity (Bad)
#primary	
  #main	
  div.gallery	
  figure.media
IDs: 2, Classes: 2, Elements: 2 — Compiled: 2–2–2
Low Specificity (Good)
.gallery-­‐media
IDs: 0, Classes: 1, Elements: 0 — Compiled: 0–1–0
@shayhowe & @darbyfreyModular HTML & CSS
@shayhowe & @darbyfreyModular HTML & CSS
WATCH SPECIFICITY
• Be explicit
• Keep specificity low
• Never use IDs or !important
• Avoid nested selectors (#main	
  .spotlight	
  strong	
  span)
@shayhowe & @darbyfreyModular HTML & CSS
WATCH SPECIFICITY
Bad
#primary	
  #main	
  div.gallery	
  {
	
  	
  text-­‐transform:	
  uppercase;
}
#primary	
  #main	
  div.gallery	
  figure.media	
  {
	
  	
  background:	
  #ccc;
}
@shayhowe & @darbyfreyModular HTML & CSS
WATCH SPECIFICITY
Good
.gallery	
  {
	
  	
  text-­‐transform:	
  uppercase;
}
.gallery-­‐media	
  {
	
  	
  background:	
  #ccc;
}
Parade of the Black Sea Fleet by Ivan Aivazovsky
@shayhowe & @darbyfreyModular HTML & CSS
MAINTAINABILITY
Code must be...
• Organized
• Modular
• Performant
@shayhowe & @darbyfreyModular HTML & CSS
METHODOLOGIES
OOCSS
• Object-Oriented CSS
From Nicole Sullivan – oocss.org
SMACSS
• Scalable and Modular Architecture for CSS
From Jonathan Snook – smacss.com
@shayhowe & @darbyfreyModular HTML & CSS
GROUNDWORK
@shayhowe & @darbyfreyModular HTML & CSS
REUSE CODE
• Do not duplicate code
• Remove old code
• Defer loading subsequent styles
@shayhowe & @darbyfreyModular HTML & CSS
REUSE CODE
Bad
.news	
  {
	
  	
  background:	
  #eee;
	
  	
  color:	
  #666;
}
.social	
  {
	
  	
  background:	
  #eee;
	
  	
  color:	
  #666;
}
@shayhowe & @darbyfreyModular HTML & CSS
REUSE CODE
Good
.news,
.social	
  {
	
  	
  background:	
  #eee;
	
  	
  color:	
  #666;
}
Better
.feat-­‐box	
  {
	
  	
  background:	
  #eee;
	
  	
  color:	
  #666;
}
@shayhowe & @darbyfreyModular HTML & CSS
USE CLASSES
• Write understandable class names
• Avoid unnecessary nesting
• Use same strength specificity
@shayhowe & @darbyfreyModular HTML & CSS
USE CLASSES
Bad
.feat-­‐box	
  .callout	
  .pr	
  {
	
  	
  font-­‐size:	
  12px;
}
.feat-­‐box	
  .callout	
  .pr	
  .un	
  {
	
  	
  color:	
  #39f;
}
@shayhowe & @darbyfreyModular HTML & CSS
USE CLASSES
Good
.feat-­‐box	
  .price	
  {
	
  	
  font-­‐size:	
  12px;
}
.feat-­‐box	
  .unit	
  {
	
  	
  color:	
  #39f;
}
@shayhowe & @darbyfreyModular HTML & CSS
USE CLASSES
Bad
.btn.large	
  {
	
  	
  font-­‐size:	
  24px;	
  	
  
	
  	
  padding:	
  15px	
  30px;
}
<div	
  class="btn	
  large">...</div>
@shayhowe & @darbyfreyModular HTML & CSS
USE CLASSES
Good
.btn-­‐large	
  {
	
  	
  font-­‐size:	
  24px;
	
  	
  padding:	
  15px	
  30px;
}
<div	
  class="btn-­‐large">...</div>
@shayhowe & @darbyfreyModular HTML & CSS
ASSEMBLING
LAYOUT
@shayhowe & @darbyfreyModular HTML & CSS
ABSTRACT STRUCTURE
• Separate presentation (or theme) from layout
• Create an object layer for layout
• Create a skin layer for theme
• Use a grid
@shayhowe & @darbyfreyModular HTML & CSS
ABSTRACT STRUCTURE
Bad
.news	
  {
	
  	
  background:	
  #eee;
	
  	
  color:	
  #666;
	
  	
  margin:	
  0	
  10px;
	
  	
  width:	
  400px;
}
<div	
  class="news">...</div>
@shayhowe & @darbyfreyModular HTML & CSS
ABSTRACT STRUCTURE
Good
.grid-­‐4	
  {
	
  	
  margin:	
  0	
  10px;
	
  	
  width:	
  400px;
}
.feat-­‐box	
  {
	
  	
  background:	
  #eee;
	
  	
  color:	
  #666;
}
<div	
  class="grid-­‐4	
  feat-­‐box">...</div>
@shayhowe & @darbyfreyModular HTML & CSS
TRANSPARENTIZE ELEMENTS
• Stylize elements to be transparent
• Keep visual properties apart from layout
properties
@shayhowe & @darbyfreyModular HTML & CSS
TRANSPARENTIZE ELEMENTS
Bad
.pagination	
  {
	
  	
  border-­‐radius:	
  5px;
	
  	
  border:	
  1px	
  solid	
  #eee;
	
  	
  margin:	
  0	
  10px;
	
  	
  width:	
  620px;
}
<ul	
  class="pagination">...</ul>
@shayhowe & @darbyfreyModular HTML & CSS
TRANSPARENTIZE ELEMENTS
Good
.grid-­‐8	
  {
	
  	
  margin:	
  0	
  10px;
	
  	
  width:	
  620px;
}
.offset-­‐box	
  {
	
  	
  border-­‐radius:	
  5px;
	
  	
  border:	
  1px	
  solid	
  #eee;
}
<ul	
  class="grid-­‐8	
  offset-­‐box">...</ul>
@shayhowe & @darbyfreyModular HTML & CSS
CREATE ADAPTABLE LAYOUTS
• Height and width should be flexible
• Height should extend with content
• Width should extend with a grid
@shayhowe & @darbyfreyModular HTML & CSS
CREATE ADAPTABLE LAYOUTS
Bad
#main	
  {
	
  	
  float:	
  left;
	
  	
  margin:	
  0	
  10px;
	
  	
  width:	
  620px;
}
#aside	
  {
	
  	
  float:	
  left;
	
  	
  margin:	
  0	
  10px;
	
  	
  width:	
  300px;
}
@shayhowe & @darbyfreyModular HTML & CSS
CREATE ADAPTABLE LAYOUTS
Good
.grid-­‐4,
.grid-­‐8	
  {
	
  	
  float:	
  left;
	
  	
  margin:	
  0	
  10px;
}
.grid-­‐4	
  {
	
  	
  width:	
  300px;
}
.grid-­‐8	
  {
	
  	
  width:	
  620px;
}
@shayhowe & @darbyfreyModular HTML & CSS
ASSEMBLING LAYOUT
IN PRACTICE
http://bit.ly/modular-html-css
@shayhowe & @darbyfreyModular HTML & CSS
ACCOMMODATING
CONTENT
@shayhowe & @darbyfreyModular HTML & CSS
SEPARATE CONTENT
• Separate content from container
• Stylize content regardless of container
@shayhowe & @darbyfreyModular HTML & CSS
SEPARATE CONTENT
Bad
.alert	
  {
	
  	
  background:	
  #f2dede;
	
  	
  border-­‐radius:	
  10px;
	
  	
  color:	
  #b94a48;
	
  	
  padding:	
  10px	
  20px;
}
<div	
  class="alert">...</div>
@shayhowe & @darbyfreyModular HTML & CSS
SEPARATE CONTENT
Good
.alert	
  {
	
  	
  border-­‐radius:	
  10px;
	
  	
  padding:	
  10px	
  20px;
}
.alert-­‐error	
  {
	
  	
  background:	
  #f2dede;
	
  	
  color:	
  #b94a48;
}
<div	
  class="alert	
  alert-­‐error">...</div>
@shayhowe & @darbyfreyModular HTML & CSS
AVOID PARENT DEPENDENCY
• Remove parent container dependency
• Decouple CSS from HTML
• Create components to be used anywhere
@shayhowe & @darbyfreyModular HTML & CSS
AVOID PARENT DEPENDENCY
Bad
.feat-­‐box	
  {
	
  	
  background:	
  #eee;
}
article	
  .feat-­‐box	
  {
	
  	
  background:	
  #fff;
}
<article>
	
  	
  <div	
  class="feat-­‐box">...</div>
</article>
@shayhowe & @darbyfreyModular HTML & CSS
AVOID PARENT DEPENDENCY
Good
.feat-­‐box	
  {
	
  	
  background:	
  #eee;
}
.feat-­‐box-­‐alt	
  {
	
  	
  background:	
  #fff;
}
<article>
	
  	
  <div	
  class="feat-­‐box-­‐alt">...</div>
</article>
@shayhowe & @darbyfreyModular HTML & CSS
FAVOR SEMANTICS
• Allow elements to adapt
• Uses individual classes to extend modules
@shayhowe & @darbyfreyModular HTML & CSS
FAVOR SEMANTICS
Bad
.feat-­‐box	
  h2	
  {
	
  	
  color:	
  #f60;
	
  	
  font:	
  18px	
  Helvetica,	
  sans-­‐serif;
}
<div	
  class="feat-­‐box">
	
  	
  <h2>...</h2>
</div>
@shayhowe & @darbyfreyModular HTML & CSS
FAVOR SEMANTICS
Good
.feat-­‐subhead	
  {
	
  	
  color:	
  #f60;
	
  	
  font:	
  18px	
  Helvetica,	
  sans-­‐serif;
}
<div	
  class="feat-­‐box">
	
  	
  <h2	
  class="feat-­‐subhead">...</h2>
</div>
@shayhowe & @darbyfreyModular HTML & CSS
ACCOMMODATING CONTENT
IN PRACTICE
http://bit.ly/modular-html-css
@shayhowe & @darbyfreyModular HTML & CSS
TURBO
WITH SCSS
@shayhowe & @darbyfreyModular HTML & CSS
SETUP
@shayhowe & @darbyfreyModular HTML & CSS
SCSS
• CSS preprocessor
• Extension of CSS3
• Compiled using Ruby
• Adds nested rules, variables, mixins, selector
inheritance, and more
@shayhowe & @darbyfreyModular HTML & CSS
SCSS
SCSS Syntax
.new	
  {
	
  	
  color:	
  #f60;
	
  	
  .item	
  {
	
  	
  	
  	
  font-­‐size:	
  24px;
	
  	
  }
}
Compiled CSS
.new	
  {
	
  	
  color:	
  #f60;
}
.new	
  .item	
  {
	
  	
  font-­‐size:	
  24px;
}
@shayhowe & @darbyfreyModular HTML & CSS
SCSS VS. SASS
SCSS Syntax
.new	
  {
	
  	
  color:	
  #f60;
	
  	
  .item	
  {
	
  	
  	
  	
  font-­‐size:	
  24px;
	
  	
  }
}
Sass Syntax
.new
	
  	
  color:	
  #f60
	
  	
  .item
	
  	
  	
  	
  font-­‐size:	
  24px
@shayhowe & @darbyfreyModular HTML & CSS
COMPASS
• Built on top of Sass
• Includes reusable patterns
• Provides cross browser CSS3 mixins
@shayhowe & @darbyfreyModular HTML & CSS
SCOUT APP
• GUI for compiling Sass and Compass
• Available for both Mac and Windows
@shayhowe & @darbyfreyModular HTML & CSS
SETUP
IN PRACTICE
http://bit.ly/modular-html-css
@shayhowe & @darbyfreyModular HTML & CSS
ORGANIZATION
@shayhowe & @darbyfreyModular HTML & CSS
TECHNIQUE
Settings
• Utility styles (Extends, Mixins, Variables)
Base
• Core styles for entire site (Layout, Typography)
Components
• UI concepts & design patterns (Buttons, List, Navigation)
Modules
• Business logic (Aside, Header, Footer)
@shayhowe & @darbyfreyModular HTML & CSS
TECHNIQUE
@shayhowe & @darbyfreyModular HTML & CSS
PARTIALS
• Must begin with an underscore, _
• Must have a file extension of .scss, not .css.scss
@shayhowe & @darbyfreyModular HTML & CSS
IMPORTS
workshop.css.scss
//	
  Compass
@import	
  "compass/css3";
//	
  Settings
@import	
  "settings/variables";
//	
  Base
@import	
  "base/layout";
...
@shayhowe & @darbyfreyModular HTML & CSS
ORGANIZATION
IN PRACTICE
http://bit.ly/modular-html-css
@shayhowe & @darbyfreyModular HTML & CSS
SETTINGS
@shayhowe & @darbyfreyModular HTML & CSS
VARIABLES
• Allow common values to be shared
• Assigned with a dollar sign, name, colon, and value
• May be a number, string, boolean, null, or multiple
comma separated values
@shayhowe & @darbyfreyModular HTML & CSS
VARIABLES
SCSS Syntax
$font-­‐base:	
  14px;
$sans-­‐serif:	
  "Open	
  Sans",	
  sans-­‐serif;
p	
  {
	
  	
  font:	
  $font-­‐base	
  $sans-­‐serif;
}
Compiled CSS
p	
  {
	
  	
  font:	
  14px	
  "Open	
  Sans",	
  sans-­‐serif;
}
@shayhowe & @darbyfreyModular HTML & CSS
EXTENDS
• Share common styles without duplicating them
• Keep code weight low
• Generates detailed selectors
• Assigned with the @extend	
  rule followed by the
selector
@shayhowe & @darbyfreyModular HTML & CSS
EXTENDS
SCSS Syntax
.alert	
  {
	
  	
  border-­‐radius:	
  10px;
}
.alert-­‐error	
  {
	
  	
  @extend	
  .alert;
	
  	
  color:	
  #b94a48;
}
.alert-­‐success	
  {
	
  	
  @extend	
  .alert;
	
  	
  color:	
  #468847;
}
Compiled CSS
.alert,
.alert-­‐error,
.alert-­‐success	
  {
	
  	
  border-­‐radius:	
  10px;
}
.alert-­‐error	
  {
	
  	
  color:	
  #b94a48;
}
.alert-­‐success	
  {
	
  	
  color:	
  #468847;
}
@shayhowe & @darbyfreyModular HTML & CSS
PLACEHOLDERS
• Similar to extends
• Selector is assigned with a percentage sign
• Extended selector is not output, only the styles
@shayhowe & @darbyfreyModular HTML & CSS
PLACEHOLDERS
SCSS Syntax
%alert	
  {
	
  	
  border-­‐radius:	
  10px;
}
.alert-­‐error	
  {
	
  	
  @extend	
  %alert;
	
  	
  color:	
  #b94a48;
}
.alert-­‐success	
  {
	
  	
  @extend	
  %alert;
	
  	
  color:	
  #468847;
}
Compiled CSS
.alert-­‐error,
.alert-­‐success	
  {
	
  	
  border-­‐radius:	
  10px;
}
.alert-­‐error	
  {
	
  	
  color:	
  #b94a48;
}
.alert-­‐success	
  {
	
  	
  color:	
  #468847;
}
@shayhowe & @darbyfreyModular HTML & CSS
MIXINS
• Share similar styles based off given arguments
• Duplicates properties, providing different values
• Assigned with the @mixin	
  rule followed by the
name and arguments
@shayhowe & @darbyfreyModular HTML & CSS
MIXINS
SCSS Syntax
@mixin	
  btn($color)	
  {	
  
	
  	
  color:	
  $color;
}
.btn	
  {
	
  	
  @mixin	
  btn(#f60);
}
Compiled CSS
.btn	
  {
	
  	
  color:	
  #f60;
}
@shayhowe & @darbyfreyModular HTML & CSS
SETTINGS
IN PRACTICE
http://bit.ly/modular-html-css
@shayhowe & @darbyfreyModular HTML & CSS
REFACTOR
@shayhowe & @darbyfreyModular HTML & CSS
COMMENTS
• Two different types of comments
• Standard CSS comments as normal
• Silent comments, assigned with two forward
slashes, not compiled in the output
@shayhowe & @darbyfreyModular HTML & CSS
COMMENTS
SCSS Syntax
/*	
  Normal	
  comment	
  */
.awesome	
  {
	
  	
  color:	
  #3276b1;
}
//	
  Omitted	
  comment
.very-­‐awesome	
  {
	
  	
  color:	
  #47a447;
}
Compiled CSS
/*	
  Normal	
  comment	
  */
.awesome	
  {
	
  	
  color:	
  #3276b1;
}
.very-­‐awesome	
  {
	
  	
  color:	
  #47a447;
}
@shayhowe & @darbyfreyModular HTML & CSS
PARENT SELECTOR
• Add styles to a previous selector
• Commonly used with pseudo classes
• Assigned with an ampersand
• May also be used as the key selector
@shayhowe & @darbyfreyModular HTML & CSS
PARENT SELECTOR
SCSS Syntax
a	
  {
	
  	
  color:	
  #8ec63f;
	
  	
  &:hover	
  {
	
  	
  	
  	
  color:	
  #f7941d;
	
  	
  }
}
Compiled CSS
a	
  {
	
  	
  color:	
  #8ec63f;
}
a:hover	
  {
	
  	
  color:	
  #f7941d;
}
@shayhowe & @darbyfreyModular HTML & CSS
INTERPOLATION
• Occasionally SCSS need to be interpolated
• Most commonly happens as part of a class name,
property name, or inside a string plain text
• Assigned by placing the value inside #{...}
@shayhowe & @darbyfreyModular HTML & CSS
INTERPOLATION
SCSS Syntax
$logo:	
  twitter;
$offset:	
  left;
.#{$logo}	
  {
	
  	
  #{$offset}:	
  20px;
}
Compiled CSS
.twitter	
  {
	
  	
  left:	
  20px;
}
@shayhowe & @darbyfreyModular HTML & CSS
REFACTOR
IN PRACTICE
http://bit.ly/modular-html-css
@shayhowe & @darbyfreyModular HTML & CSS
COMPILE
@shayhowe & @darbyfreyModular HTML & CSS
OUTPUT STYLES
• SCSS has multiple output styles
• Nested or expanded is best for development
• Compact or compressed is best for production
@shayhowe & @darbyfreyModular HTML & CSS
COMPILE
IN PRACTICE
http://bit.ly/modular-html-css
@shayhowe & @darbyfreyModular HTML & CSS
ONWARD
Ships on the Roadstead by Willem van de Velde the Younger
@shayhowe & @darbyfreyModular HTML & CSS
APPROACH
• Stop thinking about pages
• Start thinking about components
• Take visual inventory
@shayhowe & @darbyfreyModular HTML & CSS
THEMES
• Decouple HTML and CSS
• Separate presentation from layout
• Separate content from container
• Extend elements with classes
@shayhowe & @darbyfreyModular HTML & CSS
OUTCOMES
• Maintainability!
• Reusable code, less duplication
• Flexibility and extensibility
• Improved standards
@shayhowe & @darbyfreyModular HTML & CSS
WHAT’S NEXT
Build a style guide
• Twitter Bootstrap, Zurb Foundation
Review methodologies
• OOCSS, SMACSS
Test your code
• CSS Lint, Inspector, PageSpeed
@shayhowe & @darbyfreyModular HTML & CSS
THANK YOU!
Questions?
@shayhowe
@darbyfrey

More Related Content

What's hot (20)

PPTX
Rapid and Responsive - UX to Prototype with Bootstrap
Josh Jeffryes
 
PDF
Code &amp; design your first website (3:16)
Thinkful
 
PPTX
Web 102 INtro to CSS
Hawkman Academy
 
PDF
HTML5, just another presentation :)
François Massart
 
PDF
Prototyping w/HTML5 and CSS3
Todd Zaki Warfel
 
PDF
Code & Design your first website 4/18
TJ Stalcup
 
ZIP
Html5 public
doodlemoonch
 
PPTX
Blog HTML example for IML 295
Evan Hughes
 
PDF
CSS Frameworks
Mike Crabb
 
PDF
The Future Of CSS
Andy Budd
 
PPT
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
Deepak Sharma
 
PDF
CSS pattern libraries
Russ Weakley
 
PDF
Advanced CSS Troubleshooting & Efficiency
Denise Jacobs
 
PDF
Html5 ux london
Todd Zaki Warfel
 
PDF
Progressive Prototyping w/HTML5, CSS3 and jQuery
Todd Zaki Warfel
 
PDF
CSS - OOCSS, SMACSS and more
Russ Weakley
 
PPTX
Introduction to HTML5
Terry Ryan
 
PPTX
HTML/CSS Web Blog Example
Michael Bodie
 
PDF
Intro to CSS
Randy Oest II
 
PDF
Quality Development with CSS3
Shay Howe
 
Rapid and Responsive - UX to Prototype with Bootstrap
Josh Jeffryes
 
Code &amp; design your first website (3:16)
Thinkful
 
Web 102 INtro to CSS
Hawkman Academy
 
HTML5, just another presentation :)
François Massart
 
Prototyping w/HTML5 and CSS3
Todd Zaki Warfel
 
Code & Design your first website 4/18
TJ Stalcup
 
Html5 public
doodlemoonch
 
Blog HTML example for IML 295
Evan Hughes
 
CSS Frameworks
Mike Crabb
 
The Future Of CSS
Andy Budd
 
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
Deepak Sharma
 
CSS pattern libraries
Russ Weakley
 
Advanced CSS Troubleshooting & Efficiency
Denise Jacobs
 
Html5 ux london
Todd Zaki Warfel
 
Progressive Prototyping w/HTML5, CSS3 and jQuery
Todd Zaki Warfel
 
CSS - OOCSS, SMACSS and more
Russ Weakley
 
Introduction to HTML5
Terry Ryan
 
HTML/CSS Web Blog Example
Michael Bodie
 
Intro to CSS
Randy Oest II
 
Quality Development with CSS3
Shay Howe
 

Viewers also liked (15)

PPTX
Traabajo tics
Johnfre Parrado
 
ODP
Tandaa Kenya Moses Kemibaro
Moses Kemibaro
 
PPTX
Ppt beleidsnota 74 september 2014-de zeven hoofdzonden van overheidsingrijpen...
ETION
 
PPTX
Arnold schwarnzenegger
Andrés Chávarry
 
PDF
C4.compressed
Jinyu Emma Li
 
DOC
anu new resume.resume
anusharani sake
 
PPTX
Isp Final Gr Presentation
Haonan
 
PDF
Cantilever type switch design
eSAT Journals
 
PPTX
Ondernemen voor een betere wereld
ETION
 
PPT
1auditconcepts
Shubham Raj
 
PDF
Measuring the ROI of Informal Learning - Brandon Hall Group & Docebo
DoceboElearning
 
PDF
Talk Web Design: Get Ready For CSS Grid Layout
Rachel Andrew
 
PPT
Practical Malware Analysis: Ch 7: Analyzing Malicious Windows Programs
Sam Bowne
 
PPS
Technology strategy
Hamid Mazloomi
 
PPT
Technology and Innovation Management
Jamil AlKhatib
 
Traabajo tics
Johnfre Parrado
 
Tandaa Kenya Moses Kemibaro
Moses Kemibaro
 
Ppt beleidsnota 74 september 2014-de zeven hoofdzonden van overheidsingrijpen...
ETION
 
Arnold schwarnzenegger
Andrés Chávarry
 
C4.compressed
Jinyu Emma Li
 
anu new resume.resume
anusharani sake
 
Isp Final Gr Presentation
Haonan
 
Cantilever type switch design
eSAT Journals
 
Ondernemen voor een betere wereld
ETION
 
1auditconcepts
Shubham Raj
 
Measuring the ROI of Informal Learning - Brandon Hall Group & Docebo
DoceboElearning
 
Talk Web Design: Get Ready For CSS Grid Layout
Rachel Andrew
 
Practical Malware Analysis: Ch 7: Analyzing Malicious Windows Programs
Sam Bowne
 
Technology strategy
Hamid Mazloomi
 
Technology and Innovation Management
Jamil AlKhatib
 
Ad

Similar to Modular HTML & CSS Turbo Workshop (20)

PDF
Modular HTML & CSS Workshop
Shay Howe
 
PPTX
Css methods architecture
Lasha Sumbadze
 
KEY
What is Object Oriented CSS?
Nicole Sullivan
 
PDF
Organize Your Website With Advanced CSS Tricks
Andolasoft Inc
 
KEY
The Fast And The Fabulous
Nicole Sullivan
 
PDF
Creative Web 02 - HTML & CSS Basics
Lukas Oppermann
 
ZIP
OOCSS for Javascript pirates at jQueryPgh meetup
Brian Cavalier
 
PPTX
Rock Solid CSS Architecture
John Need
 
PPT
Web design-workflow
Peter Kaizer
 
PDF
Create a landing page
Fabien Vauchelles
 
PDF
What is Modular CSS?
Scott Vandehey
 
PDF
Evolution of CSS
Ecaterina Moraru (Valica)
 
PDF
Scalable CSS You and Your Back-End Coders Can Love - @CSSConf Asia 2014
Christian Lilley
 
PPT
Chapter 6 - Web Design
tclanton4
 
KEY
The Cascade, Grids, Headings, and Selectors from an OOCSS Perspective, Ajax ...
Nicole Sullivan
 
PPT
Make Css easy(part:2) : easy tips for css(part:2)
shabab shihan
 
PDF
Ch. 3 HTML5, CIS 110 13F
mh-108
 
PPTX
CSS Architecture: Writing Maintainable CSS
Alexei Skachykhin
 
PDF
Jonathan Snook - Falling to pieces: the componentization of the web
Turing Fest
 
PDF
OOCSS Lightening Talk
Julie Cameron
 
Modular HTML & CSS Workshop
Shay Howe
 
Css methods architecture
Lasha Sumbadze
 
What is Object Oriented CSS?
Nicole Sullivan
 
Organize Your Website With Advanced CSS Tricks
Andolasoft Inc
 
The Fast And The Fabulous
Nicole Sullivan
 
Creative Web 02 - HTML & CSS Basics
Lukas Oppermann
 
OOCSS for Javascript pirates at jQueryPgh meetup
Brian Cavalier
 
Rock Solid CSS Architecture
John Need
 
Web design-workflow
Peter Kaizer
 
Create a landing page
Fabien Vauchelles
 
What is Modular CSS?
Scott Vandehey
 
Evolution of CSS
Ecaterina Moraru (Valica)
 
Scalable CSS You and Your Back-End Coders Can Love - @CSSConf Asia 2014
Christian Lilley
 
Chapter 6 - Web Design
tclanton4
 
The Cascade, Grids, Headings, and Selectors from an OOCSS Perspective, Ajax ...
Nicole Sullivan
 
Make Css easy(part:2) : easy tips for css(part:2)
shabab shihan
 
Ch. 3 HTML5, CIS 110 13F
mh-108
 
CSS Architecture: Writing Maintainable CSS
Alexei Skachykhin
 
Jonathan Snook - Falling to pieces: the componentization of the web
Turing Fest
 
OOCSS Lightening Talk
Julie Cameron
 
Ad

More from Shay Howe (9)

PDF
Yes, Designer, You CAN Be a Product Leader
Shay Howe
 
PDF
Collaboration Practices
Shay Howe
 
PDF
How Constraints Cultivate Growth
Shay Howe
 
PDF
UI Design with HTML5 & CSS3
Shay Howe
 
PDF
HTML5 Semantics
Shay Howe
 
PDF
An Intro to HTML & CSS
Shay Howe
 
PDF
Quality Development with HTML5
Shay Howe
 
PDF
The Web Design Process: A Strategy for Success
Shay Howe
 
PDF
Writing for the Web: The Right Strategy
Shay Howe
 
Yes, Designer, You CAN Be a Product Leader
Shay Howe
 
Collaboration Practices
Shay Howe
 
How Constraints Cultivate Growth
Shay Howe
 
UI Design with HTML5 & CSS3
Shay Howe
 
HTML5 Semantics
Shay Howe
 
An Intro to HTML & CSS
Shay Howe
 
Quality Development with HTML5
Shay Howe
 
The Web Design Process: A Strategy for Success
Shay Howe
 
Writing for the Web: The Right Strategy
Shay Howe
 

Recently uploaded (20)

PPTX
Town planning is a concept used in architectural design. It plays a very impo...
IshikaPanchal11
 
PPTX
Mainframe Modernization Services with Vrnexgen
tejushrie
 
PPTX
EDC_UNIT _I FINAL (1).pptx dhud and w ah yes
TEAKADAITROLLS
 
PDF
The Role of Logos as Identity Shapers (IFIC Logo)
Md. Mehedi Hasan Asif
 
PPTX
Chapter 1-1.pptx hwhahaiaiautsfzjakaiwueysuua
hibaaqabdirisaaq331
 
PDF
ARC-101-B-4.pdfxxxxxxxxxxxxxxxxxxxxxxxxx
IzzyBaniquedBusto
 
PDF
ARChitec-BUILDING-UTILITIES-2-PART-5.pdf
IzzyBaniquedBusto
 
PPTX
Elevating Elegance: Lobby Design Ideas by Germany’s Top Building Rendering Se...
Yantram Animation Studio Corporation
 
PPTX
Great_Discoverers_Nohzyxyxyzyzyzyzzyz_Imagptx
kevadiyahem07
 
PDF
AI Intervention in Design & Content Creation
YellowSlice1
 
PDF
placemaking 10 principles bY Berkley group
Radhika525487
 
PPTX
Adobe Creative Cloud Cleaner Tool Crack Free Download Latest Version 2025
Slideshare
 
PPTX
办理学历认证UHI在读证明信英国赫特福德郡大学毕业证范本,UHI成绩单修改
Taqyea
 
PDF
🔴BUKTI KEMENANGAN HARI INI SENIN 14 JULI 2025 !!!🔴
GRAB
 
PPTX
811109685-CS3401-Algorithms-Unit-IV.pptx
archu26
 
PDF
S2 Associates brings museum exhibits to life with innovative design.pdf
S2 Associates
 
PDF
Presentation - Interior Design Concepts (2).pdf
vrindagrawal456
 
PPTX
the very teaching plan extra ordinary.pptx
PamelaOdibeli1
 
PPTX
Urban design is a huge concept when it comes to planning.
IshikaPanchal11
 
DOCX
Redefining Master Plans for creating sustainable cities-Jharkhand Conference...
JIT KUMAR GUPTA
 
Town planning is a concept used in architectural design. It plays a very impo...
IshikaPanchal11
 
Mainframe Modernization Services with Vrnexgen
tejushrie
 
EDC_UNIT _I FINAL (1).pptx dhud and w ah yes
TEAKADAITROLLS
 
The Role of Logos as Identity Shapers (IFIC Logo)
Md. Mehedi Hasan Asif
 
Chapter 1-1.pptx hwhahaiaiautsfzjakaiwueysuua
hibaaqabdirisaaq331
 
ARC-101-B-4.pdfxxxxxxxxxxxxxxxxxxxxxxxxx
IzzyBaniquedBusto
 
ARChitec-BUILDING-UTILITIES-2-PART-5.pdf
IzzyBaniquedBusto
 
Elevating Elegance: Lobby Design Ideas by Germany’s Top Building Rendering Se...
Yantram Animation Studio Corporation
 
Great_Discoverers_Nohzyxyxyzyzyzyzzyz_Imagptx
kevadiyahem07
 
AI Intervention in Design & Content Creation
YellowSlice1
 
placemaking 10 principles bY Berkley group
Radhika525487
 
Adobe Creative Cloud Cleaner Tool Crack Free Download Latest Version 2025
Slideshare
 
办理学历认证UHI在读证明信英国赫特福德郡大学毕业证范本,UHI成绩单修改
Taqyea
 
🔴BUKTI KEMENANGAN HARI INI SENIN 14 JULI 2025 !!!🔴
GRAB
 
811109685-CS3401-Algorithms-Unit-IV.pptx
archu26
 
S2 Associates brings museum exhibits to life with innovative design.pdf
S2 Associates
 
Presentation - Interior Design Concepts (2).pdf
vrindagrawal456
 
the very teaching plan extra ordinary.pptx
PamelaOdibeli1
 
Urban design is a huge concept when it comes to planning.
IshikaPanchal11
 
Redefining Master Plans for creating sustainable cities-Jharkhand Conference...
JIT KUMAR GUPTA
 

Modular HTML & CSS Turbo Workshop

  • 1. TACTICAL HTML & CSS MODULAR HTML & CSS TURBO WORKSHOP Shay Howe @shayhowe learn.shayhowe.com Darby Frey @darbyfrey darbyfrey.com
  • 2. @shayhowe & @darbyfreyModular HTML & CSS Shay Howe @shayhowe learn.shayhowe.com Darby Frey @darbyfrey darbyfrey.com
  • 3. @shayhowe & @darbyfreyModular HTML & CSS 1. The Problem 2. Groundwork 3. Assembling Layout 4. Accommodating Content 5. Turbo with SCSS 6. Onward OUR SCHEDULE
  • 4. @shayhowe & @darbyfreyModular HTML & CSS THE PROBLEM
  • 5. The Gust by Willem van de Velde the Younger
  • 6. @shayhowe & @darbyfreyModular HTML & CSS COMMON PROBLEMS • Websites have difficulty scaling • Code becomes brittle • Files and code bases begin to swell
  • 7. @shayhowe & @darbyfreyModular HTML & CSS WHAT’S WRONG • Best practices aren’t exactly best practices • Standards need to evolve
  • 8. @shayhowe & @darbyfreyModular HTML & CSS BEST BAD PRACTICES • Avoid extra elements • Avoid classes • Leverage type selectors • Leverage descendent selectors
  • 9. @shayhowe & @darbyfreyModular HTML & CSS BEST BAD PRACTICES Avoiding classes section  ul#nav  li  {...} section:nth-­‐child(2)  div:nth-­‐child(7)  >  a  {...} Leveraging selectors a.btn  {...} #main  a.btn  {...} #main  div.feature  a.btn  {...}
  • 10. @shayhowe & @darbyfreyModular HTML & CSS BEST BAD PRACTICES Bad #contact  li:nth-­‐child(1)  input, #contact  li:nth-­‐child(2)  input  {    width:  160px; } #contact  li:nth-­‐child(3)  textarea  {    width:  280px; }
  • 11. @shayhowe & @darbyfreyModular HTML & CSS BEST BAD PRACTICES Good .col-­‐1  {    width:  160px; } .col-­‐2  {    width:  280px; }
  • 12. @shayhowe & @darbyfreyModular HTML & CSS SPECIFICITY? • Specificity determines which styles are applied • Each selector has a specificity weight • High specificity beats low specificity • Low specificity is key
  • 13. @shayhowe & @darbyfreyModular HTML & CSS MEASURING SPECIFICITY Formula • IDs, Classes/Pseudo-classes/Attributes, Elements High Specificity (Bad) #primary  #main  div.gallery  figure.media IDs: 2, Classes: 2, Elements: 2 — Compiled: 2–2–2 Low Specificity (Good) .gallery-­‐media IDs: 0, Classes: 1, Elements: 0 — Compiled: 0–1–0
  • 15. @shayhowe & @darbyfreyModular HTML & CSS WATCH SPECIFICITY • Be explicit • Keep specificity low • Never use IDs or !important • Avoid nested selectors (#main  .spotlight  strong  span)
  • 16. @shayhowe & @darbyfreyModular HTML & CSS WATCH SPECIFICITY Bad #primary  #main  div.gallery  {    text-­‐transform:  uppercase; } #primary  #main  div.gallery  figure.media  {    background:  #ccc; }
  • 17. @shayhowe & @darbyfreyModular HTML & CSS WATCH SPECIFICITY Good .gallery  {    text-­‐transform:  uppercase; } .gallery-­‐media  {    background:  #ccc; }
  • 18. Parade of the Black Sea Fleet by Ivan Aivazovsky
  • 19. @shayhowe & @darbyfreyModular HTML & CSS MAINTAINABILITY Code must be... • Organized • Modular • Performant
  • 20. @shayhowe & @darbyfreyModular HTML & CSS METHODOLOGIES OOCSS • Object-Oriented CSS From Nicole Sullivan – oocss.org SMACSS • Scalable and Modular Architecture for CSS From Jonathan Snook – smacss.com
  • 21. @shayhowe & @darbyfreyModular HTML & CSS GROUNDWORK
  • 22. @shayhowe & @darbyfreyModular HTML & CSS REUSE CODE • Do not duplicate code • Remove old code • Defer loading subsequent styles
  • 23. @shayhowe & @darbyfreyModular HTML & CSS REUSE CODE Bad .news  {    background:  #eee;    color:  #666; } .social  {    background:  #eee;    color:  #666; }
  • 24. @shayhowe & @darbyfreyModular HTML & CSS REUSE CODE Good .news, .social  {    background:  #eee;    color:  #666; } Better .feat-­‐box  {    background:  #eee;    color:  #666; }
  • 25. @shayhowe & @darbyfreyModular HTML & CSS USE CLASSES • Write understandable class names • Avoid unnecessary nesting • Use same strength specificity
  • 26. @shayhowe & @darbyfreyModular HTML & CSS USE CLASSES Bad .feat-­‐box  .callout  .pr  {    font-­‐size:  12px; } .feat-­‐box  .callout  .pr  .un  {    color:  #39f; }
  • 27. @shayhowe & @darbyfreyModular HTML & CSS USE CLASSES Good .feat-­‐box  .price  {    font-­‐size:  12px; } .feat-­‐box  .unit  {    color:  #39f; }
  • 28. @shayhowe & @darbyfreyModular HTML & CSS USE CLASSES Bad .btn.large  {    font-­‐size:  24px;        padding:  15px  30px; } <div  class="btn  large">...</div>
  • 29. @shayhowe & @darbyfreyModular HTML & CSS USE CLASSES Good .btn-­‐large  {    font-­‐size:  24px;    padding:  15px  30px; } <div  class="btn-­‐large">...</div>
  • 30. @shayhowe & @darbyfreyModular HTML & CSS ASSEMBLING LAYOUT
  • 31. @shayhowe & @darbyfreyModular HTML & CSS ABSTRACT STRUCTURE • Separate presentation (or theme) from layout • Create an object layer for layout • Create a skin layer for theme • Use a grid
  • 32. @shayhowe & @darbyfreyModular HTML & CSS ABSTRACT STRUCTURE Bad .news  {    background:  #eee;    color:  #666;    margin:  0  10px;    width:  400px; } <div  class="news">...</div>
  • 33. @shayhowe & @darbyfreyModular HTML & CSS ABSTRACT STRUCTURE Good .grid-­‐4  {    margin:  0  10px;    width:  400px; } .feat-­‐box  {    background:  #eee;    color:  #666; } <div  class="grid-­‐4  feat-­‐box">...</div>
  • 34. @shayhowe & @darbyfreyModular HTML & CSS TRANSPARENTIZE ELEMENTS • Stylize elements to be transparent • Keep visual properties apart from layout properties
  • 35. @shayhowe & @darbyfreyModular HTML & CSS TRANSPARENTIZE ELEMENTS Bad .pagination  {    border-­‐radius:  5px;    border:  1px  solid  #eee;    margin:  0  10px;    width:  620px; } <ul  class="pagination">...</ul>
  • 36. @shayhowe & @darbyfreyModular HTML & CSS TRANSPARENTIZE ELEMENTS Good .grid-­‐8  {    margin:  0  10px;    width:  620px; } .offset-­‐box  {    border-­‐radius:  5px;    border:  1px  solid  #eee; } <ul  class="grid-­‐8  offset-­‐box">...</ul>
  • 37. @shayhowe & @darbyfreyModular HTML & CSS CREATE ADAPTABLE LAYOUTS • Height and width should be flexible • Height should extend with content • Width should extend with a grid
  • 38. @shayhowe & @darbyfreyModular HTML & CSS CREATE ADAPTABLE LAYOUTS Bad #main  {    float:  left;    margin:  0  10px;    width:  620px; } #aside  {    float:  left;    margin:  0  10px;    width:  300px; }
  • 39. @shayhowe & @darbyfreyModular HTML & CSS CREATE ADAPTABLE LAYOUTS Good .grid-­‐4, .grid-­‐8  {    float:  left;    margin:  0  10px; } .grid-­‐4  {    width:  300px; } .grid-­‐8  {    width:  620px; }
  • 40. @shayhowe & @darbyfreyModular HTML & CSS ASSEMBLING LAYOUT IN PRACTICE http://bit.ly/modular-html-css
  • 41. @shayhowe & @darbyfreyModular HTML & CSS ACCOMMODATING CONTENT
  • 42. @shayhowe & @darbyfreyModular HTML & CSS SEPARATE CONTENT • Separate content from container • Stylize content regardless of container
  • 43. @shayhowe & @darbyfreyModular HTML & CSS SEPARATE CONTENT Bad .alert  {    background:  #f2dede;    border-­‐radius:  10px;    color:  #b94a48;    padding:  10px  20px; } <div  class="alert">...</div>
  • 44. @shayhowe & @darbyfreyModular HTML & CSS SEPARATE CONTENT Good .alert  {    border-­‐radius:  10px;    padding:  10px  20px; } .alert-­‐error  {    background:  #f2dede;    color:  #b94a48; } <div  class="alert  alert-­‐error">...</div>
  • 45. @shayhowe & @darbyfreyModular HTML & CSS AVOID PARENT DEPENDENCY • Remove parent container dependency • Decouple CSS from HTML • Create components to be used anywhere
  • 46. @shayhowe & @darbyfreyModular HTML & CSS AVOID PARENT DEPENDENCY Bad .feat-­‐box  {    background:  #eee; } article  .feat-­‐box  {    background:  #fff; } <article>    <div  class="feat-­‐box">...</div> </article>
  • 47. @shayhowe & @darbyfreyModular HTML & CSS AVOID PARENT DEPENDENCY Good .feat-­‐box  {    background:  #eee; } .feat-­‐box-­‐alt  {    background:  #fff; } <article>    <div  class="feat-­‐box-­‐alt">...</div> </article>
  • 48. @shayhowe & @darbyfreyModular HTML & CSS FAVOR SEMANTICS • Allow elements to adapt • Uses individual classes to extend modules
  • 49. @shayhowe & @darbyfreyModular HTML & CSS FAVOR SEMANTICS Bad .feat-­‐box  h2  {    color:  #f60;    font:  18px  Helvetica,  sans-­‐serif; } <div  class="feat-­‐box">    <h2>...</h2> </div>
  • 50. @shayhowe & @darbyfreyModular HTML & CSS FAVOR SEMANTICS Good .feat-­‐subhead  {    color:  #f60;    font:  18px  Helvetica,  sans-­‐serif; } <div  class="feat-­‐box">    <h2  class="feat-­‐subhead">...</h2> </div>
  • 51. @shayhowe & @darbyfreyModular HTML & CSS ACCOMMODATING CONTENT IN PRACTICE http://bit.ly/modular-html-css
  • 52. @shayhowe & @darbyfreyModular HTML & CSS TURBO WITH SCSS
  • 53. @shayhowe & @darbyfreyModular HTML & CSS SETUP
  • 54. @shayhowe & @darbyfreyModular HTML & CSS SCSS • CSS preprocessor • Extension of CSS3 • Compiled using Ruby • Adds nested rules, variables, mixins, selector inheritance, and more
  • 55. @shayhowe & @darbyfreyModular HTML & CSS SCSS SCSS Syntax .new  {    color:  #f60;    .item  {        font-­‐size:  24px;    } } Compiled CSS .new  {    color:  #f60; } .new  .item  {    font-­‐size:  24px; }
  • 56. @shayhowe & @darbyfreyModular HTML & CSS SCSS VS. SASS SCSS Syntax .new  {    color:  #f60;    .item  {        font-­‐size:  24px;    } } Sass Syntax .new    color:  #f60    .item        font-­‐size:  24px
  • 57. @shayhowe & @darbyfreyModular HTML & CSS COMPASS • Built on top of Sass • Includes reusable patterns • Provides cross browser CSS3 mixins
  • 58. @shayhowe & @darbyfreyModular HTML & CSS SCOUT APP • GUI for compiling Sass and Compass • Available for both Mac and Windows
  • 59. @shayhowe & @darbyfreyModular HTML & CSS SETUP IN PRACTICE http://bit.ly/modular-html-css
  • 60. @shayhowe & @darbyfreyModular HTML & CSS ORGANIZATION
  • 61. @shayhowe & @darbyfreyModular HTML & CSS TECHNIQUE Settings • Utility styles (Extends, Mixins, Variables) Base • Core styles for entire site (Layout, Typography) Components • UI concepts & design patterns (Buttons, List, Navigation) Modules • Business logic (Aside, Header, Footer)
  • 62. @shayhowe & @darbyfreyModular HTML & CSS TECHNIQUE
  • 63. @shayhowe & @darbyfreyModular HTML & CSS PARTIALS • Must begin with an underscore, _ • Must have a file extension of .scss, not .css.scss
  • 64. @shayhowe & @darbyfreyModular HTML & CSS IMPORTS workshop.css.scss //  Compass @import  "compass/css3"; //  Settings @import  "settings/variables"; //  Base @import  "base/layout"; ...
  • 65. @shayhowe & @darbyfreyModular HTML & CSS ORGANIZATION IN PRACTICE http://bit.ly/modular-html-css
  • 66. @shayhowe & @darbyfreyModular HTML & CSS SETTINGS
  • 67. @shayhowe & @darbyfreyModular HTML & CSS VARIABLES • Allow common values to be shared • Assigned with a dollar sign, name, colon, and value • May be a number, string, boolean, null, or multiple comma separated values
  • 68. @shayhowe & @darbyfreyModular HTML & CSS VARIABLES SCSS Syntax $font-­‐base:  14px; $sans-­‐serif:  "Open  Sans",  sans-­‐serif; p  {    font:  $font-­‐base  $sans-­‐serif; } Compiled CSS p  {    font:  14px  "Open  Sans",  sans-­‐serif; }
  • 69. @shayhowe & @darbyfreyModular HTML & CSS EXTENDS • Share common styles without duplicating them • Keep code weight low • Generates detailed selectors • Assigned with the @extend  rule followed by the selector
  • 70. @shayhowe & @darbyfreyModular HTML & CSS EXTENDS SCSS Syntax .alert  {    border-­‐radius:  10px; } .alert-­‐error  {    @extend  .alert;    color:  #b94a48; } .alert-­‐success  {    @extend  .alert;    color:  #468847; } Compiled CSS .alert, .alert-­‐error, .alert-­‐success  {    border-­‐radius:  10px; } .alert-­‐error  {    color:  #b94a48; } .alert-­‐success  {    color:  #468847; }
  • 71. @shayhowe & @darbyfreyModular HTML & CSS PLACEHOLDERS • Similar to extends • Selector is assigned with a percentage sign • Extended selector is not output, only the styles
  • 72. @shayhowe & @darbyfreyModular HTML & CSS PLACEHOLDERS SCSS Syntax %alert  {    border-­‐radius:  10px; } .alert-­‐error  {    @extend  %alert;    color:  #b94a48; } .alert-­‐success  {    @extend  %alert;    color:  #468847; } Compiled CSS .alert-­‐error, .alert-­‐success  {    border-­‐radius:  10px; } .alert-­‐error  {    color:  #b94a48; } .alert-­‐success  {    color:  #468847; }
  • 73. @shayhowe & @darbyfreyModular HTML & CSS MIXINS • Share similar styles based off given arguments • Duplicates properties, providing different values • Assigned with the @mixin  rule followed by the name and arguments
  • 74. @shayhowe & @darbyfreyModular HTML & CSS MIXINS SCSS Syntax @mixin  btn($color)  {      color:  $color; } .btn  {    @mixin  btn(#f60); } Compiled CSS .btn  {    color:  #f60; }
  • 75. @shayhowe & @darbyfreyModular HTML & CSS SETTINGS IN PRACTICE http://bit.ly/modular-html-css
  • 76. @shayhowe & @darbyfreyModular HTML & CSS REFACTOR
  • 77. @shayhowe & @darbyfreyModular HTML & CSS COMMENTS • Two different types of comments • Standard CSS comments as normal • Silent comments, assigned with two forward slashes, not compiled in the output
  • 78. @shayhowe & @darbyfreyModular HTML & CSS COMMENTS SCSS Syntax /*  Normal  comment  */ .awesome  {    color:  #3276b1; } //  Omitted  comment .very-­‐awesome  {    color:  #47a447; } Compiled CSS /*  Normal  comment  */ .awesome  {    color:  #3276b1; } .very-­‐awesome  {    color:  #47a447; }
  • 79. @shayhowe & @darbyfreyModular HTML & CSS PARENT SELECTOR • Add styles to a previous selector • Commonly used with pseudo classes • Assigned with an ampersand • May also be used as the key selector
  • 80. @shayhowe & @darbyfreyModular HTML & CSS PARENT SELECTOR SCSS Syntax a  {    color:  #8ec63f;    &:hover  {        color:  #f7941d;    } } Compiled CSS a  {    color:  #8ec63f; } a:hover  {    color:  #f7941d; }
  • 81. @shayhowe & @darbyfreyModular HTML & CSS INTERPOLATION • Occasionally SCSS need to be interpolated • Most commonly happens as part of a class name, property name, or inside a string plain text • Assigned by placing the value inside #{...}
  • 82. @shayhowe & @darbyfreyModular HTML & CSS INTERPOLATION SCSS Syntax $logo:  twitter; $offset:  left; .#{$logo}  {    #{$offset}:  20px; } Compiled CSS .twitter  {    left:  20px; }
  • 83. @shayhowe & @darbyfreyModular HTML & CSS REFACTOR IN PRACTICE http://bit.ly/modular-html-css
  • 84. @shayhowe & @darbyfreyModular HTML & CSS COMPILE
  • 85. @shayhowe & @darbyfreyModular HTML & CSS OUTPUT STYLES • SCSS has multiple output styles • Nested or expanded is best for development • Compact or compressed is best for production
  • 86. @shayhowe & @darbyfreyModular HTML & CSS COMPILE IN PRACTICE http://bit.ly/modular-html-css
  • 87. @shayhowe & @darbyfreyModular HTML & CSS ONWARD
  • 88. Ships on the Roadstead by Willem van de Velde the Younger
  • 89. @shayhowe & @darbyfreyModular HTML & CSS APPROACH • Stop thinking about pages • Start thinking about components • Take visual inventory
  • 90. @shayhowe & @darbyfreyModular HTML & CSS THEMES • Decouple HTML and CSS • Separate presentation from layout • Separate content from container • Extend elements with classes
  • 91. @shayhowe & @darbyfreyModular HTML & CSS OUTCOMES • Maintainability! • Reusable code, less duplication • Flexibility and extensibility • Improved standards
  • 92. @shayhowe & @darbyfreyModular HTML & CSS WHAT’S NEXT Build a style guide • Twitter Bootstrap, Zurb Foundation Review methodologies • OOCSS, SMACSS Test your code • CSS Lint, Inspector, PageSpeed
  • 93. @shayhowe & @darbyfreyModular HTML & CSS THANK YOU! Questions? @shayhowe @darbyfrey