Add footer

This commit is contained in:
Rnhmjoj 2014-05-26 00:41:41 +02:00
parent 64805a5dcb
commit 69629c5c60
2 changed files with 29 additions and 2 deletions

View File

@ -7,5 +7,8 @@
<body>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=default"></script>
<div id="container"> {{ content }} </div>
<footer>
<a href="https://github.com/Rnhmjoj">@Rnhmjoj</a>
</footer>
</body>
</html>

View File

@ -2,7 +2,7 @@ body {
font-family: "PT Serif", serif;
font-size: 1.1em;
color: #555;
background: #afafaf;
background: #777;
}
h1 {
@ -19,6 +19,19 @@ p {
margin-bottom: 2em;
}
a {
transition: color .2s ease
}
a:link, a:visited {
color: #fff;
text-decoration: none
}
a:hover {
color: #aaa;
text-decoration: underline;
}
img {
border: 6px solid #dfdfdf;
border-radius: 5px;
@ -32,7 +45,18 @@ img {
margin-left: auto;
margin-right: auto;
background: #fff;
padding: 3em;
padding: 3.5em;
border-radius: 3px;
box-shadow: 0 4px 5px 0 #555
}
footer {
text-align: center;
margin: auto;
margin-top: 2em;
margin-bottom: 2em;
padding: .5em;
width: 25em;
border-top: 2px solid #fff;
font-size: .9em;
}