aboutsummaryrefslogtreecommitdiffhomepage
path: root/css
diff options
context:
space:
mode:
authorHakim El Hattab2012-03-30 00:13:45 -0400
committerHakim El Hattab2012-03-30 00:13:45 -0400
commit831236890c0d8c4d469cf4eb01b0e7be13de63d5 (patch)
treeccc10e2cf74edc9694139772e5c3d32604e648c2 /css
parent0cd3b8d4309b20c189cc4c7c8a5e56d7e47d594b (diff)
now capturing data-state on slides and lifting it to document element classList when slide is open
Diffstat (limited to 'css')
-rw-r--r--css/main.css23
1 files changed, 23 insertions, 0 deletions
diff --git a/css/main.css b/css/main.css
index 2bff45d..6269d24 100644
--- a/css/main.css
+++ b/css/main.css
@@ -897,6 +897,29 @@ html {
}
+/*********************************************
+ * STATES
+ *********************************************/
+
+.blur body {
+
+}
+
+.blur #reveal * {
+ color: rgba( 255, 255, 255, 0 );
+ text-shadow: 0px 0px 5px #fff;
+
+ -webkit-transition: color .8s ease,
+ text-shadow .8s ease;
+ -moz-transition: color .8s ease,
+ text-shadow .8s ease;
+ -ms-transition: color .8s ease,
+ text-shadow .8s ease;
+ -o-transition: color .8s ease,
+ text-shadow .8s ease;
+ transition: color .8s ease,
+ text-shadow .8s ease;
+}