Skip to content

Commit

Permalink
add hover color on left-side icons
Browse files Browse the repository at this point in the history
  • Loading branch information
dylansdaniels committed Jan 17, 2025
1 parent f187be1 commit fab4638
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions content/assets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,10 @@ code {
/* transition: fill 0.3s ease; */
}

.home-icon:hover {
fill: #444;
}

/* Light versus dark mode */
/* ---------------------- */

Expand All @@ -308,6 +312,10 @@ code {
fill: #bababa;
}

.theme-toggle svg:hover {
fill: #444;
}

body.dark-mode {
background-color: #14181e;
color: #d3d3d3;
Expand Down Expand Up @@ -356,6 +364,10 @@ body.dark-mode code {
cursor: pointer;
padding: 0px 10px;
}

.dropdown-button:hover {
color: #444;
}

.dropdown-content {
display: none;
Expand Down

0 comments on commit fab4638

Please sign in to comment.