aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/sass/hello_world/main.scss
blob: 3b560b7bb66306ad4065cbf0ca77ed0df35fd854 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@import 'examples/sass/shared/fonts';
@import 'examples/sass/shared/colors';

html {
  body {
    font-family: $default-font-stack;

    h1 {
      color: $example-red;
      font-family: $modern-font-stack;
    }
  }
}