mirror of
https://github.com/danog/sass-site.git
synced 2024-12-11 17:09:52 +01:00
10 lines
134 B
Markdown
10 lines
134 B
Markdown
```scss
|
|
$font-stack: Helvetica, sans-serif;
|
|
$primary-color: #333;
|
|
|
|
body {
|
|
font: 100% $font-stack;
|
|
color: $primary-color;
|
|
}
|
|
```
|