add Render button

This commit is contained in:
scribu 2014-04-10 01:44:54 +03:00
parent f11f743092
commit 082bcb9900
2 changed files with 34 additions and 0 deletions

View File

@ -10,6 +10,7 @@
<form>
<label>Repository:</label>
<input id="repo-name" type="text" value="wp-cli/wp-cli" />
<input class="button" type="submit" value="Render" />
</form>
<div class="column">

View File

@ -3,6 +3,39 @@ form {
margin-bottom: 10px;
}
.button {
background-color: #428BCA;
border: 1px solid #357EBD;
border-radius: 2px;
color: #ffffff;
font-size: 15px;
font-weight: bold;
font-style: normal;
height: 30px;
}
.button:hover {
background-color: #3276B1;
border-color: #285E8E;
cursor: pointer;
}
.button:active {
position:relative;
top:1px;
}
#repo-name {
font-size: 15px;
font-weight: bold;
color: #50555B;
width: 300px;
height: 31px;
position: relative;
top: 1px;
border: 1px solid gray;
border-radius: 2px;
padding: 0 6px;
}
.column {
width: 49%;
float: left;