aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/sass/hello_world/main.scss
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sass/hello_world/main.scss')
-rw-r--r--examples/sass/hello_world/main.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/sass/hello_world/main.scss b/examples/sass/hello_world/main.scss
new file mode 100644
index 0000000000..3b560b7bb6
--- /dev/null
+++ b/examples/sass/hello_world/main.scss
@@ -0,0 +1,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;
+ }
+ }
+}