diff --git a/_layouts/default.html b/_layouts/default.html index a752478..d96791b 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -12,16 +12,23 @@

{{ site.title }}

+
+ {{ content }} +
diff --git a/_sass/style.scss b/_sass/style.scss index 675698f..5094bf5 100644 --- a/_sass/style.scss +++ b/_sass/style.scss @@ -1,11 +1,38 @@ -$color-primary: #ed02a7; -$color-primary-dark: #a10a73; +$color-primary: #e1327b; $color-secondary: #edcd1a; -$color-secondary-dark: #a18802; $color-accent: #32eaed; -$color-bg: #1f0016; +$color-bg: #12042d; +$content-width: 800px; + +* { + box-sizing: border-box; /* never gets old */ +} body { background-color: $color-bg; + font-family: sans-serif; color: rgba(255, 255, 255, 0.8); + margin: 0; +} + +header, footer { + padding: 20px; +} + +header { + border-bottom: thin solid $color-primary; +} + +footer { + border-top: thin solid $color-primary; +} + +h1, h2, h3, h4, h5, h6 { + color: $color-primary; +} + +h1 { + max-width: $content-width; + margin: 0 auto; + font-weight: 400; }