rustio-admin 0.32.0

Django Admin, but for Rust. A small, focused admin framework.
Documentation
/* ============================================================
   RustIO — Motion tokens
   Calm and engineered. One orchestrated reveal max.
   Respect prefers-reduced-motion.
   ============================================================ */

:root {
  --rio-dur-fast:  120ms; /* @kind other */
  --rio-dur-base:  180ms; /* @kind other */
  --rio-dur-slow:  260ms; /* @kind other */
  --rio-dur-sweep: 1600ms; /* @kind other */

  --rio-ease:        cubic-bezier(0.2, 0.7, 0.2, 1);   /* @kind other */
  --rio-ease-in:     cubic-bezier(0.4, 0, 1, 1);       /* @kind other */
  --rio-ease-out:    cubic-bezier(0, 0, 0.2, 1);       /* @kind other */
  --rio-ease-sweep:  cubic-bezier(0.45, 0, 0.55, 1);   /* @kind other */
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --rio-dur-fast:  0ms; /* @kind other */
    --rio-dur-base:  0ms; /* @kind other */
    --rio-dur-slow:  0ms; /* @kind other */
  }
}