change button color (by Rafblin)

master
timka 2023-11-23 18:40:20 +03:00
parent 14e63d1a2a
commit 50fb4cae73
1 changed files with 14 additions and 0 deletions

View File

@ -50,6 +50,20 @@ h1, h2 {
font-family: JetBrainsItalic, monospace; font-family: JetBrainsItalic, monospace;
border-radius: 25px; border-radius: 25px;
margin-bottom: 200px; margin-bottom: 200px;
transition-property: all;
transition: all ease 1s;
}
.shortButton:hover {
color: #fff;
transition: all .3s linear;
-webkit-transition: all .3s linear;
-moz-transition: all .3s linear;
background-color: #001830;
}
.shortButton:nth-child(1):hover {
background: red;
} }
.notFound { .notFound {