CoolFace
Apppublic

ishapathak19/roadmap-wizardry

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
style.css45 linesDownload Raw Back to root
1.btn-primary {2    display: inline-block;3    background-color: #4f46e5;4    color: white;5    padding: 0.75rem 1.5rem;6    border-radius: 0.5rem;7    font-weight: 600;8    text-align: center;9    transition: all 0.3s ease;10    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3);11}12 13.btn-primary:hover {14    background-color: #4338ca;15    transform: translateY(-2px);16    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);17}18 19.roadmap-card {20    transition: all 0.3s ease;21}22 23.roadmap-card:hover {24    transform: translateY(-5px);25}26 27.progress-bar {28    height: 8px;29    border-radius: 4px;30    background-color: #e0e7ff;31}32 33.progress-fill {34    height: 100%;35    border-radius: 4px;36    background-color: #4f46e5;37    transition: width 0.5s ease;38}39 40/* Responsive adjustments */41@media (max-width: 768px) {42    .roadmap-container {43        grid-template-columns: 1fr;44    }45}