Simplify DOM and add lockfile

This commit is contained in:
Andrew Cassidy 2017-11-28 14:50:36 -08:00
parent 2ec6b83d9c
commit 04ff2705d9
Failed to extract signature
3 changed files with 12 additions and 16 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
_site
.sass-cache
.jekyll-metadata
Gemfile.lock

View File

@ -3,19 +3,16 @@
{% include head.html %}
<body>
<div id="box">
{% include header.html %}
{% include header.html %}
<div id="main">
{% include sidebar.html %}
<main>
{% include sidebar.html %}
<div id="content">
{{ content }}
</div>
</div>
<!--{% include footer.html %}-->
</div>
<article id="content">
{{ content }}
</article>
</main>
<!--{% include footer.html %}-->
</body>
</html>

View File

@ -58,12 +58,12 @@
}
body {
html{
margin: 0;
background-color: $margin;
}
#box {
body {
background-color: $background;
max-width: 800px;
z-index: 0;
@ -115,7 +115,7 @@ header {
}
}
#main {
main {
display: flex;
}
@ -173,7 +173,7 @@ header {
}
}
#main {
main {
flex-direction: column;
}
}