damoclesgil / Learn-SCSS-and-CSS3

πŸ“• Aprendendo SCSS e CSS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Getting Start

sass.jpg

  1. Install Ruby
  2. Open Command Prompt With Ruby

CLI

Install

$ gem install sass

Compile SASS

$ sass style.scss     

Create a version of CSS

$ sass style.scss:style.css    

Create a version of CSS and alterate in RunTime

$ sass --watch style.scss:style.css   

More CSS3

https://tympanus.net/codrops/css_reference/

https://developer.mozilla.org/pt-BR/docs/Web/CSS/CSS_Reference

http://bit.ly/palermo4css3

http://www.w3.org/Style/CSS/

http://html5please.us/#css

http://www.modernizr.com

http://bit.ly/css3-msdn

http://www.css3maker.com

More SASS

SASS

SASS & LESS

Learn SCSS With ITCSS

How do I make my CSS scalable and maintainable? It’s a concern for every front-end developer. ITCSS has an answer.

What is ITCSS?

ITCSS (SCALABLE AND MAINTAINABLE CSS ARCHITECTURE) stands for Inverted Triangle CSS and it helps you to organize your project CSS files in such way that you can better deal with (not always easy-to-deal with) CSS specifics like global namespace, cascade and selectors specificity.

triangle.png

Those layers are as follows:

  • Settings – used with preprocessors and contain font, colors definitions, etc.
  • Tools – globally used mixins and functions. It’s important not to output any CSS in the first 2 layers.
  • Generic – reset and/or normalize styles, box-sizing definition, etc. This is the first layer which generates actual CSS.
  • Elements – styling for bare HTML elements (like H1, A, etc.). These come with default styling from the browser so we can redefine them here.
  • Objects – class-based selectors which define undecorated design patterns, for example media object known from OOCSS
  • Components – specific UI components. This is where majority of our work takes place and our UI components are often composed of Objects and Components
  • Trumps – utilities and helper classes with ability to override anything which goes before in the triangle, eg. hide helper class

More ITCSS

About

πŸ“• Aprendendo SCSS e CSS


Languages

Language:HTML 82.6%Language:CSS 13.6%Language:JavaScript 3.8%