Adds more styles, splits type into it's own file and another for variables

This commit is contained in:
David Darnes 2016-06-16 00:23:36 +01:00
parent 522d13352b
commit fd169b2c01
3 changed files with 22 additions and 9 deletions

View File

@ -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;
}

14
_sass/type.scss Normal file
View File

@ -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;
}

4
_sass/variables.scss Normal file
View File

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