diff options
author | Hakim El Hattab | 2012-01-03 00:11:05 -0800 |
---|---|---|
committer | Hakim El Hattab | 2012-01-03 00:11:05 -0800 |
commit | 614b8cde660fb78e45b55490d0f6d8aefb9a35d9 (patch) | |
tree | 0194b871da86d1518097b400f6188e6b74d00019 /css | |
parent | 4805234a41d0019096dcd9e70e3d6cfdafbb6b9b (diff) |
scrolling fallback mode for IE < 9
Diffstat (limited to 'css')
-rw-r--r-- | css/main.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/css/main.css b/css/main.css index 2a6b9db..2a590b7 100644 --- a/css/main.css +++ b/css/main.css @@ -872,3 +872,27 @@ html { } +/********************************************* + * FALLBACK + *********************************************/ + +.no-transforms { + overflow-y: auto; +} + +.no-transforms .slides section { + -webkit-transform: none; + -moz-transform: none; + -ms-transform: none; + transform: none; + + display: block!important; + opacity: 1!important; + position: relative!important; +} + + + + + + |