diff --git a/_sass/theme.scss b/_sass/theme.scss index c94aa5f..f64f026 100644 --- a/_sass/theme.scss +++ b/_sass/theme.scss @@ -1,13 +1,8 @@ -html { - font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} +// Imports +@import "variables"; +@import "type"; +// Layout body { margin: 0; } - -h1 { - margin-top: 0; -} diff --git a/_sass/type.scss b/_sass/type.scss new file mode 100644 index 0000000..948429d --- /dev/null +++ b/_sass/type.scss @@ -0,0 +1,14 @@ +html { + font-family: sans-serif; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; +} + +body { + color: $color--foreground; + background: $color--background; +} + +a { + color: $color--accent; +} diff --git a/_sass/variables.scss b/_sass/variables.scss new file mode 100644 index 0000000..eddad5a --- /dev/null +++ b/_sass/variables.scss @@ -0,0 +1,4 @@ +// Color variables +$color--background: #ffefc8; +$color--foreground: #150301; +$color--accent: #5277c3;