File size: 875 Bytes
bea785f 1434a4b bea785f 1434a4b bea785f 1434a4b bea785f 1434a4b bea785f 1434a4b bea785f 1434a4b bea785f | 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 | /* Custom styles that complement Tailwind */
body {
scroll-behavior: smooth;
}
/* Hero section overlay */
.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to right, rgba(10, 27, 42, 0.9) 0%, rgba(10, 27, 42, 0.7) 50%, rgba(10, 27, 42, 0.3) 100%);
}
/* Custom shadow for cards */
.custom-shadow {
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
/* Animation for hover effects */
.hover-scale {
transition: transform 0.3s ease;
}
.hover-scale:hover {
transform: translateY(-5px);
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #D5A74E;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #c2953e;
} |