diff options
author | Austin Adams <git@austinjadams.com> | 2016-02-05 00:52:44 -0500 |
---|---|---|
committer | Austin Adams <git@austinjadams.com> | 2016-02-05 00:52:44 -0500 |
commit | db2a96b428c0c08df0161507c0d08bc721bcde69 (patch) | |
tree | 4c6c7e7f4cda089bf27d95f8f4bfb442c09bbac1 | |
parent | a2dfcef95ca8f74442ca440528cbc3293930da32 (diff) | |
download | toolbag-db2a96b428c0c08df0161507c0d08bc721bcde69.tar.gz toolbag-db2a96b428c0c08df0161507c0d08bc721bcde69.tar.xz |
fix styling in figlet template
-rw-r--r-- | tools/share/templates/figlet.html | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/tools/share/templates/figlet.html b/tools/share/templates/figlet.html index 1d3f4b3..ad96574 100644 --- a/tools/share/templates/figlet.html +++ b/tools/share/templates/figlet.html @@ -3,6 +3,11 @@ <head> <title>figlet frontend « austin adams</title> <style type="text/css"> + /* reset silly defaults */ + form input, select, pre { + padding: 0; + margin: 0; + } form { display: block; width: 256px; @@ -22,21 +27,18 @@ background-color: #f0f0f0; border-radius: 2px; } - - /* idiotic defaults */ - form input { - padding: 0; - margin: 0; - } - form input[type="text"] { - width: 210px; - margin-right: 5px; + max-width: 200px; + margin: 5px; + display: inline-block; + display: inline-flex; } - form input[type="submit"] { width: 35px; } + select { + margin-left: 5px; + } </style> </head> <body> |