button styling

This commit is contained in:
b1ek 2023-03-04 11:16:47 +10:00
parent 4abe2382ef
commit 44d6348400
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 16 additions and 0 deletions

View File

@ -7,6 +7,7 @@ textarea {
border: 1px solid #6c6f6c;
border-radius: 4px;
box-shadow: 0 2px 2px #20402030;
transition: 150ms ease;
padding: 4px 8px
}
textarea:hover {
@ -17,3 +18,18 @@ textarea:hover {
width: 400px;
height: 240px
}
input[type=submit] {
background-color: rgb(236, 221, 200);
border: 1px solid #9c9f9c;
border-radius: 4px;
margin-top: 8px;
padding: 4px 8px;
font-family: monospace;
box-shadow: 0 2px 2px #60806020;
transition: 150ms ease;
}
input[type=submit]:hover {
box-shadow: 0 2px 4px #60806040;
}