center control buttons & add a lil hover anim

This commit is contained in:
zyqunix 2024-12-20 21:33:37 +01:00
parent e9b6ddf1ae
commit c83218d182

View file

@ -229,8 +229,8 @@ body {
.controls button {
background: none;
border: none;
color: white;
font-size: 16px;
color: #ddd;
font-size: 18px;
cursor: pointer;
border-radius: 7px;
width: 40px;
@ -240,8 +240,16 @@ body {
box-shadow: #000000 3px 3px 20px !important;
border: 2px solid rgba(150, 150, 150, 0.25);
text-shadow: #000000 3px 2px 7px !important;
display: flex;
justify-content: center;
transition: color 0.1s;
}
.controls button:hover {
color: #fff;
}
.controls button:active {
transform: translateY(1px);
}