celinah's picture
celinah HF Staff
i only want the timeline from 2020 to 2025 as animated (gif) and static (png). use a code like font and use the hugging face logo 🤗 use the same color/branding. i don't want any other chart.
541ed25 verified
raw
history blame
550 Bytes
/* Timeline item animations */
.timeline-item {
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease-out;
}
.timeline-item.visible {
opacity: 1;
transform: translateY(0);
}
/* Button hover effects */
#downloadPng:hover, #generateGif:hover, #downloadGif:hover {
transform: translateY(-2px);
transition: transform 0.2s ease;
}
#downloadPng:hover {
background: #ff8c42 !important;
}
#generateGif:hover {
background: #ffe050 !important;
}
#downloadGif:hover {
background: #ff8c42 !important;
}