This commit is contained in:
nmemmert
2026-06-08 16:47:21 -04:00
parent 3e1b1e0fae
commit 9ad24df626
6 changed files with 192 additions and 27 deletions
+98 -2
View File
@@ -1650,10 +1650,14 @@
padding: 3.75rem 0 1.75rem;
}
.section-study-classroom .section-inner {
max-width: 1320px;
}
.study-classroom-shell {
display: grid;
grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
gap: 1rem;
grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.9fr);
gap: 1.75rem;
align-items: start;
}
@@ -1732,6 +1736,98 @@
margin-top: 0.5rem;
}
.study-track-switcher {
margin: 1rem 0;
}
.study-track-switcher-tabs {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 0.5rem;
}
.study-track-tab {
display: inline-block;
padding: 0.45rem 1rem;
border-radius: 999px;
border: 1px solid rgba(201, 168, 76, 0.3);
color: var(--brand-muted);
font-size: 0.85rem;
font-family: 'Barlow', sans-serif;
text-decoration: none;
transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.study-track-tab:hover {
background: rgba(201, 168, 76, 0.1);
border-color: rgba(201, 168, 76, 0.6);
color: #e8d8b0;
}
.study-track-tab--active {
background: rgba(201, 168, 76, 0.18);
border-color: var(--brand-gold);
color: var(--brand-gold);
font-weight: 600;
pointer-events: none;
}
.study-notebook {
margin-top: 1rem;
}
.study-notebook-tabs {
display: flex;
flex-wrap: wrap;
gap: 0.3rem;
padding-left: 0.5rem;
}
.study-notebook-tab {
background: rgba(18, 18, 16, 0.6);
border: 1px solid rgba(201, 168, 76, 0.18);
border-bottom: none;
color: var(--brand-muted);
padding: 0.55rem 1.1rem;
border-radius: 10px 10px 0 0;
cursor: pointer;
font-size: 0.82rem;
font-family: 'Barlow', sans-serif;
transition: background 0.18s, color 0.18s;
position: relative;
top: 1px;
}
.study-notebook-tab:hover {
background: rgba(201, 168, 76, 0.1);
color: #e8d8b0;
}
.study-notebook-tab--active {
background: rgba(18, 18, 16, 0.86);
border-color: rgba(201, 168, 76, 0.35);
color: var(--brand-gold);
font-weight: 600;
}
.study-notebook-page {
padding: 1.25rem;
border-radius: 0 12px 12px 12px;
border: 1px solid rgba(201, 168, 76, 0.35);
background: rgba(18, 18, 16, 0.86);
}
.study-notebook-page h3 {
margin: 0.2rem 0 0;
font-family: var(--brand-font-heading);
color: var(--brand-warm-white);
}
.study-notebook-page .study-module-focus {
margin-top: 1rem;
}
.study-classroom-sidebar {
position: sticky;
top: 5.75rem;