Skip to content

Commit

Permalink
Help icon popovers and css enhancement
Browse files Browse the repository at this point in the history
  • Loading branch information
Mattk70 committed Feb 7, 2024
1 parent 38a0d12 commit 73f8db3
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 40 deletions.
19 changes: 19 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -534,8 +534,27 @@ input[type="range"].vertical {
text-align: center;
line-height: 20px;
float: right;
text-decoration: none; /* Remove underline from <a> tags */
display: inline-block;
transition: transform 0.2s; /* Add transition for smooth scaling */
}

.circle a {
text-decoration: none; /* Remove underline */
color: inherit; /* Inherit parent's color */
display: block;
}

.circle:hover {
transform: scale(1.1); /* Grow on mouseover */
color: white;
}

.circle:active {
transform: scale(0.9); /* Shrink on click */
}


#settingsForm {
height: 75vh;
width: 65vw;
Expand Down
Loading

0 comments on commit 73f8db3

Please sign in to comment.