SlideShare una empresa de Scribd logo
1 de 10
Descargar para leer sin conexión
Reusable snippets.
Sass Mixins
@mixin my-custom-mixin {	
border: 1px solid $color;	
padding: $padding;	
}	
!
// Use your mixin over and over again	
.element {	
@include my-custom-mixin;	
}
1
Useful Mixins
@mixin font-primary {	
font-family: “Hip Web Font”, Arial, sans-serif;	
font-weight: 400;	
}	
!
// Use the mixin over and over again	
.element {	
@include font-primary;	
}
2
Useful Mixins + Variables
$color-primary: #FFCC00;	
@mixin font-primary {	
font-family: “Hip Web Font”, Arial, sans-serif;	
font-weight: 400;	
}	
!
// Use the mixin over and over again	
.element {	
@include font-primary;	
color: $color-primary;	
}
3
Sass/SCSS #framework
‣ First Sass-based framework
‣ Provides tons of mixins
‣ Supports plugins
4
I now can stop repeating myself. I now can stop repeating myself.
Compass Mixins
@include border-radius(...);	
@include box-shadow(...);	
@include text-shadow(...);	
@include scale(...);	
@include rotate(...);	
@include transform2d(...);	
@include transform3d(...);
5
Full of Sass.
Compass Modules
‣ CSS3
• Effects, Fonts, Content
‣ Typography
• Test, Links, Lists
‣ Utilities
• Sprites, Color, Print, Tables
‣ Layout*
‣ Reset*
6
CSS
Compass
Sass
7
Web Browser and/or Terminal Shell required
Debugging
// Debug compiled CSS w/Firefox + Firebug + FireSass	
environment = :development	
firesass = true	
!
// Debug dynamic Sass using @debug function	
div {	
@debug $anything + 1px;	
}
8
Good looks are subjective.
Formatting
.standard {	
color: $dark;	
background-color: $light;	
}	
!
.spacey {	
color : $dark;	
background-color : $light;	
}	
9
Shorthand code is harder to read.
Shortcuts
@mixin pretty-text {	
color: $dark;	
}	
!
a {	
@include light;	
}	
!
=pretty-text {	
color: $dark;	
}	
!
a {	
+light;	
}
10

Más contenido relacionado

La actualidad más candente (6)

Less vs sass
Less vs sassLess vs sass
Less vs sass
 
Drupal & CSS Preprocessors
Drupal & CSS PreprocessorsDrupal & CSS Preprocessors
Drupal & CSS Preprocessors
 
Awash in a sea of connections
Awash in a sea of connectionsAwash in a sea of connections
Awash in a sea of connections
 
Auto tools
Auto toolsAuto tools
Auto tools
 
Stop Hacking WordPress, Start Working with it - Charly Leetham - WordCamp Syd...
Stop Hacking WordPress, Start Working with it - Charly Leetham - WordCamp Syd...Stop Hacking WordPress, Start Working with it - Charly Leetham - WordCamp Syd...
Stop Hacking WordPress, Start Working with it - Charly Leetham - WordCamp Syd...
 
Rack
RackRack
Rack
 

Destacado

04. linea base biologica
04. linea base biologica04. linea base biologica
04. linea base biologica
sadhafz
 
Comunicaciones
ComunicacionesComunicaciones
Comunicaciones
sard92
 
A PresençA Negra Na Cultura Brasileira Felipe
A PresençA Negra Na Cultura Brasileira FelipeA PresençA Negra Na Cultura Brasileira Felipe
A PresençA Negra Na Cultura Brasileira Felipe
Tânia Mara
 
Instrumentos medievales
Instrumentos medievalesInstrumentos medievales
Instrumentos medievales
SaanDpz
 

Destacado (20)

Tut
TutTut
Tut
 
Zoo shans
Zoo shansZoo shans
Zoo shans
 
Blogs das EMEFs
Blogs das EMEFsBlogs das EMEFs
Blogs das EMEFs
 
04. linea base biologica
04. linea base biologica04. linea base biologica
04. linea base biologica
 
Comunicaciones
ComunicacionesComunicaciones
Comunicaciones
 
Enrique Campuzano, Artist
Enrique Campuzano, ArtistEnrique Campuzano, Artist
Enrique Campuzano, Artist
 
Governancaemtic
GovernancaemticGovernancaemtic
Governancaemtic
 
O Foco 149 Pdf
O Foco 149 PdfO Foco 149 Pdf
O Foco 149 Pdf
 
Curso Althia
Curso AlthiaCurso Althia
Curso Althia
 
A PresençA Negra Na Cultura Brasileira Felipe
A PresençA Negra Na Cultura Brasileira FelipeA PresençA Negra Na Cultura Brasileira Felipe
A PresençA Negra Na Cultura Brasileira Felipe
 
5ano3
5ano35ano3
5ano3
 
Samba Da La Ela
Samba Da La ElaSamba Da La Ela
Samba Da La Ela
 
Escola Jpb
Escola JpbEscola Jpb
Escola Jpb
 
SOCIETE GENERALE- BENJAMIN BOURIQUIN
SOCIETE GENERALE- BENJAMIN BOURIQUINSOCIETE GENERALE- BENJAMIN BOURIQUIN
SOCIETE GENERALE- BENJAMIN BOURIQUIN
 
Experiências, Erros e Acertos no Desenvolvimento de Projeto Ágeis
Experiências, Erros e Acertos no Desenvolvimento de Projeto ÁgeisExperiências, Erros e Acertos no Desenvolvimento de Projeto Ágeis
Experiências, Erros e Acertos no Desenvolvimento de Projeto Ágeis
 
Estendendo o html com angular js
Estendendo o html com angular jsEstendendo o html com angular js
Estendendo o html com angular js
 
Clase 2
Clase 2Clase 2
Clase 2
 
Fatacil Patrocinadores
Fatacil PatrocinadoresFatacil Patrocinadores
Fatacil Patrocinadores
 
Instrumentos medievales
Instrumentos medievalesInstrumentos medievales
Instrumentos medievales
 
Guaranís Despair. Guaraníes Desesperación(Brasil)
Guaranís Despair. Guaraníes Desesperación(Brasil)Guaranís Despair. Guaraníes Desesperación(Brasil)
Guaranís Despair. Guaraníes Desesperación(Brasil)
 

Similar a Sassy CSS (part 2) (Drupal Camp LA 2013)

Sass and Compass - Getting Started
Sass and Compass - Getting StartedSass and Compass - Getting Started
Sass and Compass - Getting Started
edgincvg
 
Simple introduction Sass
Simple introduction SassSimple introduction Sass
Simple introduction Sass
Zeeshan Ahmed
 

Similar a Sassy CSS (part 2) (Drupal Camp LA 2013) (20)

Deep dive into sass
Deep dive into sassDeep dive into sass
Deep dive into sass
 
Agile CSS development with Compass and Sass
Agile CSS development with Compass and SassAgile CSS development with Compass and Sass
Agile CSS development with Compass and Sass
 
Advanced sass
Advanced sassAdvanced sass
Advanced sass
 
Benefits of SaaS Over Conventional CSS.pptx
Benefits of SaaS Over Conventional CSS.pptxBenefits of SaaS Over Conventional CSS.pptx
Benefits of SaaS Over Conventional CSS.pptx
 
Intro to SASS CSS
Intro to SASS CSSIntro to SASS CSS
Intro to SASS CSS
 
css.docx
css.docxcss.docx
css.docx
 
Preprocessor presentation
Preprocessor presentationPreprocessor presentation
Preprocessor presentation
 
Sass and Compass - Getting Started
Sass and Compass - Getting StartedSass and Compass - Getting Started
Sass and Compass - Getting Started
 
Raleigh Web Design Meetup Group - Sass Presentation
Raleigh Web Design Meetup Group - Sass PresentationRaleigh Web Design Meetup Group - Sass Presentation
Raleigh Web Design Meetup Group - Sass Presentation
 
Workshop 6: Designer tools
Workshop 6: Designer toolsWorkshop 6: Designer tools
Workshop 6: Designer tools
 
Simple introduction Sass
Simple introduction SassSimple introduction Sass
Simple introduction Sass
 
Theming and Sass
Theming and SassTheming and Sass
Theming and Sass
 
Advanced sass/compass
Advanced sass/compassAdvanced sass/compass
Advanced sass/compass
 
CSS: A Slippery Slope to the Backend
CSS: A Slippery Slope to the BackendCSS: A Slippery Slope to the Backend
CSS: A Slippery Slope to the Backend
 
CSS3
CSS3CSS3
CSS3
 
Write LESS. DO more.
Write LESS. DO more.Write LESS. DO more.
Write LESS. DO more.
 
SASS, Compass, Gulp, Greensock
SASS, Compass, Gulp, GreensockSASS, Compass, Gulp, Greensock
SASS, Compass, Gulp, Greensock
 
Bringing sexy back to CSS: SASS/SCSS, LESS and Compass
Bringing sexy back to CSS: SASS/SCSS, LESS and CompassBringing sexy back to CSS: SASS/SCSS, LESS and Compass
Bringing sexy back to CSS: SASS/SCSS, LESS and Compass
 
UNIT 3.ppt
UNIT 3.pptUNIT 3.ppt
UNIT 3.ppt
 
Accelerated Stylesheets
Accelerated StylesheetsAccelerated Stylesheets
Accelerated Stylesheets
 

Más de Chris Charlton

Lightning Talk: Drush aliases (Drupal Camp LA 2013)
Lightning Talk: Drush aliases (Drupal Camp LA 2013)Lightning Talk: Drush aliases (Drupal Camp LA 2013)
Lightning Talk: Drush aliases (Drupal Camp LA 2013)
Chris Charlton
 
Site Aliases: Powerful Drupal Administration Using Drush by Chris Charlton
Site Aliases: Powerful Drupal Administration Using Drush by Chris CharltonSite Aliases: Powerful Drupal Administration Using Drush by Chris Charlton
Site Aliases: Powerful Drupal Administration Using Drush by Chris Charlton
Chris Charlton
 
Policy File: Powerful Drupal Administration Using Drush
Policy File: Powerful Drupal Administration Using DrushPolicy File: Powerful Drupal Administration Using Drush
Policy File: Powerful Drupal Administration Using Drush
Chris Charlton
 

Más de Chris Charlton (11)

Drupal Form API 101 (PHP) - DrupalCamp LA 2012
Drupal Form API 101 (PHP) - DrupalCamp LA 2012Drupal Form API 101 (PHP) - DrupalCamp LA 2012
Drupal Form API 101 (PHP) - DrupalCamp LA 2012
 
Drupal Developer Skills (2012) - DrupalCamp LA 2012
Drupal Developer Skills (2012) - DrupalCamp LA 2012Drupal Developer Skills (2012) - DrupalCamp LA 2012
Drupal Developer Skills (2012) - DrupalCamp LA 2012
 
Lightning Talk: Drush aliases (Drupal Camp LA 2013)
Lightning Talk: Drush aliases (Drupal Camp LA 2013)Lightning Talk: Drush aliases (Drupal Camp LA 2013)
Lightning Talk: Drush aliases (Drupal Camp LA 2013)
 
Site Aliases: Powerful Drupal Administration Using Drush by Chris Charlton
Site Aliases: Powerful Drupal Administration Using Drush by Chris CharltonSite Aliases: Powerful Drupal Administration Using Drush by Chris Charlton
Site Aliases: Powerful Drupal Administration Using Drush by Chris Charlton
 
Policy File: Powerful Drupal Administration Using Drush
Policy File: Powerful Drupal Administration Using DrushPolicy File: Powerful Drupal Administration Using Drush
Policy File: Powerful Drupal Administration Using Drush
 
Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton
Drush 5.0 (DrupalCamp LA 2012) - Chris CharltonDrush 5.0 (DrupalCamp LA 2012) - Chris Charlton
Drush 5.0 (DrupalCamp LA 2012) - Chris Charlton
 
Changes to Drupal Themes in version 7 (part 1)
Changes to Drupal Themes in version 7 (part 1)Changes to Drupal Themes in version 7 (part 1)
Changes to Drupal Themes in version 7 (part 1)
 
Web Content Management Systems From A Designer's Perspective (Drupal Technica...
Web Content Management Systems From A Designer's Perspective (Drupal Technica...Web Content Management Systems From A Designer's Perspective (Drupal Technica...
Web Content Management Systems From A Designer's Perspective (Drupal Technica...
 
Let's Zen! (Stop Theming From Scratch)
Let's Zen! (Stop Theming From Scratch)Let's Zen! (Stop Theming From Scratch)
Let's Zen! (Stop Theming From Scratch)
 
Flex Flash Air Interfaces for Custom Content Types in Drupal Chris Charlton
Flex Flash Air Interfaces for Custom Content Types in Drupal   Chris CharltonFlex Flash Air Interfaces for Custom Content Types in Drupal   Chris Charlton
Flex Flash Air Interfaces for Custom Content Types in Drupal Chris Charlton
 
Better Drupal Interaction Design with Flex
Better Drupal Interaction Design with FlexBetter Drupal Interaction Design with Flex
Better Drupal Interaction Design with Flex
 

Último

introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 

Último (20)

Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 

Sassy CSS (part 2) (Drupal Camp LA 2013)

  • 1. Reusable snippets. Sass Mixins @mixin my-custom-mixin { border: 1px solid $color; padding: $padding; } ! // Use your mixin over and over again .element { @include my-custom-mixin; } 1
  • 2. Useful Mixins @mixin font-primary { font-family: “Hip Web Font”, Arial, sans-serif; font-weight: 400; } ! // Use the mixin over and over again .element { @include font-primary; } 2
  • 3. Useful Mixins + Variables $color-primary: #FFCC00; @mixin font-primary { font-family: “Hip Web Font”, Arial, sans-serif; font-weight: 400; } ! // Use the mixin over and over again .element { @include font-primary; color: $color-primary; } 3
  • 4. Sass/SCSS #framework ‣ First Sass-based framework ‣ Provides tons of mixins ‣ Supports plugins 4
  • 5. I now can stop repeating myself. I now can stop repeating myself. Compass Mixins @include border-radius(...); @include box-shadow(...); @include text-shadow(...); @include scale(...); @include rotate(...); @include transform2d(...); @include transform3d(...); 5
  • 6. Full of Sass. Compass Modules ‣ CSS3 • Effects, Fonts, Content ‣ Typography • Test, Links, Lists ‣ Utilities • Sprites, Color, Print, Tables ‣ Layout* ‣ Reset* 6 CSS Compass Sass
  • 7. 7
  • 8. Web Browser and/or Terminal Shell required Debugging // Debug compiled CSS w/Firefox + Firebug + FireSass environment = :development firesass = true ! // Debug dynamic Sass using @debug function div { @debug $anything + 1px; } 8
  • 9. Good looks are subjective. Formatting .standard { color: $dark; background-color: $light; } ! .spacey { color : $dark; background-color : $light; } 9
  • 10. Shorthand code is harder to read. Shortcuts @mixin pretty-text { color: $dark; } ! a { @include light; } ! =pretty-text { color: $dark; } ! a { +light; } 10