Files
bookshelf/static/css/base.css
night 5d5f26c8ae Initial commit
Photo-based book cataloger with AI identification.
Room → Cabinet → Shelf → Book hierarchy; FastAPI + SQLite backend;
vanilla JS SPA; OpenAI-compatible plugin system for boundary
detection, text recognition, and archive search.
2026-03-09 14:16:23 +03:00

10 lines
374 B
CSS

/*
* base.css
* Global CSS reset, body defaults, and single utility class used throughout
* the app. Must load before all other stylesheets.
*/
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;background:#f1f5f9;color:#1e293b;min-height:100vh}
.hidden{display:none!important}