Skip to content
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
16 changes: 13 additions & 3 deletions demos/stickies/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,19 @@ footer {
left: 2.5em;
bottom: .2em;
font-size: 1.4em;
color: hsl(330deg, 1.85%, 21.18%);
text-shadow: 1px 1px 2px hsl(0 0% 100% / .2),
-1px -1px 2px hsl(0 0% 0% / .8);
cursor: default;

&:not(:hover) {
color: hsl(330 1.85% 21.18%);
text-shadow: 1px 1px 2px hsla(0, 0%, 100%, 0.2),
-1px -1px 2px hsl(0 0% 0% / .9);
}

&:hover {
color: hsl(330 1.85% 40%);;
text-shadow: -.02em .01em .02em hsl(0 0% 0% / .5),
.03em -.05em 0 hsl(0 0% 100% / .7);
}

a {
color: inherit;
Expand Down