now capturing data-state on slides and lifting it to document element classList when slide is open

This commit is contained in:
Hakim El Hattab
2012-03-30 00:13:45 -04:00
parent 0cd3b8d430
commit 831236890c
4 changed files with 58 additions and 3 deletions

View File

@ -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;
}