This commit is contained in:
sky
2025-11-19 12:05:45 -05:00
parent ef7c90840b
commit 9e022b2745
2 changed files with 66 additions and 0 deletions

View File

@ -164,3 +164,22 @@ footer {
grid-template-columns: 1fr;
}
}
/* Learning Paths */
.paths-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.path-card {
background-color: #e8f4f8;
padding: 1.5rem;
border-radius: 8px;
border-left: 4px solid var(--secondary-color);
}
.path-card h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}