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

Input min/max (and accidental indenting fix) #10

Merged
merged 4 commits into from Jul 8, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions index.html
Expand Up @@ -3,8 +3,8 @@
<head>
<title>💥</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<link href='http://fonts.googleapis.com/css?family=Exo+2' rel='stylesheet' type='text/css'>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="http://fonts.googleapis.com/css?family=Exo+2" rel="stylesheet" type="text/css">

<!-- 👋 this is a wip don't be mean -->
<!-- check out https://github.com/muan/emoji-minesweeper -->
Expand Down Expand Up @@ -175,7 +175,7 @@
}

.stat {
width: 33.3%;
width: 33.3%;
font-size: 0.85em;
padding: 8px 10px 5px;
display: table-cell;
Expand Down Expand Up @@ -252,12 +252,12 @@
<label class="btn flex-cell-min"><input type="radio" name="emoji" id="emoji"> Native emoji</label>
</div>
<div class="flex-table">
<input id="cols" class="input flex-cell" type="number" value="10">
<input id="cols" class="input flex-cell" type="number" value="10" min="1" max="500">
<div class="flex-cell-min divider">&times;</div>
<input id="rows" class="input flex-cell" type="number" value="10"><br>
<input id="rows" class="input flex-cell" type="number" value="10" min="1" max="500"><br>
</div>
<div class="prepend-input">💣</div>
<input id="bombs" class="input" type="number" value="10">
<input id="bombs" class="input" type="number" value="10" min="1" max="500">

<button class="js-popup-new-game btn">Restart Game</button>
</div>
Expand Down