mudanças

This commit is contained in:
2025-08-18 16:47:16 -03:00
parent e3e83a3f40
commit 1ce9aaac6a
11 changed files with 250 additions and 228 deletions

View File

@@ -1,3 +1,51 @@
.social-links {
position: relative;
}
.social-link {
display: inline-flex;
align-items: center;
}
.email-tooltip {
position: absolute;
background: rgba(40, 40, 40, 0.95);
color: #fff;
padding: 6px 16px;
border-radius: 8px;
font-size: 0.95rem;
font-weight: 500;
box-shadow: 0 2px 12px rgba(0,0,0,0.18);
opacity: 0;
pointer-events: none;
transition: opacity 0.3s, transform 0.3s;
z-index: 10;
white-space: nowrap;
width: max-content;
display: block;
}
.email-tooltip {
position: absolute;
left: 50%;
top: -32px;
transform: translateX(-50%) scale(1);
background: rgba(40, 40, 40, 0.95);
color: #fff;
padding: 6px 16px;
border-radius: 8px;
font-size: 0.95rem;
font-weight: 500;
box-shadow: 0 2px 12px rgba(0,0,0,0.18);
opacity: 0;
pointer-events: none;
transition: opacity 0.3s, transform 0.3s;
z-index: 10;
white-space: nowrap;
}
.hero-details {
display: flex;
flex-direction: row;
@@ -27,7 +75,7 @@
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 8px;
background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
background: linear-gradient(135deg, var(--text-color) 0%, var(--text-color-light) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
@@ -36,7 +84,7 @@
.description {
font-size: 1.2rem;
margin-bottom: 32px;
color: rgba(255, 255, 255, 0.8);
color: var(--text-color-light);
font-weight: 400;
}
@@ -45,47 +93,10 @@
gap: 16px;
flex-wrap: wrap;
}
.social-link {
padding: 12px 20px;
background: rgba(10, 18, 40, 0.85);
color: #fff;
border: none;
border-radius: 10px;
text-decoration: none;
font-weight: 500;
font-size: 15px;
position: relative;
overflow: visible;
box-shadow: 0 2px 16px 0 rgba(31, 38, 135, 0.12);
transition: background 0.18s, transform 0.18s;
}
/* Modern underline effect under text */
.social-link span {
position: relative;
z-index: 1;
display: inline-block;
}
.social-link span::after {
content: '';
display: block;
width: 100%;
height: 2px;
background: linear-gradient(90deg, #fff 0%, #667eea 100%);
border-radius: 1px;
position: absolute;
left: 0;
bottom: -4px;
opacity: 0.7;
transition: height 0.18s, opacity 0.18s;
}
.social-link:hover {
background: rgba(20, 30, 60, 0.95);
transform: translateY(-1px) scale(1.03);
}
.social-link:hover span::after {
height: 3px;
opacity: 1;
display: inline-flex;
align-items: center;
gap: 8px;
}
@media (max-width: 900px) {
@@ -98,7 +109,6 @@
}
}
@media (max-width: 768px) {
.hero-card {
grid-template-columns: 1fr;
@@ -107,13 +117,6 @@
text-align: center;
}
.avatar {
width: 140px;
height: 140px;
margin: 0 auto;
font-size: 40px;
}
.name {
font-size: 2rem;
}
@@ -132,12 +135,6 @@
padding: 24px 16px;
}
.avatar {
width: 120px;
height: 120px;
font-size: 32px;
}
.name {
font-size: 1.8rem;
}

View File

@@ -41,28 +41,4 @@
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.homelab-btn {
padding: 12px 28px;
background: rgba(10, 18, 40, 0.85);
color: #fff;
border: none;
border-radius: 14px;
font-weight: 600;
font-size: 15px;
letter-spacing: 0.02em;
text-decoration: none;
box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.18), 0 1.5px 0 rgba(255,255,255,0.08);
transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.18s;
cursor: pointer;
position: relative;
overflow: hidden;
}
.homelab-btn:hover {
background: rgba(20, 30, 60, 0.95);
transform: translateY(-2px) scale(1.04);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.28);
}
.homelab-btn:active {
transform: translateY(0px) scale(1.0);
}
}

View File

@@ -1,4 +1,4 @@
/* Profile Info Section Styles */
.profile-info {
margin-top: 1.2rem;
display: flex;
@@ -22,7 +22,7 @@
.profile-info-item i {
font-size: 1.3rem;
color: #4fc3f7;
color: var(--primary-color);
margin-right: 0.2rem;
}
@@ -33,14 +33,13 @@
}
.profile-info-value {
color: rgba(255, 255, 255, 0.45);
color: var(--text-color-dark);
font-weight: 400;
}
.profile-info-value span {
display: block;
}
/* profile.css - Styles for avatar and avatar-container */
.profile-container {
position: relative;
@@ -49,12 +48,12 @@
.avatar {
width: 160px;
height: 160px;
border-radius: 24px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: var(--border-radius-large);
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
display: flex;
align-items: center;
justify-content: center;
color: white;
color: var(--text-color);
position: relative;
overflow: hidden;
border: 2px solid rgba(255, 255, 255, 0.2);
@@ -74,5 +73,22 @@
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 24px;
border-radius: var(--border-radius-large);
}
@media (max-width: 768px) {
.avatar {
width: 140px;
height: 140px;
margin: 0 auto;
font-size: 40px;
}
}
@media (max-width: 480px) {
.avatar {
width: 120px;
height: 120px;
font-size: 32px;
}
}

View File

@@ -1,3 +1,4 @@
.projects-section {
flex: 0 0 340px;
display: flex;
@@ -7,7 +8,7 @@
background: rgba(20, 20, 30, 0.10);
backdrop-filter: blur(24px) saturate(140%) brightness(1.08);
-webkit-backdrop-filter: blur(24px) saturate(140%) brightness(1.08);
border-radius: 24px;
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);
min-width: 280px;
max-width: 340px;
@@ -19,9 +20,9 @@
font-size: 1.6rem;
font-weight: 700;
margin-bottom: 10px;
color: #fff;
color: var(--text-color);
letter-spacing: 0.03em;
background: linear-gradient(135deg, #667eea 0%, #fff 100%);
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--text-color) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
@@ -29,7 +30,7 @@
.project {
padding: 18px 16px;
border-radius: 16px;
border-radius: var(--border-radius);
box-shadow: 0 2px 12px 0 rgba(31, 38, 135, 0.10);
margin-bottom: 0;
display: flex;
@@ -47,10 +48,10 @@
.project-title {
font-size: 1.15rem;
font-weight: 600;
color: #fff;
color: var(--text-color);
margin-bottom: 2px;
letter-spacing: 0.01em;
background: linear-gradient(90deg, #fff 0%, #667eea 100%);
background: linear-gradient(90deg, var(--text-color) 0%, var(--secondary-color) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
@@ -58,11 +59,12 @@
.project-desc {
font-size: 0.98rem;
color: rgba(255,255,255,0.85);
color: var(--text-color-light);
font-weight: 400;
line-height: 1.5;
}
@media (max-width: 900px) {
.projects-section {
flex: unset;