/* The stylesheet, assembled.
 *
 * Split by what a rule is about rather than by cascade layer: a change to how
 * the reading view looks touches one file, and that file holds the reasoning
 * for the whole view. Import order is the cascade order — base.css defines the
 * tokens the rest use, so it comes first; everything after is disjoint by
 * selector and can be read in any order.
 *
 * Unbundled on purpose. There is no build step in this app, and on the LAN the
 * six extra requests cost nothing next to being able to open the file that
 * matches the thing on screen.
 */

@import url("css/base.css");
@import url("css/today.css");
@import url("css/charts.css");
@import url("css/works.css");
@import url("css/books.css");
@import url("css/forms.css");
@import url("css/kanji.css");
@import url("css/vocab.css");
@import url("css/tokenize.css");
@import url("css/reader.css");
