Skip to content

Commit

Permalink
Merge pull request #78 from org-arl/blog-listing-ui
Browse files Browse the repository at this point in the history
Color value change from HSL to RGBA
  • Loading branch information
manuignatius authored Oct 16, 2024
2 parents 135e918 + fd53880 commit 30d3d2e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions _sass/includes/_articles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
background-color: rgba(239, 246, 255, 0.4);
border-radius: 8px;
border: 1px solid rgba(208, 216, 227, 0.3);
box-shadow: 0.5px 1px 1px hsl(220deg 60% 50% / 0.7);
box-shadow: 0.5px 1px 1px rgba(51, 102, 204, 0.7);
transition: all 0.4s;
&:hover {
box-shadow: 1px 2px 2px hsl(220deg 60% 50% / 0.333),
2px 4px 4px hsl(220deg 60% 50% / 0.333),
3px 6px 6px hsl(220deg 60% 50% / 0.333);
box-shadow: 1px 2px 2px rgba(51, 102, 204, 0.333),
2px 4px 4px rgba(51, 102, 204, 0.333),
3px 6px 6px rgba(51, 102, 204, 0.333);
img {
transform: scale(1.4);
}
Expand Down

0 comments on commit 30d3d2e

Please sign in to comment.