Simplify DOM and add lockfile
This commit is contained in:
parent
b90b750309
commit
858e2df9de
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,3 @@
|
|||||||
_site
|
_site
|
||||||
.sass-cache
|
.sass-cache
|
||||||
.jekyll-metadata
|
.jekyll-metadata
|
||||||
Gemfile.lock
|
|
||||||
|
@ -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>
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user