Spaces:
Running
Running
File size: 1,600 Bytes
a07a2f6 fe3d38d a07a2f6 fe3d38d debdc51 a07a2f6 fe3d38d a07a2f6 fe3d38d a07a2f6 fe3d38d debdc51 fe3d38d debdc51 fe3d38d debdc51 fe3d38d debdc51 fe3d38d debdc51 fe3d38d |
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
/* Base styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');
body {
font-family: 'Space Grotesk', sans-serif;
line-height: 1.6;
color: #e5e7eb;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
}
/* Glow effect for interactive elements */
.glow-on-hover:hover {
box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}
/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #1f2937;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #4b5563;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #8b5cf6;
}
/* Custom animation classes */
.transition-all {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 200ms;
}
.prose {
line-height: 1.75;
}
.prose p {
margin-bottom: 1.25em;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Custom component styles */
.project-card:hover {
transform: translateY(-4px);
}
/* Responsive tweaks */
@media (max-width: 640px) {
.hero-text {
font-size: 2.5rem;
}
} |