Simplify DOM and add lockfile

This commit is contained in:
Andrew Cassidy 2017-11-28 14:50:36 -08:00 committed by Andrew Cassidy
parent b90b750309
commit 858e2df9de
3 changed files with 12 additions and 16 deletions

1
.gitignore vendored
View File

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

View File

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

View File

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