Skip to content

Commit

Permalink
Enhancing hover effect-up-for-grabs#4489
Browse files Browse the repository at this point in the history
  • Loading branch information
swayamvasavada committed Feb 27, 2024
1 parent 5e9cc48 commit 92700b9
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions stylesheets/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -785,6 +785,12 @@ form {
display: flex;
flex-direction: column;
justify-content: space-between;
transition: transform ease 0.2s;
}

.data-box:hover {
transform: scale(1.1);
box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.7);
}

.projects,
Expand Down Expand Up @@ -1001,20 +1007,20 @@ ul.popular-tags li {
}

.projects .stats {
display: flex;
flex-direction: row;
justify-content: space-between;
display: flex;
flex-direction: row;
justify-content: space-between;
}

.fork-count {
display: flex;
margin-top: 10px;
height: max-content;
display: flex;
margin-top: 10px;
height: max-content;
}

.fork-count-svg {
align-self: center;
fill: var(--fork-svg-fill);
align-self: center;
fill: var(--fork-svg-fill);
}

@media screen and (max-width : 670px) {
Expand Down

0 comments on commit 92700b9

Please sign in to comment.