Styling Reference
Responsive Size Reference
Breakpoint sizes are based on browser width. Base styles are for mobile (<768px), `md` is for tablets/landscape (>=768px), and `lg` is for desktops (>=1024px).
| UI Element | Mobile (<768px) | Tablet (>=768px) | Desktop (>=1024px) | File Location |
|---|---|---|---|---|
| Quiz Answer Buttons | h-32 w-32 | h-40 w-40 | h-48 w-48 | src/app/[lang]/book/[id]/page.tsx |
| Book Cover on Home | aspect-[2/3] w-full | aspect-[2/3] w-full | aspect-[2/3] w-full | src/app/[lang]/page.tsx |
| Navigation/Play Buttons | h-14 w-14 | h-16 w-16 | h-20 w-20 | src/app/[lang]/book/[id]/page.tsx |
Font Size Reference
Reference for dynamic font sizes used in the application.
| UI Element | Mobile (<768px) | Tablet (>=768px) | Desktop (>=1024px) | File Location |
|---|---|---|---|---|
| Book Title (on Cover) | text-4xl | text-5xl | text-6xl | src/app/[lang]/book/[id]/page.tsx |
| Slide Text | text-2xl | text-2xl | text-4xl | src/app/[lang]/book/[id]/page.tsx |
| Quiz Question | text-xl | text-2xl | text-3xl | src/app/[lang]/book/[id]/page.tsx |
| Home Page Category Title | text-3xl | text-3xl | text-3xl | src/app/[lang]/page.tsx |
| Home Page Book Title | text-base | text-base | text-base | src/app/[lang]/page.tsx |
Tailwind CSS Sizing Guide
Quick reference for Tailwind CSS sizing utility classes and their pixel values used in this app.
| Utility Class | Value |
|---|---|
| h-8 / w-8 | 2rem (32px) |
| h-10 / w-10 | 2.5rem (40px) |
| h-12 / w-12 | 3rem (48px) |
| h-14 / w-14 | 3.5rem (56px) |
| h-16 / w-16 | 4rem (64px) |
| h-20 / w-20 | 5rem (80px) |
| h-24 / w-24 | 6rem (96px) |
| h-32 / w-32 | 8rem (128px) |
| h-40 / w-40 | 10rem (160px) |
| h-48 / w-48 | 12rem (192px) |
Tailwind CSS Font Size Guide
Quick reference for Tailwind CSS font-size utility classes and their pixel values.
| Utility Class | Value |
|---|---|
| text-xs | 0.75rem (12px) |
| text-sm | 0.875rem (14px) |
| text-base | 1rem (16px) |
| text-lg | 1.125rem (18px) |
| text-xl | 1.25rem (20px) |
| text-2xl | 1.5rem (24px) |
| text-3xl | 1.875rem (30px) |
| text-4xl | 2.25rem (36px) |
| text-5xl | 3rem (48px) |
| text-6xl | 3.75rem (60px) |