SlideShare a Scribd company logo
SASS For The Win! An introduction to SASS Oct. 13, 2011 1 Created for Magma Rails 2011 - www.magmarails.com Slides posted at http://tinyurl.com/magma-haml-sass Sample code from this presentation can be found in the following sample app: https://github.com/jonathandean/SASS-and-HAML-FTW
What is SASS? Syntactically Awesome Stylesheets Smarter CSS Gives you variables and methods (mixins) for CSS Lets you nest declarations Provides selector inheritance Lets you do math with your variable values Works by compiling .sass or .scss files into normal valid .css Commonly used in Ruby on Rails applications but can be used in any web project Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 2
SASS and SCSS Two available syntaxes SASS SCSS HAML-style indentation No brackets or semi-colons, based on indentation Less characters to type Enforced conventions/neatness Semi-colon and bracket syntax Superset of normal CSS Normal CSS is also valid SCSS Newer and recommended Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 3
SASS and SCSS Two available syntaxes SASS SCSS $txt-size: 12px $txt-color: #333 $link-color: #999 #main font-size: $txt-size color: $txt-color a 	color: $link-color $txt-size: 12px; $txt-color: #333; $link-color: #999; #main{ 	font-size: $txt-size; 	color: $txt-color; a{ 		color: $link-color; 	} } Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 4
SASS and SCSS Both syntaxes have the same functionality Both of the previous examples compile to: Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 5 #main{ 	font-size: 12px; 	color: #333333; } #main a{ 	color: #999999; } ,[object Object]
Note: Some examples compile using different formatting, I changed them for the slides for readability,[object Object]
Selector inheritance You can also extend other CSS declarations with @extend .error{ color: red; } .seriousError{ @extend .error; font-weight: bold; } Resulting CSS .error, .seriousError{ color: red; } .seriousError{ font-weight: bold; } Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 7
Mixins Mixins are sets of reusable styles, almost like methods in other languages @mixin awesome-text{ font-size: 24px; font-weight: bold; color: blue; } p{ @include awesome-text; } Resulting CSS p{ font-size: 24px; font-weight: bold; color: blue; } Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 8
Mixins with parameters Mixins can also take parameters Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 9 SCSS @mixin awesome-text($size){ font-size: $size; font-weight: bold; color: blue; } p{ @include awesome-text(24px); } li{ 	@include awesome-text(18px); } Resulting CSS p{ font-size: 24px; font-weight: bold; color: blue; } li{ font-size: 18px; font-weight: bold; color: blue; }
More advanced mixin example @mixin image-replace($image-url){ &, & a{ 		display: block; 		background: url($image-url) no-repeat; 	} 	a{ 		text-indent: -99999px; 		text-decoration: none; 	} } h1{ @include image-replace(“images/header.gif”); } Resulting CSS h1, h1 a{ 	display: block; background: url(“images/header.gif”) no-repeat; } h1 a{ text-indent: -99999px; text-decoration: none; } Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 10
Mathematic operations You can do simple math operations with your variable values, even if they have units Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 11 $page-width: 500px; $sidebar-width: 100px; $content-width: $page-width - $sidebar-width; #main{ 	width: $page-width; #sidebar{ 	width: $sidebar-width; } #content{ 	width: $content-width; } } Resulting CSS #main{ 	width: 500px; } #main #sidebar{ width: 100px; } #main #content{ 	width: 400px; }
Mathematic operations Supported operations: +, -, *, /, % The division operator (/) is also valid in normal CSS font: 10px/8px; // stays font: 10px/8px; So it is only used as division in three cases When one of the values is stored in a variable $content-width: 500px; width: $content-width/2; // becomes width: 250px; When surrounded by parenthesis width: (500px/2); // becomes width: 250px; When part of another math expression width: 10px + 500px/2; // becomes width: 260px; To use variables in the CSS version without doing math operations $some-val: 10px; $another-val: 8px; font: #{$some-val}/#{$another-val}; // font: 10px/8px; Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 12
Interpolation You can use variables in selectors and property declarations $class-name: wrapper; $attribute-name: font; div.#{$class-name}{ #{$attribute-name}-size: 12px; } Resulting CSS div.wrapper{ 	font-size: 12px; } Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 13 Warning: RubyMine may not recognize this syntax and highlight it as an error
Control directives Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 14 @if $type: big; p{ @if $type == big{ font-size: 24px; } } Resulting CSS p{ 	font-size: 24px; } @if / @else $type: small; p{ @if $type == big { font-size: 24px; } @else if $type == medium{ 	font-size: 18px; } @else { 	font-size: 16px; } } Resulting CSS p{ 	font-size: 16px; }
Control directives Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 15 Resulting CSS .item-1{ width: 10px; } .item-2{ width: 20px; } .item-3{ width: 30px; } @for @for $i from 1 through 3 { .item-#{$i} { width: 10px * $i;  } } @each 	@each $item in item1, item2{ 	.#{$item}{ 	width: 500px; 	} 	} .item1{ width: 500px; } .item2{ width: 500px; } @while 	$i: 6; 	@while $i > 0 { 	.item-#{$i} { 	width: 10px * $i; 	} 	$i: $i - 2; 	} .item-6{ width: 60px; } .item-4{ width: 40px; } .item-2{ width: 20px; }
Importing other SASS files Import other .sass or .scss files using @import @import “reset”; @import “reset.css.scss”; // File extension also allowed You can also create partials that will only be imported to other files and not compiled to .css files themselves Just name the partial with an underscore in the front, such as _sample.css.scss Now import the same way: @import “sample”; Handy for organizing styles into multiple files but compiling to only one file for use on the web Note: when using the Rails 3.1 asset pipeline, name your files with .css.scss or .css.sassextentions instead of just .scss or .sass Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 16
Nested properties Simplify the declaration of name-spaced CSS properties Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 17 Resulting CSS SCSS .sassy{ font:{ 	size: 12px; 	weight: bold; } } .sassy{ font-size: 12px; 	font-weight: bold; }
Color operations You can also do mathematic operations on color values color: #010203 + #040506; // color: #050709; Howthisiscomputed #010203 + #040506 = #050709 01 + 04 = 05 02 + 05 = 07 03 + 06 = 09 Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 18
Variable defaults Will only assign the variable if it hasn’t been defined yet Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 19 $page-color: #333; $page-color: #666 !default; $section-color: #999 !default; // won’t be assigned because $page-color has already been defined // will be assigned because $section-color hasn’t been defined yet Handy for when you import a partial in some files but not in all of them and want the value from the partial to take precedence if it has already been defined
Using SASS without Rails gem install sass sass --watch path/to/input.scss:path/to/output.css Sass will auto-compile to output.css each time input.css is modified Use it for any project you have CSS Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 20
Using SASS in a Rails application Rails 3.1 Included by default! Put your filename.css.scss files in app/assets/stylesheets/ The Asset Pipeline will deal with compiling them for you See the sample application! For older versions Add the following to your Gemfile gem “sass” You can put your sass files anywhere, but why not use the new convention introduced by 3.1 Use sass --watch in the command line or another gem such as Compass Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 21

More Related Content

What's hot

What's hot (20)

An Introduction to CSS Preprocessors (SASS & LESS)
An Introduction to CSS Preprocessors (SASS & LESS)An Introduction to CSS Preprocessors (SASS & LESS)
An Introduction to CSS Preprocessors (SASS & LESS)
 
Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)
 
CSS
CSS CSS
CSS
 
Flexbox
FlexboxFlexbox
Flexbox
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
 
Less vs sass
Less vs sassLess vs sass
Less vs sass
 
BEM it! Introduction to BEM methodology
BEM it! Introduction to BEM methodologyBEM it! Introduction to BEM methodology
BEM it! Introduction to BEM methodology
 
Bootstrap
BootstrapBootstrap
Bootstrap
 
Css
CssCss
Css
 
CSS Transitions, Transforms, Animations
CSS Transitions, Transforms, Animations CSS Transitions, Transforms, Animations
CSS Transitions, Transforms, Animations
 
Cascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) helpCascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) help
 
Javascript basics
Javascript basicsJavascript basics
Javascript basics
 
CSS Best practice
CSS Best practiceCSS Best practice
CSS Best practice
 
CSS - OOCSS, SMACSS and more
CSS - OOCSS, SMACSS and moreCSS - OOCSS, SMACSS and more
CSS - OOCSS, SMACSS and more
 
Styled Components & React.js
Styled Components & React.jsStyled Components & React.js
Styled Components & React.js
 
CSS Selectors
CSS SelectorsCSS Selectors
CSS Selectors
 
Cascading style sheets (CSS)
Cascading style sheets (CSS)Cascading style sheets (CSS)
Cascading style sheets (CSS)
 
Bootstrap 5 ppt
Bootstrap 5 pptBootstrap 5 ppt
Bootstrap 5 ppt
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
 

Viewers also liked

Using scss-at-noisestreet
Using scss-at-noisestreetUsing scss-at-noisestreet
Using scss-at-noisestreet
Wei Pin Teo
 

Viewers also liked (20)

Intro to SASS CSS
Intro to SASS CSSIntro to SASS CSS
Intro to SASS CSS
 
Sass
SassSass
Sass
 
Sass presentation
Sass presentationSass presentation
Sass presentation
 
Learn Sass and Compass quick
Learn Sass and Compass quickLearn Sass and Compass quick
Learn Sass and Compass quick
 
Sass and compass workshop
Sass and compass workshopSass and compass workshop
Sass and compass workshop
 
Less css
Less cssLess css
Less css
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
CSS3 Flex Layout
CSS3 Flex LayoutCSS3 Flex Layout
CSS3 Flex Layout
 
Front end basics - Sass
Front end basics - SassFront end basics - Sass
Front end basics - Sass
 
Using scss-at-noisestreet
Using scss-at-noisestreetUsing scss-at-noisestreet
Using scss-at-noisestreet
 
CSS Best Practices
CSS Best PracticesCSS Best Practices
CSS Best Practices
 
Getting Started With Sass | WC Philly 2015
Getting Started With Sass | WC Philly 2015Getting Started With Sass | WC Philly 2015
Getting Started With Sass | WC Philly 2015
 
ES2015 and Beyond
ES2015 and BeyondES2015 and Beyond
ES2015 and Beyond
 
[Cordova] Empezando con Ionic
[Cordova] Empezando con Ionic[Cordova] Empezando con Ionic
[Cordova] Empezando con Ionic
 
Getting SASSy with front end development
Getting SASSy with front end developmentGetting SASSy with front end development
Getting SASSy with front end development
 
Sass: Introduction
Sass: IntroductionSass: Introduction
Sass: Introduction
 
Front End Badassery with Sass
Front End Badassery with SassFront End Badassery with Sass
Front End Badassery with Sass
 
Theming and Sass
Theming and SassTheming and Sass
Theming and Sass
 
Turbo theming: Introduction to Sass & Compass
Turbo theming: Introduction to Sass & CompassTurbo theming: Introduction to Sass & Compass
Turbo theming: Introduction to Sass & Compass
 
Stylesheet Wrangling with SCSS
Stylesheet Wrangling with SCSSStylesheet Wrangling with SCSS
Stylesheet Wrangling with SCSS
 

Similar to Introduction to SASS

Elegant CSS Design In Drupal: LESS vs Sass
Elegant CSS Design In Drupal: LESS vs SassElegant CSS Design In Drupal: LESS vs Sass
Elegant CSS Design In Drupal: LESS vs Sass
Mediacurrent
 
Simple introduction Sass
Simple introduction SassSimple introduction Sass
Simple introduction Sass
Zeeshan Ahmed
 
15- Learn CSS Fundamentals / Color
15- Learn CSS Fundamentals / Color15- Learn CSS Fundamentals / Color
15- Learn CSS Fundamentals / Color
In a Rocket
 

Similar to Introduction to SASS (20)

Pacific Northwest Drupal Summit: Basic & SASS
Pacific Northwest Drupal Summit: Basic & SASSPacific Northwest Drupal Summit: Basic & SASS
Pacific Northwest Drupal Summit: Basic & SASS
 
Modularization css with sass
Modularization css with sassModularization css with sass
Modularization css with sass
 
Big Frontends Made Simple
Big Frontends Made SimpleBig Frontends Made Simple
Big Frontends Made Simple
 
Elegant CSS Design In Drupal: LESS vs Sass
Elegant CSS Design In Drupal: LESS vs SassElegant CSS Design In Drupal: LESS vs Sass
Elegant CSS Design In Drupal: LESS vs Sass
 
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}
The New UI - Staying Strong with Flexbox, SASS, and {{Mustache.js}}
 
Fasten RWD Development with Sass
Fasten RWD Development with SassFasten RWD Development with Sass
Fasten RWD Development with Sass
 
9- Learn CSS Fundamentals / Pseudo-classes
9- Learn CSS Fundamentals / Pseudo-classes9- Learn CSS Fundamentals / Pseudo-classes
9- Learn CSS Fundamentals / Pseudo-classes
 
Simple introduction Sass
Simple introduction SassSimple introduction Sass
Simple introduction Sass
 
Advanced sass
Advanced sassAdvanced sass
Advanced sass
 
CSS with LESS for #jd13nl
CSS with LESS for #jd13nlCSS with LESS for #jd13nl
CSS with LESS for #jd13nl
 
SASS Lecture
SASS Lecture SASS Lecture
SASS Lecture
 
UNIT 3.ppt
UNIT 3.pptUNIT 3.ppt
UNIT 3.ppt
 
Authoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & SassAuthoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & Sass
 
CSS előfeldolgozók
CSS előfeldolgozókCSS előfeldolgozók
CSS előfeldolgozók
 
AAVN_Presentation_SASS.pptx
AAVN_Presentation_SASS.pptxAAVN_Presentation_SASS.pptx
AAVN_Presentation_SASS.pptx
 
CSS3
CSS3CSS3
CSS3
 
CSS Less framework overview, Pros and Cons
CSS Less framework overview, Pros and ConsCSS Less framework overview, Pros and Cons
CSS Less framework overview, Pros and Cons
 
15- Learn CSS Fundamentals / Color
15- Learn CSS Fundamentals / Color15- Learn CSS Fundamentals / Color
15- Learn CSS Fundamentals / Color
 
SCSS Implementation
SCSS ImplementationSCSS Implementation
SCSS Implementation
 
Sassy! Stylesheets with SCSS by Kathryn Rotondo
Sassy! Stylesheets with SCSS by Kathryn RotondoSassy! Stylesheets with SCSS by Kathryn Rotondo
Sassy! Stylesheets with SCSS by Kathryn Rotondo
 

Recently uploaded

Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
Bhaskar Mitra
 

Recently uploaded (20)

IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
НАДІЯ ФЕДЮШКО БАЦ «Професійне зростання QA спеціаліста»
НАДІЯ ФЕДЮШКО БАЦ  «Професійне зростання QA спеціаліста»НАДІЯ ФЕДЮШКО БАЦ  «Професійне зростання QA спеціаліста»
НАДІЯ ФЕДЮШКО БАЦ «Професійне зростання QA спеціаліста»
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
UiPath Test Automation using UiPath Test Suite series, part 1
UiPath Test Automation using UiPath Test Suite series, part 1UiPath Test Automation using UiPath Test Suite series, part 1
UiPath Test Automation using UiPath Test Suite series, part 1
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
ODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User GroupODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User Group
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 

Introduction to SASS

  • 1. SASS For The Win! An introduction to SASS Oct. 13, 2011 1 Created for Magma Rails 2011 - www.magmarails.com Slides posted at http://tinyurl.com/magma-haml-sass Sample code from this presentation can be found in the following sample app: https://github.com/jonathandean/SASS-and-HAML-FTW
  • 2. What is SASS? Syntactically Awesome Stylesheets Smarter CSS Gives you variables and methods (mixins) for CSS Lets you nest declarations Provides selector inheritance Lets you do math with your variable values Works by compiling .sass or .scss files into normal valid .css Commonly used in Ruby on Rails applications but can be used in any web project Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 2
  • 3. SASS and SCSS Two available syntaxes SASS SCSS HAML-style indentation No brackets or semi-colons, based on indentation Less characters to type Enforced conventions/neatness Semi-colon and bracket syntax Superset of normal CSS Normal CSS is also valid SCSS Newer and recommended Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 3
  • 4. SASS and SCSS Two available syntaxes SASS SCSS $txt-size: 12px $txt-color: #333 $link-color: #999 #main font-size: $txt-size color: $txt-color a color: $link-color $txt-size: 12px; $txt-color: #333; $link-color: #999; #main{ font-size: $txt-size; color: $txt-color; a{ color: $link-color; } } Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 4
  • 5.
  • 6.
  • 7. Selector inheritance You can also extend other CSS declarations with @extend .error{ color: red; } .seriousError{ @extend .error; font-weight: bold; } Resulting CSS .error, .seriousError{ color: red; } .seriousError{ font-weight: bold; } Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 7
  • 8. Mixins Mixins are sets of reusable styles, almost like methods in other languages @mixin awesome-text{ font-size: 24px; font-weight: bold; color: blue; } p{ @include awesome-text; } Resulting CSS p{ font-size: 24px; font-weight: bold; color: blue; } Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 8
  • 9. Mixins with parameters Mixins can also take parameters Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 9 SCSS @mixin awesome-text($size){ font-size: $size; font-weight: bold; color: blue; } p{ @include awesome-text(24px); } li{ @include awesome-text(18px); } Resulting CSS p{ font-size: 24px; font-weight: bold; color: blue; } li{ font-size: 18px; font-weight: bold; color: blue; }
  • 10. More advanced mixin example @mixin image-replace($image-url){ &, & a{ display: block; background: url($image-url) no-repeat; } a{ text-indent: -99999px; text-decoration: none; } } h1{ @include image-replace(“images/header.gif”); } Resulting CSS h1, h1 a{ display: block; background: url(“images/header.gif”) no-repeat; } h1 a{ text-indent: -99999px; text-decoration: none; } Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 10
  • 11. Mathematic operations You can do simple math operations with your variable values, even if they have units Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 11 $page-width: 500px; $sidebar-width: 100px; $content-width: $page-width - $sidebar-width; #main{ width: $page-width; #sidebar{ width: $sidebar-width; } #content{ width: $content-width; } } Resulting CSS #main{ width: 500px; } #main #sidebar{ width: 100px; } #main #content{ width: 400px; }
  • 12. Mathematic operations Supported operations: +, -, *, /, % The division operator (/) is also valid in normal CSS font: 10px/8px; // stays font: 10px/8px; So it is only used as division in three cases When one of the values is stored in a variable $content-width: 500px; width: $content-width/2; // becomes width: 250px; When surrounded by parenthesis width: (500px/2); // becomes width: 250px; When part of another math expression width: 10px + 500px/2; // becomes width: 260px; To use variables in the CSS version without doing math operations $some-val: 10px; $another-val: 8px; font: #{$some-val}/#{$another-val}; // font: 10px/8px; Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 12
  • 13. Interpolation You can use variables in selectors and property declarations $class-name: wrapper; $attribute-name: font; div.#{$class-name}{ #{$attribute-name}-size: 12px; } Resulting CSS div.wrapper{ font-size: 12px; } Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 13 Warning: RubyMine may not recognize this syntax and highlight it as an error
  • 14. Control directives Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 14 @if $type: big; p{ @if $type == big{ font-size: 24px; } } Resulting CSS p{ font-size: 24px; } @if / @else $type: small; p{ @if $type == big { font-size: 24px; } @else if $type == medium{ font-size: 18px; } @else { font-size: 16px; } } Resulting CSS p{ font-size: 16px; }
  • 15. Control directives Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 15 Resulting CSS .item-1{ width: 10px; } .item-2{ width: 20px; } .item-3{ width: 30px; } @for @for $i from 1 through 3 { .item-#{$i} { width: 10px * $i; } } @each @each $item in item1, item2{ .#{$item}{ width: 500px; } } .item1{ width: 500px; } .item2{ width: 500px; } @while $i: 6; @while $i > 0 { .item-#{$i} { width: 10px * $i; } $i: $i - 2; } .item-6{ width: 60px; } .item-4{ width: 40px; } .item-2{ width: 20px; }
  • 16. Importing other SASS files Import other .sass or .scss files using @import @import “reset”; @import “reset.css.scss”; // File extension also allowed You can also create partials that will only be imported to other files and not compiled to .css files themselves Just name the partial with an underscore in the front, such as _sample.css.scss Now import the same way: @import “sample”; Handy for organizing styles into multiple files but compiling to only one file for use on the web Note: when using the Rails 3.1 asset pipeline, name your files with .css.scss or .css.sassextentions instead of just .scss or .sass Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 16
  • 17. Nested properties Simplify the declaration of name-spaced CSS properties Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 17 Resulting CSS SCSS .sassy{ font:{ size: 12px; weight: bold; } } .sassy{ font-size: 12px; font-weight: bold; }
  • 18. Color operations You can also do mathematic operations on color values color: #010203 + #040506; // color: #050709; Howthisiscomputed #010203 + #040506 = #050709 01 + 04 = 05 02 + 05 = 07 03 + 06 = 09 Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 18
  • 19. Variable defaults Will only assign the variable if it hasn’t been defined yet Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 19 $page-color: #333; $page-color: #666 !default; $section-color: #999 !default; // won’t be assigned because $page-color has already been defined // will be assigned because $section-color hasn’t been defined yet Handy for when you import a partial in some files but not in all of them and want the value from the partial to take precedence if it has already been defined
  • 20. Using SASS without Rails gem install sass sass --watch path/to/input.scss:path/to/output.css Sass will auto-compile to output.css each time input.css is modified Use it for any project you have CSS Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 20
  • 21. Using SASS in a Rails application Rails 3.1 Included by default! Put your filename.css.scss files in app/assets/stylesheets/ The Asset Pipeline will deal with compiling them for you See the sample application! For older versions Add the following to your Gemfile gem “sass” You can put your sass files anywhere, but why not use the new convention introduced by 3.1 Use sass --watch in the command line or another gem such as Compass Oct. 13, 2011 An Introduction to SASS by Jonathan Dean - www.jonathandean.com 21