diff options
-rw-r--r-- | css/craftmine.css | 12 | ||||
-rw-r--r-- | index.xhtml | 10 |
2 files changed, 22 insertions, 0 deletions
diff --git a/css/craftmine.css b/css/craftmine.css index c5d5d28..13580f3 100644 --- a/css/craftmine.css +++ b/css/craftmine.css @@ -35,6 +35,18 @@ .list-group > button { border-radius: 0; } +.footer { + background-color: #f5f5f5; + border-top: 1px solid #e5e5e5; + padding: 0.7em 0; + text-align: center; + width: auto; +} + +.footer p { + color: #777; + margin-bottom: 0; +} a { color: #5cb85c; } diff --git a/index.xhtml b/index.xhtml index 8ee8c52..7c32ee3 100644 --- a/index.xhtml +++ b/index.xhtml @@ -123,5 +123,15 @@ </div> </div> </div> + +<footer class="footer"> + <div class="container"> + <p><h4 style="display:inline">CraftMine —</h4> + Par Alexandre Renoux et Pierre-Emmanuel Novac</p> + <p><a href="https://git.piernov.org/candybox">Voir le code source</a> — <a href="http://www.cecill.info/index.fr.html">Licence Libre CeCILL</a></p> + </div> +</footer> + + </body> </html> |