Feat: button with hover

This commit is contained in:
Bertrand Benjamin 2021-08-11 18:54:17 +02:00
parent 803c695909
commit e082bf7164
1 changed files with 16 additions and 2 deletions

View File

@ -6,7 +6,6 @@
}
button {
border: none;
color: white;
padding: 15px 32px;
box-shadow: 1px 1px 2px gray;
@ -18,11 +17,26 @@ button {
color: white;
}
.validate {
border: 2px solid green;
color: green;
}
.validate:hover {
background-color: green;
color: white;
}
.cancel {
border: 2px solid red;
color: red;
}
.cancel:hover {
background-color: red;
color: white;
}
.edit {
background-color: orange;
border: 2px solid orange;
color: orange;
}
.edit:hover {
background-color: orange;
color: white;
}