Skip to content

Instantly share code, notes, and snippets.

@Theo-denBlanken
Last active April 22, 2020 20:18
Show Gist options
  • Save Theo-denBlanken/fb193304569636a745c7ff29a48fffef to your computer and use it in GitHub Desktop.
Save Theo-denBlanken/fb193304569636a745c7ff29a48fffef to your computer and use it in GitHub Desktop.
Een voorbeeld van variabelen in SCSS
// Dit is commentaar met dubbele slash
// hier maken we variabelen.
/* Dit is meer css-commentaar */
$lettertype: Helvetica, sans-serif;
$primaire-kleur: rgb(27, 116, 240);
body {
font: 100% $lettertype;
color: $primaire-kleur;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment