Variables

Lesson 6
Author : Afrixi
Last Updated : October, 2017


Sass - Style a Website
This course covers the basics of styling a website using Sass. Work your way through the videos/articles and I'll teach you everything you need to know to style a basic website!
Table of Content

Code

Copy$theme-color: blue;

header{
     color: $theme-color;
}

footer {
     color: $theme-color;
}

button {
     background-color: $theme-color;
}