Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 464 Bytes

File metadata and controls

27 lines (20 loc) · 464 Bytes

SCSS

This section covers SCSS, a preprocessor for CSS.

Topics Covered

  • Introduction to SCSS and its benefits
  • Nesting and inheritance
  • Variables and mixins
  • Functions and operators

Resources

Code Examples

$primary-color: #333;

body {
    font-family: Arial, sans-serif;
    color: $primary-color;

    h1 {
        color: blue;
    }
}