Sass project with nesting, partials, mixins, extend, pseudo selectors and operators 🚀
Assign a value to a name (starts with $). After that you can refer to that name instead of the value itself.
Avoid repeating same selectors and write style rules inside another.
Include snippets of CSS into Sass file. Partial file (starts with _ ) is used by importing with @ rule.
Reuse groups of CSS declarations and add properties to them.
Share CSS properties between selectors.
Nest also pseudo elements and pseudo classes.
Do some math in CSS.