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
Ad

Recommended

Modular HTML & CSS
Modular HTML & CSS
Shay Howe
 
Modular HTML, CSS, & JS Workshop
Modular HTML, CSS, & JS Workshop
Shay Howe
 
Joomla Technical SEO
Joomla Technical SEO
Webshop and websites by: Webcreatives
 
Html:css crash course (4:5)
Html:css crash course (4:5)
Thinkful
 
2022 HTML5: The future is now
2022 HTML5: The future is now
Gonzalo Cordero
 
Slow kinda sucks
Slow kinda sucks
Tim Wright
 
Joomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
Joomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
Steven Pignataro
 
TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單
偉格 高
 
Rapid and Responsive - UX to Prototype with Bootstrap
Rapid and Responsive - UX to Prototype with Bootstrap
Josh Jeffryes
 
Code &amp; design your first website (3:16)
Code &amp; design your first website (3:16)
Thinkful
 
Web 102 INtro to CSS
Web 102 INtro to CSS
Hawkman Academy
 
HTML5, just another presentation :)
HTML5, just another presentation :)
François Massart
 
Prototyping w/HTML5 and CSS3
Prototyping w/HTML5 and CSS3
Todd Zaki Warfel
 
Code & Design your first website 4/18
Code & Design your first website 4/18
TJ Stalcup
 
Html5 public
Html5 public
doodlemoonch
 
Blog HTML example for IML 295
Blog HTML example for IML 295
Evan Hughes
 
CSS Frameworks
CSS Frameworks
Mike Crabb
 
The Future Of CSS
The Future Of CSS
Andy Budd
 
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
Deepak Sharma
 
CSS pattern libraries
CSS pattern libraries
Russ Weakley
 
Advanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & Efficiency
Denise Jacobs
 
Html5 ux london
Html5 ux london
Todd Zaki Warfel
 
Progressive Prototyping w/HTML5, CSS3 and jQuery
Progressive Prototyping w/HTML5, CSS3 and jQuery
Todd Zaki Warfel
 
CSS - OOCSS, SMACSS and more
CSS - OOCSS, SMACSS and more
Russ Weakley
 
Introduction to HTML5
Introduction to HTML5
Terry Ryan
 
HTML/CSS Web Blog Example
HTML/CSS Web Blog Example
Michael Bodie
 
Intro to CSS
Intro to CSS
Randy Oest II
 
Quality Development with CSS3
Quality Development with CSS3
Shay Howe
 
Traabajo tics
Traabajo tics
Johnfre Parrado
 
Tandaa Kenya Moses Kemibaro
Tandaa Kenya Moses Kemibaro
Moses Kemibaro
 

More Related Content

What's hot (20)

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

Viewers also liked (15)

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

Similar to Modular HTML & CSS Turbo Workshop (20)

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

More from Shay Howe (9)

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

Recently uploaded (20)

Assignment 1_ studying a roomkjdhfkeqjdhfjeqhfdjkqebf
Assignment 1_ studying a roomkjdhfkeqjdhfjeqhfdjkqebf
kunduanannya2003
 
Capcut Pro Crack For PC Latest Version {Fully Unlocked}
Capcut Pro Crack For PC Latest Version {Fully Unlocked}
Ayesha khan
 
Indian_Constitution_Presentation.pptx , images
Indian_Constitution_Presentation.pptx , images
jaglandushyant
 
roadsafety_training_manual_unit_1_magnitude_and_impact.ppt
roadsafety_training_manual_unit_1_magnitude_and_impact.ppt
mbkl05cctjv
 
Numbers 1 to 100 Circle Flashcard s.pptx
Numbers 1 to 100 Circle Flashcard s.pptx
KarenGimena1
 
Genting Kecamatan Samadua Tahun 2025.pptx
Genting Kecamatan Samadua Tahun 2025.pptx
fazrulichsanmilan
 
week2.pptx program program program problems
week2.pptx program program program problems
doramira833
 
AI-Driven-Personalization-in-UX-Designing-for-One-in-a-Million.pdf
AI-Driven-Personalization-in-UX-Designing-for-One-in-a-Million.pdf
Sultan Shalakhti
 
Chapter 3 Agile Development 7e.ppt,Chapter 5 - 1.ppt
Chapter 3 Agile Development 7e.ppt,Chapter 5 - 1.ppt
NaveedRehman55
 
FLOURISHING THROUGH SENSES: FROM Ab‘SENSE’ to Pre‘SENSE’ to Es‘SENSE’ to Re-...
FLOURISHING THROUGH SENSES: FROM Ab‘SENSE’ to Pre‘SENSE’ to Es‘SENSE’ to Re-...
Samuel Thuo
 
Corneal_Edema_MCQs_with_answes click here
Corneal_Edema_MCQs_with_answes click here
priapria0901
 
ART & FUNDAMENTALS OF DESIGN CHAPTER -01.pptx
ART & FUNDAMENTALS OF DESIGN CHAPTER -01.pptx
riteshsahdev2
 
GOV. Incentives for ED[1][1][1].pptx [Read-Only].pptx
GOV. Incentives for ED[1][1][1].pptx [Read-Only].pptx
kunalArora758765
 
Figure.pptxfyytytyrrytrtytrttttrrttyyyyuuu
Figure.pptxfyytytyrrytrtytrttttrrttyyyyuuu
RandiAnugerah1
 
Formal Informal Apology letter.pptxvvvvv
Formal Informal Apology letter.pptxvvvvv
iqlimajurayeva
 
User Persona for a fitness CEO Founder
User Persona for a fitness CEO Founder
modele dawodu
 
Exploratory Experiences Built by Design (UXPA25)
Exploratory Experiences Built by Design (UXPA25)
Design for Context
 
AUTOMATIC NUMBER PLATE RECOGNITION 1.pptx
AUTOMATIC NUMBER PLATE RECOGNITION 1.pptx
ABHISHEKCHAKRABORTY931369
 
3 bedroom bungalow and all bedrooms ensuite
3 bedroom bungalow and all bedrooms ensuite
modele dawodu
 
MULTI SENSORY EXPERIENCE DESIGN RESEARCH
MULTI SENSORY EXPERIENCE DESIGN RESEARCH
Samuel Thuo
 
Assignment 1_ studying a roomkjdhfkeqjdhfjeqhfdjkqebf
Assignment 1_ studying a roomkjdhfkeqjdhfjeqhfdjkqebf
kunduanannya2003
 
Capcut Pro Crack For PC Latest Version {Fully Unlocked}
Capcut Pro Crack For PC Latest Version {Fully Unlocked}
Ayesha khan
 
Indian_Constitution_Presentation.pptx , images
Indian_Constitution_Presentation.pptx , images
jaglandushyant
 
roadsafety_training_manual_unit_1_magnitude_and_impact.ppt
roadsafety_training_manual_unit_1_magnitude_and_impact.ppt
mbkl05cctjv
 
Numbers 1 to 100 Circle Flashcard s.pptx
Numbers 1 to 100 Circle Flashcard s.pptx
KarenGimena1
 
Genting Kecamatan Samadua Tahun 2025.pptx
Genting Kecamatan Samadua Tahun 2025.pptx
fazrulichsanmilan
 
week2.pptx program program program problems
week2.pptx program program program problems
doramira833
 
AI-Driven-Personalization-in-UX-Designing-for-One-in-a-Million.pdf
AI-Driven-Personalization-in-UX-Designing-for-One-in-a-Million.pdf
Sultan Shalakhti
 
Chapter 3 Agile Development 7e.ppt,Chapter 5 - 1.ppt
Chapter 3 Agile Development 7e.ppt,Chapter 5 - 1.ppt
NaveedRehman55
 
FLOURISHING THROUGH SENSES: FROM Ab‘SENSE’ to Pre‘SENSE’ to Es‘SENSE’ to Re-...
FLOURISHING THROUGH SENSES: FROM Ab‘SENSE’ to Pre‘SENSE’ to Es‘SENSE’ to Re-...
Samuel Thuo
 
Corneal_Edema_MCQs_with_answes click here
Corneal_Edema_MCQs_with_answes click here
priapria0901
 
ART & FUNDAMENTALS OF DESIGN CHAPTER -01.pptx
ART & FUNDAMENTALS OF DESIGN CHAPTER -01.pptx
riteshsahdev2
 
GOV. Incentives for ED[1][1][1].pptx [Read-Only].pptx
GOV. Incentives for ED[1][1][1].pptx [Read-Only].pptx
kunalArora758765
 
Figure.pptxfyytytyrrytrtytrttttrrttyyyyuuu
Figure.pptxfyytytyrrytrtytrttttrrttyyyyuuu
RandiAnugerah1
 
Formal Informal Apology letter.pptxvvvvv
Formal Informal Apology letter.pptxvvvvv
iqlimajurayeva
 
User Persona for a fitness CEO Founder
User Persona for a fitness CEO Founder
modele dawodu
 
Exploratory Experiences Built by Design (UXPA25)
Exploratory Experiences Built by Design (UXPA25)
Design for Context
 
3 bedroom bungalow and all bedrooms ensuite
3 bedroom bungalow and all bedrooms ensuite
modele dawodu
 
MULTI SENSORY EXPERIENCE DESIGN RESEARCH
MULTI SENSORY EXPERIENCE DESIGN RESEARCH
Samuel Thuo
 

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