feat: added display method

This commit is contained in:
Smigz 2023-10-03 23:06:45 -04:00
parent 8b78b5bc3a
commit 56e16c3741
3 changed files with 59 additions and 22 deletions

View file

@ -37,6 +37,10 @@
margin: 5px;
font-size: 25px;
width: 110px;
-webkit-transition: all 0.5s; /* add this line, chrome, safari, etc */
-moz-transition: all 0.5s; /* add this line, firefox */
-o-transition: all 0.5s; /* add this line, opera */
transition: all 0.5s; /* add this line */
}
#clear {
@ -51,6 +55,14 @@
width: 230px;
}
#action:hover {
background-color: #F0ECE2;
}
#clear:hover {
background-color: #FF6D60;
}
body {
display: flex;
justify-content: center;