mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 18:38:12 +01:00
9 lines
130 B
Markdown
9 lines
130 B
Markdown
|
```scss
|
||
|
$font-stack: Helvetica, sans-serif;
|
||
|
$primary-color: #333;
|
||
|
|
||
|
body {
|
||
|
color: $primary-color;
|
||
|
font: 100% $font-stack;
|
||
|
}
|
||
|
```
|