mirror of
https://github.com/vale981/apheleia
synced 2025-03-06 01:51:41 -05:00
12 lines
230 B
SCSS
12 lines
230 B
SCSS
![]() |
/* 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;
|
||
|
}
|