Add copyright in footer

This commit is contained in:
Gabriel Augendre 2016-04-26 01:42:59 +02:00
parent 901eba031f
commit af3484c53c
No known key found for this signature in database
GPG key ID: D2B6A5B41FC438B1
2 changed files with 24 additions and 0 deletions

View file

@ -131,6 +131,13 @@ var App = React.createClass({
<h1>DAVIDS <small className="hidden-sm hidden-xs">DuplicAtes VIewer and Detector for Spotify</small></h1>
{content}
</div>
<footer className="footer">
<div className="container-fluid">
<p className="text-muted">
Copyright © {(new Date()).getFullYear()} Gabriel Augendre : <a href="https://github.com/Crocmagnon/DAVIDS/tree/master/LICENSE">License.</a>
</p>
</div>
</footer>
</div>
);
}

View file

@ -13,6 +13,8 @@
}
html {
position: relative;
min-height: 100%;
font-size: 16px;
}
@ -20,4 +22,19 @@ body {
font-size: 1rem;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
line-height: 1.5;
/* Margin bottom by footer height */
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 60px;
background-color: #f5f5f5;
}
.container-fluid .text-muted {
margin: 20px 0;
}