Skip to content

Commit

Permalink
Fix hover link color, fix taxonomy color
Browse files Browse the repository at this point in the history
  • Loading branch information
gamingrobot committed Dec 22, 2023
1 parent 38a2145 commit 1b58faf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion content/posts/elf-shared-library-version.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ tags = ["Linux"]

*How to embed version information into an ELF shared library?*

That is the question I ended up answering for myself, and here are the methods I discovered for embedding version information.
Here are the methods I discovered for embedding version information.

<!-- more -->

Expand Down
6 changes: 2 additions & 4 deletions themes/hyde-hyde-hyde-zola/sass/hyde-hyde/_taxonomies.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
.badge-tag,
a.badge-tag {
color: #fff !important;
background-color: #007cc0;
background-color: $link-color;
&:hover, &:focus {
color: #007cc0 !important;
background: transparent;
background-color: transparent;
background-color: $link-hover-color;
text-decoration: none;
border-bottom: none;
}
Expand Down
2 changes: 1 addition & 1 deletion themes/hyde-hyde-hyde-zola/sass/hyde-hyde/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $root-font-weight: 400;
// 18px @ 33 px, 20px @ 33 px ~ 1.667em
$root-line-height: 1.667em;

$body-color: #34343c;
$body-color: #0d3a58;
$body-bg: #fff;

$border-color: #e5e5e5;
Expand Down

0 comments on commit 1b58faf

Please sign in to comment.