diff --git a/res/Stairway-js.css b/res/Stairway-js.css index c6740b8..f4c8c41 100644 --- a/res/Stairway-js.css +++ b/res/Stairway-js.css @@ -27,6 +27,17 @@ body { #results { display: none; + animation-duration: 1s; + animation-name: fadein; +} + +@keyframes fadein { + from { + opacity: 0; + } + to { + opacity: 1; + } } .warning { @@ -96,6 +107,11 @@ body { display: none; } +#quiz { + animation-duration: 1s; + animation-name: fadein; +} + #quiz-title, #quiz-author { display: none; }