Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
117 changes: 0 additions & 117 deletions courses.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,123 +4,6 @@ title-block-banner: true
toc: true
---

```{=html}
<style>
.course-card {
background: white;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
padding: 1.5rem;
margin-bottom: 2rem;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.course-title {
color: #2c5282;
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 1rem;
}

.course-description {
color: #4a5568;
line-height: 1.6;
margin-bottom: 1rem;
}

.course-link {
background: #3182ce;
color: white;
padding: 0.5rem 1rem;
border-radius: 6px;
text-decoration: none;
font-size: 0.9rem;
display: inline-block;
transition: all 0.2s ease;
}

.course-link:hover {
background: #2c5282;
color: white;
text-decoration: none;
}

.section-header {
color: #2d3748;
border-bottom: 3px solid #3182ce;
padding-bottom: 0.5rem;
margin: 3rem 0 2rem 0;
}

.content-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}

.content-card {
background: #f7fafc;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 1.5rem;
transition: transform 0.2s ease;
}

.content-card:hover {
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.content-title {
font-weight: 600;
color: #2d3748;
margin-bottom: 0.5rem;
}

.content-link {
color: #3182ce;
text-decoration: none;
font-size: 0.9rem;
padding: 0.25rem 0.5rem;
border: 1px solid #bee3f8;
border-radius: 4px;
transition: all 0.2s ease;
}

.content-link:hover {
background: #3182ce;
color: white;
text-decoration: none;
}

@media (max-width: 768px) {
.content-grid {
grid-template-columns: 1fr;
}
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
.course-card {
background: #2d3748;
color: #e2e8f0;
}

.content-card {
background: #4a5568;
border-color: #718096;
color: #e2e8f0;
}
}
</style>
```

We are involved in a variety of courses. Here are a few.

# UW 10-week courses {.section-header}
Expand Down
Loading
Loading