/* The only stylesheet the HTML links to. Order matters: tokens define the
   variables everything else reads, base sets element defaults, then components
   layer on top.

   @import means each file is a separate request, which is fine at this size and
   on HTTP/2. If the CSS ever grows enough that this shows up in load times,
   concatenate at deploy rather than moving rules back into the HTML. */

@import url("./tokens.css");
@import url("./base.css");
@import url("./layout.css");
@import url("./forms.css");
@import url("./preview.css");
@import url("./tiles.css");
@import url("./panels.css");
@import url("./wheel.css");
@import url("./reading.css");
