blck

ephemeral pastebin/url shortener
git clone https://git.parazyd.org/blck
Log | Files | Refs | README | LICENSE

commit d4532afd8468c3f519d9ab33c5b820b05f6a9c71
parent 443efe3bbe1385dd0fb56efe644740f80ebe820a
Author: parazyd <parazyd@dyne.org>
Date:   Mon, 20 Mar 2017 00:12:29 +0100

it's soo big

Diffstat:
Mstatic/style.css | 10+++++++++-
Mtemplates/index.html | 18+++++++++---------
2 files changed, 18 insertions(+), 10 deletions(-)

diff --git a/static/style.css b/static/style.css @@ -8,11 +8,19 @@ body { padding: 5%; } +.container { + font-size: 300%; +} + +.inputbox , .button { + font-size: 70%; +} + footer { clear: both; color: #666; font-size: 50%; - padding: 2em; + padding: 1em; text-align: right; position: absolute; bottom: 0; diff --git a/templates/index.html b/templates/index.html @@ -9,16 +9,16 @@ <div class="container"> <h1>blck.cf</h1> <p>Create a one-click expiring link</p> + <div class="form"> + <form method="post" action="/s"> + <input type="url" name="url" id="url" class="inputbox" placeholder="http://blck.cf" required autofocus></input> + <input type="submit" class="button"></input> + </form> + </div> + <footer> + with &lt;3 by <a href="https://parazyd.cf">parazyd</a> | <a href="https://github.com/parazyd/blck.cf">source</a> + </footer> <div> - <div class="form"> - <form method="post" action="/s"> - <input type="url" name="url" id="url" class="inputbox" placeholder="http://blck.cf" required autofocus></input> - <input type="submit" class="button"></input> - </form> - </div> - <footer> - with &lt;3 by <a href="https://parazyd.cf">parazyd</a> | <a href="https://github.com/parazyd/blck.cf">source</a> - </footer> </body> </html>