Skip to content

Commit

Permalink
adds port label
Browse files Browse the repository at this point in the history
  • Loading branch information
toddtreece committed Jan 26, 2015
1 parent c1377dc commit 1b77f36
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pi_finder/src/ui/main.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Raspberry Pi Bootstrap</title>
<title>Raspberry Pi Finder</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
Expand All @@ -10,8 +10,8 @@
<div id="status"></div>

<div id="ssh" class="hide">
<label>IP Address:</label>
<div class="group"><select id="host" name="host"></select> <input id="port" name="port" value="22"></div>
<div class="group"><label class="host">IP Address:</label> <label class="port">Port:</label></div>
<div class="group"><select class="host" name="host"></select> <input class="port" name="port" value="22"></div>
<div class="clear"></div>
<label>SSH User:</label>
<input name="username" value="pi">
Expand Down
6 changes: 3 additions & 3 deletions pi_finder/src/ui/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,16 +111,16 @@ input {
width: 100%;
}

#host, #port {
.host, .port {
display: block;
}

#host {
.host {
width: 70%;
float: left;
}

#port {
.port {
width: 22%;
float: right;
}

0 comments on commit 1b77f36

Please sign in to comment.