diff options
author | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2016-02-19 14:28:42 +0100 |
---|---|---|
committer | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2016-02-19 14:28:42 +0100 |
commit | 30a0e57a35215cf4efcaa5c3ab1e4cd4eba4e4cc (patch) | |
tree | b4cec8a19fb4b079f6c9c4909e2112bd5c1f3cbc | |
parent | afe8d448529e8b65e2efd2befbd08de79609a8ba (diff) |
Small change for UI buttons.
-rw-r--r-- | css/style.css | 2 | ||||
-rw-r--r-- | index.php | 10 |
2 files changed, 5 insertions, 7 deletions
diff --git a/css/style.css b/css/style.css index 52cf55a..8ac6492 100644 --- a/css/style.css +++ b/css/style.css @@ -33,7 +33,7 @@ body { margin-right: auto; } .confirm { - width: 50%; + width: 55%; margin-left: auto; margin-right: auto; } @@ -86,12 +86,10 @@ final class LookingGlass { } private function render_buttons() { - print('<div class="confirm btn-group btn-group-justified">'); - print('<div class="btn-group">'); - print('<button class="btn btn-primary" id="send" type="submit">Enter</button>'); - print('</div>'); - print('<div class="btn-group">'); - print('<button class="btn btn-danger" id="clear" type="reset">Reset</button>'); + print('<div class="confirm btn-group">'); + print('<div class="col-md-12 btn-group">'); + print('<button class="col-md-6 btn btn-primary" id="send" type="submit">Enter</button>'); + print('<button class="col-md-6 btn btn-danger" id="clear" type="reset">Reset</button>'); print('</div>'); print('</div>'); } |