Skip to content

Commit

Permalink
Hover color on Play and Stop buttons.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoluteur committed Feb 13, 2024
1 parent 70a2ba2 commit 3d62491
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,9 @@
border-left: 8px solid black;
}
}
.play:hover {
background-color: #a5d6a7;
}
#stop {
position: absolute;
top: 15px;
Expand All @@ -235,10 +238,10 @@
padding: 10px 15px;
text-align: center;
font-size: 20px;
background: #b00020;
background-color: #b71c1c;
border-radius: 10px;
cursor: pointer;
transition: transform 0.5s;
transition: transform 0.5s, background-color 0.5s;
> div {
display: inline-block;
background-color: white;
Expand All @@ -247,6 +250,9 @@
margin-right: 10px;
}
}
#stop:hover {
background-color: #e53935;
}
.noshow {
transform: translateY(-80px);
}
Expand Down

0 comments on commit 3d62491

Please sign in to comment.