Adds more styles, splits type into it's own file and another for variables
This commit is contained in:
parent
522d13352b
commit
fd169b2c01
@ -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
14
_sass/type.scss
Normal 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
4
_sass/variables.scss
Normal file
@ -0,0 +1,4 @@
|
||||
// Color variables
|
||||
$color--background: #ffefc8;
|
||||
$color--foreground: #150301;
|
||||
$color--accent: #5277c3;
|
Loading…
Reference in New Issue
Block a user