Algebra I
Open · 6 seatsLinear equations through quadratics. Placement test required.
- Teacher
- R. Vasquez
- Schedule
- Mon–Thu, Period 2
- Enrolled
- 26 / 32 enrolled
Sample — the format, not the finished guide
One page from the style guide you would receive. Every value comes from
tailwind.config.js — nothing is retyped in markup.
Each component is shown in every state, with the exact classes underneath, ready to copy.
Defined once in tailwind.config.js. A developer never types a hex code.
Text colors are chosen to pass WCAG AA on their intended backgrounds: ink-900 and ink-700 on white, white on primary-600, danger-700 and success-700 on their 100 tints.
text-display · 36px / 1.15
text-title · 22px / 1.3
text-base · 16px / 1.5
text-sm · 14px / 1.43
Tailwind's 4px scale, unchanged. Controls share one radius token, rounded-ctl (8px), so buttons and inputs always match.
Every field has a real label. Errors are tied to their field with aria-describedby, so screen readers announce them too.
Default — click in to see focus.
Enter a full email address, like name@school.edu.
ID found — Grade 9, Lincoln campus.
Disabled — set by the district admin.
<!-- Field with error -->
<label for="email" class="block text-sm font-medium">Guardian email</label>
<input id="email" type="email" aria-invalid="true" aria-describedby="email-msg"
class="mt-1.5 w-full rounded-ctl border-2 border-danger-700 px-3.5 py-2.5 text-sm
focus:outline-none focus:ring-2 focus:ring-danger-700">
<p id="email-msg" class="mt-1.5 text-[13px] font-medium text-danger-700">
Enter a full email address, like name@school.edu.
</p>
The same card holds a course, a teacher or an announcement. One pattern, reused.
Linear equations through quadratics. Placement test required.
Cells to ecosystems, with a weekly lab block.
Content sits in a 4 / 8 / 12 column grid: single column on phones, two at sm, three at md. Resize the window to watch it reflow.
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4">…</div>