Spaces:
Running
Running
File size: 925 Bytes
ea8b42c fffda89 ea8b42c fffda89 ea8b42c fffda89 ea8b42c fffda89 ea5664a fffda89 ea8b42c fffda89 ea8b42c | 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 | /* Custom styles */
.gallery-item {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.filter-btn.active {
background-color: #4f46e5;
color: white;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Course details page styles */
.prose {
line-height: 1.75;
color: #374151;
}
.prose p {
margin-bottom: 1rem;
}
.prose ul {
margin-bottom: 1.5rem;
}
/* Project category tags */
.project-tag {
display: inline-block;
padding: 0.25rem 0.75rem;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
}
.tag-course {
background-color: #e0f2fe;
color: #0369a1;
}
.tag-workshop {
background-color: #dcfce7;
color: #15803d;
}
.tag-resource {
background-color: #fae8ff;
color: #a21caf;
} |