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

Variables

Lesson 4
Author : GOUP
Last Updated : September, 2020


Code

Copy@theme-color: blue;

header{
     color: @theme-color;
}

footer {
     color: @theme-color;
}

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