diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-07-30 14:52:19 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-07-30 15:02:35 +0300 |
commit | 84c164d54d94ec683c78b3ed7cfa9b9601acbd1e (patch) | |
tree | b70e364efc7846b672ae1308d5ba0014803a943a /www | |
parent | bab55b944718705fa7696607831fe3b1646cd971 (diff) |
Right-align submission form submit button
Diffstat (limited to 'www')
-rw-r--r-- | www/submit-body.css | 4 | ||||
-rw-r--r-- | www/submit.xhtml | 11 |
2 files changed, 11 insertions, 4 deletions
diff --git a/www/submit-body.css b/www/submit-body.css index 0cb86d1..f09cff0 100644 --- a/www/submit-body.css +++ b/www/submit-body.css @@ -12,10 +12,10 @@ #submit th { - width: 5.7em; + width: 6.8em; } -#submit input +#submit input, #submit-padding { width: 100%; margin:0; diff --git a/www/submit.xhtml b/www/submit.xhtml index f222b1f..3a727b0 100644 --- a/www/submit.xhtml +++ b/www/submit.xhtml @@ -16,10 +16,17 @@ </td> </tr> <tr> - <th>sha256</th> + <th>sha256sum</th> <td><input type="text" name="sha256sum" required=""/></td> </tr> </tbody> </table> - <div><input type="submit" value="Submit"/></div> + <table class="form-table"> + <tbody> + <tr> + <td id="submit-padding"/> + <td><input type="submit" value="Submit"/></td> + </tr> + </tbody> + </table> </form> |