tech-edumaster / style.css
hklamsir's picture
add a view details page for python course
ea5664a verified
/* 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;
}