mais coisas

This commit is contained in:
2025-08-18 17:19:27 -03:00
parent 1ce9aaac6a
commit 36c8b6dcb7
5 changed files with 117 additions and 14 deletions

View File

@@ -1,4 +1,3 @@
.projects-section {
flex: 0 0 340px;
display: flex;
@@ -9,7 +8,7 @@
backdrop-filter: blur(24px) saturate(140%) brightness(1.08);
-webkit-backdrop-filter: blur(24px) saturate(140%) brightness(1.08);
border-radius: var(--border-radius-large);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), inset 0 1px 0 rgba(255,255,255,0.10);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.10);
min-width: 280px;
max-width: 340px;
margin-left: 20px;
@@ -36,11 +35,19 @@
display: flex;
flex-direction: column;
gap: 6px;
transition: transform 0.18s, box-shadow 0.18s;
transition: transform 0.28s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.project:hover {
transform: scale(1.012);
box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.13), 0 1.5px 4px 0 rgba(255, 255, 255, 0.08) inset;
filter: brightness(1.04) saturate(1.08);
}
.project:nth-child(odd) {
background: linear-gradient(135deg, rgba(20, 30, 60, 0.75) 0%, rgba(40, 50, 120, 0.75) 100%);
}
.project:nth-child(even) {
background: linear-gradient(135deg, rgba(10, 10, 10, 0.82) 0%, rgba(30, 30, 30, 0.82) 100%);
}
@@ -55,6 +62,28 @@
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
}
.project-icons {
display: flex;
gap: 8px;
align-items: center;
}
.project-icon-link {
display: inline-flex;
align-items: center;
justify-content: center;
color: var(--text-color);
transition: all 0.2s;
}
.project-icon-link:hover {
color: var(--primary-color);
}
.project-desc {