Goondex/internal/web/static/css/gx/GX_Toggle.html
Stu Leak 16fb407a3c v0.1.0-dev4: Add web frontend with UI component library
- Implement full web interface with Go html/template server
- Add GX component library (buttons, dialogs, tables, forms, etc.)
- Create scene/performer/studio/movie detail and listing pages
- Add Adult Empire scraper for additional metadata sources
- Implement movie support with database schema
- Add import and sync services for data management
- Include comprehensive API and frontend documentation
- Add custom color scheme and responsive layout

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-17 10:47:30 -05:00

28 lines
774 B
HTML

<div style="background:#0A0A0C; padding: 2rem; color:white; display:flex; flex-direction:column; gap:1.5rem;">
<label class="gx-toggle">
<input type="checkbox" checked>
<div class="gx-toggle-track">
<div class="gx-toggle-thumb"></div>
</div>
<span>Enable Autosync</span>
</label>
<label class="gx-toggle">
<input type="checkbox">
<div class="gx-toggle-track">
<div class="gx-toggle-thumb"></div>
</div>
<span>Night Mode</span>
</label>
<label class="gx-toggle">
<input type="checkbox" disabled>
<div class="gx-toggle-track">
<div class="gx-toggle-thumb"></div>
</div>
<span>Disabled Setting</span>
</label>
</div>