Merge pull request #5 from netlify/new-footer-links

New Footer Links
This commit is contained in:
David Calavera 2016-11-21 17:25:29 -08:00 committed by GitHub
commit 306bbcb179
4 changed files with 21 additions and 8 deletions

View File

@ -1,4 +1,5 @@
{{ partial "header" . }}
{{ partial "incident" . }}
</div>
{{ partial "footer" . }}

View File

@ -1,5 +1,10 @@
<div class="footer">
<a href="http://netlify.com">
Powered by Netlify
<p>
<a href="http://netlify.com/statuskit">
StatusKit by Netlify
</a> &#8226
<a href="https://github.com/netlify/netlify-statuskit">
View on GitHub
</a>
</p>
</div>

View File

@ -14,3 +14,5 @@
{{ partial "paginator" . }}
</div>
{{ partial "footer" . }}

View File

@ -17,7 +17,6 @@ a:active {
text-decoration: underline;
}
.gangsta-wrap {
max-width: 800px;
margin: auto;
@ -274,17 +273,23 @@ a:active {
border-top: 2px solid #F7F7F8;
}
.footer a {
display: inline-block;
.footer p {
width: 100%;
font-size: 14px;
text-align: left;
}
.footer a {
color: #202020;
opacity: 0.3;
transition: all 0.3s ease;
text-align: left;
}
.footer a:hover {
color: #3A71B0;
opacity: 1;
}
.footer p {
display: inline-block;
}