Skip to content

Commit

Permalink
refine shadows
Browse files Browse the repository at this point in the history
  • Loading branch information
chuckwagoncomputing committed Feb 8, 2023
1 parent e68aa2b commit 6a8c3f9
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,15 @@ body {
color: #111;
text-align: center;
box-sizing: border-box;
text-shadow: 0 0 2px #eee, 2px 2px 2px #eee, -2px -2px 2px #eee, 2px -2px 2px #eee, -2px 2px 2px #eee;
text-shadow:
-1px -1px 0 #eee,
0 -1px 0 #eee,
1px -1px 0 #eee,
1px 0 0 #eee,
1px 1px 0 #eee,
0 1px 0 #eee,
-1px 1px 0 #eee,
-1px 0 0 #eee;
}

#board-link {
Expand All @@ -37,7 +45,15 @@ body {
.pin-marker.selected {
background-color: #f15a24;
color: #eee;
text-shadow: 0 0 3px #111, 2px 2px 3px #111, -2px -2px 3px #111, 2px -2px 3px #111, -2px 2px 3px #111;
text-shadow:
-1px -1px 0 #111,
0 -1px 0 #111,
1px -1px 0 #111,
1px 0 0 #111,
1px 1px 0 #111,
0 1px 0 #111,
-1px 1px 0 #111,
-1px 0 0 #111;
}

.connector-container {
Expand Down

0 comments on commit 6a8c3f9

Please sign in to comment.