added background to all pages
This commit is contained in:
parent
904b6fcb9f
commit
7f86d2ee92
4 changed files with 2 additions and 115 deletions
|
@ -1,60 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>{{ page.title }}</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/home.css">
|
||||
|
||||
<!-- ****** faviconit.com favicons ****** -->
|
||||
<link rel="shortcut icon" href="/favicons/favicon.ico">
|
||||
<link rel="icon" sizes="16x16 32x32 64x64" href="/favicons/favicon.ico">
|
||||
<link rel="icon" type="image/png" sizes="196x196" href="/favicons/favicon-192.png">
|
||||
<link rel="icon" type="image/png" sizes="160x160" href="/favicons/favicon-160.png">
|
||||
<link rel="icon" type="image/png" sizes="96x96" href="/favicons/favicon-96.png">
|
||||
<link rel="icon" type="image/png" sizes="64x64" href="/favicons/favicon-64.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16.png">
|
||||
<link rel="apple-touch-icon" href="/favicons/favicon-57.png">
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="/favicons/favicon-114.png">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="/favicons/favicon-72.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="/favicons/favicon-144.png">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="/favicons/favicon-60.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="/favicons/favicon-120.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="/favicons/favicon-76.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="/favicons/favicon-152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/favicon-180.png">
|
||||
<meta name="msapplication-TileColor" content="#FFFFFF">
|
||||
<meta name="msapplication-TileImage" content="/favicons/favicon-144.png">
|
||||
<meta name="msapplication-config" content="/favicons/browserconfig.xml">
|
||||
<!-- ****** faviconit.com favicons ****** -->
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/kiosk">Computer Science Kiosk</a></li>
|
||||
<li><a href="/space">Space Game</a></li>
|
||||
<li><a href="/ican">iCan</a></li>
|
||||
<li><a href="/strange">12 is Strange</a></li>
|
||||
<li><a href="/drawing">Digital Drawing</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="container">
|
||||
|
||||
{{ content }}
|
||||
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<ul>
|
||||
<li><a href="mailto:thepaperpilot@gmail.com">email</a></li>
|
||||
<li><a href="https://github.com/thepaperpilot">github.com/thepaperpilot</a></li>
|
||||
<li><a href="https://www.linkedin.com/pub/anthony-lawn/a9/a98/2">linkedin.com/anthony-lawn</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
53
css/home.css
53
css/home.css
|
@ -1,53 +0,0 @@
|
|||
body {
|
||||
margin: 20px auto;
|
||||
width: 60%;
|
||||
background-image: url("/bg.jpg");
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
nav ul, footer ul {
|
||||
font-family:'Helvetica', 'Sans-Serif';
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
nav ul li, footer ul li {
|
||||
display: inline;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #4E5666;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3em;
|
||||
font-family:'Helvetica', 'Sans-Serif';
|
||||
color: #ABB2BF;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.5em;
|
||||
line-height: 1.4em;
|
||||
color: #ABB2BF;
|
||||
}
|
||||
|
||||
footer {
|
||||
border-top: 1px solid #2F343F;
|
||||
font-size: .8em;
|
||||
}
|
||||
|
||||
ul.posts {
|
||||
margin: 20px auto 40px;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
ul.posts li {
|
||||
list-style: none;
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
body {
|
||||
margin: 20px auto;
|
||||
width: 60%;
|
||||
background-color: #282C34;
|
||||
background-image: url("/bg.jpg");
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
layout: home
|
||||
layout: default
|
||||
title: The Paper Pilot
|
||||
---
|
||||
|
||||
|
|
Loading…
Reference in a new issue