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.
10 lines
374 B
CSS
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}
|