Files
LMSGI-2024-25/Unidad_03_HTML/SASS/01_variables/index.scss
2025-01-27 13:50:39 +01:00

14 lines
201 B
SCSS

$myFont: Helvetica, sans-serif;
$myColor: yellow;
$myFontSize: 18px;
$myWidth: 680px;
body {
font-family: $myFont;
font-size: $myFontSize;
color: $myColor;
}
#container {
width: $myWidth;
}