Add a footer

This commit is contained in:
Quantum 2018-12-04 22:01:28 -05:00
parent 816841bc29
commit eeb54b90b5
2 changed files with 17 additions and 3 deletions

View file

@ -30,10 +30,15 @@ $blockquote-font-size: $font-size-base;
@import "~octicons/index"; @import "~octicons/index";
body { body {
padding-top: 4.5rem; padding-top: $spacer * 4.5;
position: relative; position: relative;
} }
.footer {
min-height: $spacer * 4;
padding: ($spacer * 4 - $font-size-base) / 2;
}
#generated-password { #generated-password {
background: $input-bg; background: $input-bg;
} }

View file

@ -200,8 +200,8 @@
possible combinations from the known dictionary. possible combinations from the known dictionary.
</p> </p>
<p class="card-text"> <p class="card-text">
In essence, we are assuming the attacker is <em>more than</em> &ldquo;on to this trick&rdquo; already. Whether In essence, we are assuming the attacker is <em>more than</em> <q>on to this trick</q> already. Whether
attackers are &ldquo;on to this trick&rdquo; is completely therefore irrelevant to its security. If Bruce attackers are <q>on to this trick</q> is completely therefore irrelevant to its security. If Bruce
Schneier thinks using four words is insufficiently secure, he should be suggesting five or six words, not Schneier thinks using four words is insufficiently secure, he should be suggesting five or six words, not
<strong>shamelessly promoting his own password generation scheme</strong>. <strong>shamelessly promoting his own password generation scheme</strong>.
</p> </p>
@ -213,5 +213,14 @@
</div> </div>
</div> </div>
<footer class="footer bg-light">
<div class="container">
<span class="text-muted">Copyright &copy; 2018 <a href="https://quantum2.xyz">Quantum</a>. Licensed under
<a href="https://www.gnu.org/licenses/agpl-3.0.en.html">GNU AGPLv3</a>. Source code available on
<a href="https://github.com/quantum5/correcthorsebatterystaple">GitHub</a>.
</span>
</div>
</footer>
</body> </body>
</html> </html>