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

@ -57,7 +57,7 @@ body {
transition: 1s; transition: 1s;
} }
.clickToEnter > p { .clickToEnter>p {
color: #fff; color: #fff;
position: absolute; position: absolute;
top: 10px; top: 10px;
@ -229,8 +229,8 @@ body {
.controls button { .controls button {
background: none; background: none;
border: none; border: none;
color: white; color: #ddd;
font-size: 16px; font-size: 18px;
cursor: pointer; cursor: pointer;
border-radius: 7px; border-radius: 7px;
width: 40px; width: 40px;
@ -240,8 +240,16 @@ body {
box-shadow: #000000 3px 3px 20px !important; box-shadow: #000000 3px 3px 20px !important;
border: 2px solid rgba(150, 150, 150, 0.25); border: 2px solid rgba(150, 150, 150, 0.25);
text-shadow: #000000 3px 2px 7px !important; text-shadow: #000000 3px 2px 7px !important;
display: flex;
justify-content: center;
transition: color 0.1s;
} }
.controls button:hover {
color: #fff;
}
.controls button:active { .controls button:active {
transform: translateY(1px); transform: translateY(1px);
} }
@ -406,7 +414,7 @@ svg {
position: absolute; position: absolute;
bottom: 125%; bottom: 125%;
transform: translateX(-60%); transform: translateX(-60%);
background-color: rgb(51, 51, 51, 0.5); background-color: rgb(51, 51, 51, 0.5);
border: 2px solid rgba(150, 150, 150, 0.1); border: 2px solid rgba(150, 150, 150, 0.1);
color: #fff; color: #fff;
padding: 5px 10px; padding: 5px 10px;
@ -490,7 +498,7 @@ svg {
margin-left: 35px; margin-left: 35px;
} }
.clickToEnter > p { .clickToEnter>p {
color: #fff; color: #fff;
position: absolute; position: absolute;
top: 0px; top: 0px;