/*
   details-summary-animation.css

   Copyleft 🄯 2021 Taiji Yamada <taiji@aihara.co.jp>

   usage: requires default-details-summary.css
*/
@media screen {
details:not(.horizontally):not(.diagonally)[open]:not(.noanimation) > summary ~ * {
  animation: details-vertically-open 1.6s ease;
}
details.horizontally[open]:not(.noanimation) > summary ~ * {
  animation: details-horizontally-open 1.6s ease;
}
details.diagonally[open]:not(.noanimation) > summary ~ * {
  animation: details-diagonally-open 1.6s ease;
}
}
