Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make cursor pointer on each button #149

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -342,13 +342,22 @@ body {
font-size: 1.5em;
color: rgba(0, 0, 0, 0.25);
opacity: 0;
cursor: pointer;
}




.btn:hover {
color: rgba(0, 0, 0, 0.5);
transition: color 400ms ease-out;
=======
.btn:hover {
color: rgba(0, 0, 0, 0.5);
transition: color 400ms ease-out;
}


.btn:after {
cursor: pointer;
position: absolute;
Expand All @@ -360,11 +369,14 @@ body {
margin-left: -1.5em;
margin-top: -1.5em;
border-radius: 100%;


}


/*The back button was changed to bottom because it interrupts the info button.*/


.btn--tl {
bottom: 1.2em;
left: 1.2em;
Expand All @@ -387,6 +399,7 @@ body {
}



/* For volume button */

.btn--tr {
Expand Down Expand Up @@ -415,6 +428,7 @@ body {
z-index: 10;
}


.btn svg {
display: block;
}
Expand Down