Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #305 from git-Hmmm/patch-4
Browse files Browse the repository at this point in the history
Cosmetic change v3: added box-shadow to footer buttons
  • Loading branch information
reis authored Aug 24, 2022
2 parents 5908012 + fcd66a7 commit a2a16c9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions public/styles/core.css
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,16 @@ button {
padding: 10px 20px;
background-color: var(--buttonColor);
cursor: pointer;
transition: 200ms;
box-shadow: 0px 0px 0px 2px #ddd;
}

button:hover {
box-shadow: 0 0 0 3px #ddd;
}

button:focus, button:active {
box-shadow: 0 0 0 2px #ddd;
}

.highlighted {
Expand Down Expand Up @@ -178,6 +188,12 @@ i.social-icon {
line-height: 1em;
color: var(--icon-foreground);
background-color: var(--icon-background);
cursor: pointer;
transition: 200ms;
}

i.social-icon:hover {
box-shadow: 0 0 0 2px #ddd;
}

i.social-icon::before {
Expand Down

0 comments on commit a2a16c9

Please sign in to comment.