blob: 9ae1829caf5d732d624d5db27d677ab040b4fed6 (
plain)
1
2
3
4
5
6
7
8
9
|
/* 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;
}
|