Skip to content
Snippets Groups Projects
Commit 79441c2b authored by Husnulzaki Wibisono Haryadi's avatar Husnulzaki Wibisono Haryadi
Browse files

Add class "green" and "red" for button

parent 5e9e4a48
1 merge request!45OneHundred - 13515005 - Husnulzaki Wibisono Haryadi
......@@ -7,17 +7,28 @@
}
.button {
background: #82d800;
color: black;
border: 2px solid black;
border-radius: 6px;
text-shadow:none;
}
.button:hover {
.green {
background: #82d800;
}
.green:hover {
background: #9dff08;
}
.red {
background: #d50027;
}
.red:hover {
background: #ff264e;
}
input{
width: 90%;
margin: 1px auto 15px;
......@@ -30,4 +41,4 @@ a:link, a:visited {
a:hover {
color: rgb(167,180,4);
}
}
\ No newline at end of file
......@@ -26,7 +26,7 @@
<input type="text" name="user_phone"><br/>
<input type="checkbox" name="is_driver" value="true" style="width: 20px">
<label for="chkbx_driver">Sign me up as a driver</label>
<input type="submit" class="button register" value="REGISTER">
<input type="submit" class="button green register" value="REGISTER">
</form>
<p><br>* Required field</p>
</div>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment