Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

making guess hint guess number blocks responsive #77

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,21 @@ <h2>Show Hints</h2>
<a id="resetbtn" class="btn btn-warning">Reset</a>
</div>
<div class="center-block">
<div class="row">
<div id="guesspanel" class="blocks col-xs-3 text-center">
<div class="row flex-column flex-sm-row">
<div id="guesspanel" class="blocks col-sm-3 col-xs-12 text-center">

<h2>Guesses <span id="guesses" class="badge" style="margin-bottom: 5px">0</span></h2>
<div class="gcontent">

</div>
</div>
<div id="mainpanel" class="blocks col-xs-4 text-center " style="padding-top: 130px">
<div id="mainpanel" class="blocks col-xs-12 col-sm-4 text-center " style="padding-top: 130px">
<input id="gno" type="number" step="1" min="1" oninput="validity.valid||(value='');" class="form-control center-block" placeholder="Type Your Guess Here!">

<a id="gbtn" class="btn btn-danger text-uppercase">Guess</a>

</div>
<div id="hintpanel" class="blocks col-xs-4" style="width: 30%">
<div id="hintpanel" class="blocks col-xs-12 col-sm-4 col-md-4 text-center col-lg-4">
<h2 class="text-center">Hints</h2><br><br>
<div class="hcontent center-block text-center">

Expand Down