blob: 7d18aad416453917b199c9daf1b896ab018a2e6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Define standard variables and values for website */
$bgcolor: lightblue;
$textcolor: darkblue;
$fontsize: 18px;
/* Use the variables */
body {
background-color: $bgcolor;
color: $textcolor;
font-size: $fontsize;
}
|