Add a footer to website pages.

This commit is contained in:
Mihai Parparita 2014-12-13 15:47:31 -08:00
parent 1bf5d997f6
commit b1f7a0ba0f
2 changed files with 29 additions and 0 deletions

View file

@ -130,6 +130,24 @@ input[type="submit"].inline.destructive {
opacity: 1;
}
.footer {
padding: 10px;
max-width: 1102px;
margin: 0 auto;
position: relative;
color: #999;
}
.footer .contents {
border-top: dashed 1px #ccc;
padding-top: 10px;
text-align: right;
}
.footer a {
color: #779dc2;
}
#sign-in-form {
text-align: center;
}

View file

@ -23,5 +23,16 @@
{{template "body" .}}
</div>
<div class="footer">
<div class="contents">
RetroGit is a project by
<a href="http://persistent.info">Mihai Parparita</a>
-
FAQ
-
<a href="https://github.com/mihaip/retrogit">Source</a>
</div>
</div>
</body>
</html>