File size: 851 Bytes
cb26e78 acc3625 cb26e78 cad5537 cb26e78 acc3625 cb26e78 acc3625 d09f3cb cb26e78 cad5537 cb26e78 13b6b21 4035065 cb26e78 0b2ae53 cb26e78 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
/* Custom styles for Oskar L.K Portfolio */
.glass-effect {
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-gradient {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
@keyframes floating {
0% { transform: translate(0, 0px); }
50% { transform: translate(0, -15px); }
100% { transform: translate(0, 0px); }
}
.floating {
animation: floating 3s ease-in-out infinite;
}
.project-card {
transition: all 0.3s ease;
border: 1px solid #e5e7eb;
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(239, 68, 68, 0.1), 0 10px 10px -5px rgba(239, 68, 68, 0.04);
border-color: #ef4444;
}
.skill-icon {
transition: all 0.3s ease;
}
.skill-icon:hover {
transform: scale(1.1);
} |