Changes theme style structure to suit bourbon additions

This commit is contained in:
David Darnes 2016-06-17 12:54:15 +01:00
parent 3a76208c5a
commit 9e829913dc
3 changed files with 21 additions and 23 deletions

View File

@ -1,8 +1,24 @@
// Imports
@import "variables";
@import "type";
@import "bourbon/bourbon";
@import "base/base";
// Layout
body {
margin: 0;
// Theme variables
$color--background: #ffefc8;
$color--foreground: #150301;
$color--accent: #5277c3;
// Theme typography
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;
}

View File

@ -1,14 +0,0 @@
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;
}

View File

@ -1,4 +0,0 @@
// Color variables
$color--background: #ffefc8;
$color--foreground: #150301;
$color--accent: #5277c3;