DevpGus's picture
Você pode criar um template de página para os projetos que é direcionado ao clicarmos em "View Details"?
bb06256 verified
raw
history blame contribute delete
693 Bytes
/* Custom styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
scroll-behavior: smooth;
}
/* Timeline styling */
@media (max-width: 768px) {
.timeline-center::before {
left: 1.5rem !important;
}
.timeline-item::before {
left: 0.75rem !important;
}
}
/* Custom animation */
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.floating {
animation: float 6s ease-in-out infinite;
}
/* Section spacing */
section {
scroll-margin-top: 80px;
}