Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion src/components/experienceCard/ExperienceCard.scss
Original file line number Diff line number Diff line change
@@ -1,23 +1,37 @@
@import "../../_globalColor";

.experience-card {
max-width: 500px;
margin: 2rem;
position: relative;
background-color: $lightBackground2;
box-shadow: $lightBoxShadowDark 0px 10px 30px -15px;
border-radius: 10px;
border: 1px solid $lightBorder1;
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card-dark {
max-width: 500px;
margin: 2rem;
position: relative;
background-color: $darkBackground;
box-shadow: $lightBoxShadowDark 0px 10px 30px -15px;
border-radius: 10px;
border: 1px solid $lightBorder1;
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card:hover {
box-shadow: $lightBoxShadowDark 0px 20px 30px -10px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
transform: scale(1.05);
}

.experience-card-dark:hover {
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
transform: scale(1.05);
}

.experience-banner {
Expand Down