Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
krishbansal10 authored Oct 1, 2023
1 parent 5321632 commit 8bc2997
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ body.dark .skills-box:hover h3 {
position: relative;
padding: 40px;
width: 250px;
height: 320px;
height: 350px;
display: flex;
flex-direction: column;
align-items: center;
Expand Down Expand Up @@ -471,6 +471,23 @@ body.dark .project-card {
transition: 0.5s;
}

.project-card .project-content a {
position: relative;
top: 7px;
display: inline-block;
padding: 5px 25px;
background: var(--bg-color);
color: var(--text-color);
font-weight: 500;
text-decoration: none;
border-radius: 5px;
}

.project-card .project-content a:hover {
background-color: var(--hover);
color: var(--bg-color);
}

.project-card:hover .project-content {
top: 115px;
height: 250px;
Expand Down Expand Up @@ -723,4 +740,4 @@ form textarea {
.contact-button {
width: 20%;
}
}
}

0 comments on commit 8bc2997

Please sign in to comment.