diff --git a/img/star-off-hover.png b/img/star-off-hover.png new file mode 100644 index 0000000..3cfcf0c Binary files /dev/null and b/img/star-off-hover.png differ diff --git a/img/star-off.png b/img/star-off.png new file mode 100644 index 0000000..f05b57f Binary files /dev/null and b/img/star-off.png differ diff --git a/img/star-on.png b/img/star-on.png new file mode 100644 index 0000000..0d7a095 Binary files /dev/null and b/img/star-on.png differ diff --git a/style.css b/style.css index 0d49a7d..8db7766 100644 --- a/style.css +++ b/style.css @@ -126,17 +126,22 @@ span.underline { font-size: 1.6em; } -#list .favorited:before { - content: "⭐️"; +#list .favorited { + background-image: url("img/star-on.png"); + height: 1em; + width: 1em; + background-size: cover; } -#list .not-fav:before { - content: "★"; - color: lightGray; +#list .not-fav { + background-image: url("img/star-off.png"); + height: 1em; + width: 1em; + background-size: cover; } -#list .not-fav:hover::before { - color: darkGray; +#list .not-fav:hover { + background-image: url("img/star-off-hover.png"); } #list th.sub {