This commit is contained in:
Tim Stallard 2016-01-18 10:27:31 +00:00
commit d962e1da29
3 changed files with 13 additions and 4 deletions

View File

@ -4,6 +4,7 @@
"description": "New DocPad project without using a skeleton", "description": "New DocPad project without using a skeleton",
"dependencies": { "dependencies": {
"docpad": "~6.78.4", "docpad": "~6.78.4",
"docpad-plugin-autoprefix": "~2.0.0",
"docpad-plugin-cleanurls": "~2.8.1", "docpad-plugin-cleanurls": "~2.8.1",
"docpad-plugin-ejs": "~2.0.2", "docpad-plugin-ejs": "~2.0.2",
"docpad-plugin-nodesass": "~2.8.1" "docpad-plugin-nodesass": "~2.8.1"

View File

@ -1,4 +1,10 @@
body{ ---
autoprefix: true
---
html, body{
min-height: 100%;
height: 100%;
margin: 0; margin: 0;
} }
@ -113,8 +119,9 @@ body{
color: black; color: black;
min-height: 100px; min-height: 100px;
display: block; display: block;
@media(min-width: 800px){ box-shadow: 0px -20px 10px -10px #6d0000 inset;
min-height: calc(50vh - 165px); @media(min-width: 600px){
min-height: calc(50vh - 170px);
} }
} }
} }

View File

@ -1,3 +1,4 @@
<!DOCTYPE html>
<html> <html>
<head> <head>
<title><%= document.title %> // Tim Stallard</title> <title><%= document.title %> // Tim Stallard</title>
@ -31,7 +32,7 @@
</div> </div>
<div id="footer"> <div id="footer">
<h3>&copy; Tim Stallard 2015</h3> <h3>&copy; Tim Stallard 2015</h3>
Hand crafted in the UK with DocPad, SmoothState.js and lots of other magic - see the code on GitHub Hand crafted in the UK with DocPad, SmoothState.js, and lots of other magic - see the code on GitHub
</div> </div>
</body> </body>
</html> </html>