|
|
|
@ -954,22 +954,38 @@ button.button-block {
|
|
|
|
|
opacity: 1; |
|
|
|
|
} |
|
|
|
|
.content.slide { |
|
|
|
|
z-index: 2; |
|
|
|
|
-webkit-transition-timing-function: cubic-bezier(0.1, 0.7, 0.1, 1); |
|
|
|
|
-webkit-transform: translate3d(0, 0, 0); |
|
|
|
|
transform: translate3d(0, 0, 0); |
|
|
|
|
-webkit-transition: -webkit-transform .3s; |
|
|
|
|
transition: transform .3s; |
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); |
|
|
|
|
z-index: 2; |
|
|
|
|
-webkit-transition: -webkit-transform 400ms; |
|
|
|
|
transition: transform 400ms; |
|
|
|
|
} |
|
|
|
|
.content.slide.sliding-in.top, .content.slide.right:not([class*="sliding-in"]) { |
|
|
|
|
-webkit-animation-name: fadeOverlay; |
|
|
|
|
animation-name: fadeOverlay; |
|
|
|
|
-webkit-animation-duration: 400ms; |
|
|
|
|
} |
|
|
|
|
.content.slide.right:not([class*="sliding-in"]) { |
|
|
|
|
-webkit-animation-direction: reverse; |
|
|
|
|
} |
|
|
|
|
.content.slide.left { |
|
|
|
|
z-index: 1; |
|
|
|
|
box-shadow: none; |
|
|
|
|
-webkit-transform: translate3d(-60%, 0, 0); |
|
|
|
|
transform: translate3d(-60%, 0, 0); |
|
|
|
|
-webkit-transform: translate3d(-20%, 0, 0); |
|
|
|
|
transform: translate3d(-20%, 0, 0); |
|
|
|
|
} |
|
|
|
|
.content.slide.right { |
|
|
|
|
z-index: 3; |
|
|
|
|
-webkit-transform: translate3d(100%, 0, 0); |
|
|
|
|
transform: translate3d(100%, 0, 0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@-webkit-keyframes fadeOverlay { |
|
|
|
|
from { |
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0), -320px 0 0 rgba(0, 0, 0, 0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
to { |
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), -320px 0 0 rgba(0, 0, 0, 0.1); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|