From 64c8d6328a9d0e4fe68a5899e3e8710342f3b7dd Mon Sep 17 00:00:00 2001 From: Eric Bidelman Date: Tue, 17 Apr 2012 18:59:07 -0700 Subject: Basic presenter mode working --- theme/sass/_base.scss | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'theme/sass/_base.scss') diff --git a/theme/sass/_base.scss b/theme/sass/_base.scss index b301396..265b77e 100644 --- a/theme/sass/_base.scss +++ b/theme/sass/_base.scss @@ -48,8 +48,7 @@ body { margin: 0; padding: 0; - //display: block !important; - opacity: 1 !important; + opacity: 0; height: 100%; min-height: 740px; @@ -59,7 +58,11 @@ body { color: #fff; @include font-smoothing(antialiased); - @include transition(opacity 800ms ease-in); + @include transition(opacity 800ms ease-in 100ms); // Add small delay to prevent jank. + + &.loaded { + opacity: 1; + } } slides > slide[hidden] { -- cgit v1.2.3