Skip to content

Commit

Permalink
Update projects.html
Browse files Browse the repository at this point in the history
  • Loading branch information
KimTeddy committed Dec 27, 2024
1 parent 9376313 commit cd4742a
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,23 @@ <h2>Projects</h2>
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 10px;
/* padding: 10px;*/
flex: 0 0 auto;
/* 카드 크기 고정 */
width: 300px;
/* width: 300px;*/
width: 40%;
min-height: 250px;
/* 최소 높이 */
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;

animation: scroll-loop 20s linear infinite;
}

.project-card:hover {
transform: translateY(-10px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

animation-play-state: paused;
}

.project-group::-webkit-scrollbar {
Expand Down Expand Up @@ -184,9 +189,13 @@ <h2>Projects</h2>
transform: translateX(0);
}

100% {
50% {
transform: translateX(-50%);
}

100% {
transform: translateX(0);
}
}
.filter-buttons {
text-align: center;
Expand Down

0 comments on commit cd4742a

Please sign in to comment.