mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-05-09 20:05:20 -04:00
feat: added display method
This commit is contained in:
parent
8b78b5bc3a
commit
56e16c3741
3 changed files with 59 additions and 22 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue