move and style buttons on parts list

This commit is contained in:
2021-09-01 15:13:13 -04:00
parent f62aae3da5
commit 26e04007a6
2 changed files with 17 additions and 3 deletions
+16 -2
View File
@@ -13,13 +13,27 @@ input[type="button"] {
text-decoration: none;
cursor: pointer;
border: none;
transition: background-color 200ms ease-in-out;
transition: background-color 250ms ease-in-out;
}
input[type="button"]:hover {
background-color: #535353;
background-color: #999799;
}
input[type="button"]:disabled {
opacity: 0.3;
}
input[name="btnCancel"] + input[name="btnSave"] {
position: fixed;
top: 20px;
right: 20px;
}
input[name="btnCancel"] {
background-color: lightcoral;
color: white;
position: fixed;
top: 20px;
right: 80px;
}