meetyou-gulp
Version:
This is a gulp task collection for MeetYou.
1,136 lines (1,127 loc) • 24.4 kB
CSS
/* Datewheel overlay */
.dw {
position: absolute;
left: 0;
z-index: 1001;
color: #000;
font-size: 12px;
text-shadow: none;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-ms-touch-action: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.dwi {
position: static;
margin: 5px;
display: inline-block;
}
.dwwr {
min-width: 300px;
zoom: 1;
padding: 0 10px;
text-align: center;
border-bottom: 1px solid rgba(40,193,250,0.1);
/* height: 30px; */
}
/* Datewheel overlay background */
.dw-persp, .dwo {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1001;
}
.dwo {
background: #000;
opacity: .7;
filter: Alpha(Opacity=70);
}
/* Bubble positionings */
.dw-bubble .dw {
margin: 20px 0;
}
.dw-bubble .dw-arrw {
position: absolute;
left: 0;
width: 100%;
}
.dw-bubble-top .dw-arrw {
bottom: -36px;
}
.dw-bubble-bottom .dw-arrw {
top: -36px;
}
.dw-bubble .dw-arrw-i {
margin: 0 30px;
position: relative;
height: 36px;
}
.dw-bubble .dw-arr {
display: block;
}
.dw-arr {
display: none;
position: absolute;
left: 0;
width: 0;
height: 0;
border-width: 18px 18px;
border-style: solid;
margin-left: -18px;
}
.dw-bubble-bottom .dw-arr {
top: 0;
border-color: transparent transparent #fff transparent;
}
.dw-bubble-top .dw-arr {
bottom: 0;
border-color: #fff transparent transparent transparent;
}
/* Datewheel wheel container wrapper */
.dwc {
float: none;
margin: 0 2px 5px 2px;
padding-top: 15px;
display: inline-block;
}
.dwcc {
clear: both;
}
/* Datewheel label */
.dwl {
text-align: center;
line-height: 30px;
height: 30px;
white-space: nowrap;
position: absolute;
top: -30px;
width: 100%;
}
/* Datewheel wheel container */
.dwrc {
-webkit-border-radius: 3px;
border-radius: 3px;
}
.dwwc {
margin: 0;
padding: 0 2px;
position: relative;
background: #000;
zoom: 1;
}
/* Datewheel wheels */
.dwwl {
margin: 4px 2px;
position: relative;
z-index: 5;
}
.dww {
margin: 0 2px;
overflow: hidden;
position: relative;
}
.dwsc .dwwl {
background: #888;
background: linear-gradient(#000 0%,#333 35%, #888 50%,#333 65%,#000 100%);
background: -webkit-gradient(linear,left bottom,left top,from(#000),color-stop(0.35, #333),color-stop(0.50, #888),color-stop(0.65, #333),to(#000));
background: -moz-linear-gradient(#000 0%,#333 35%, #888 50%,#333 65%,#000 100%);
background: -o-linear-gradient(#000 0%,#333 35%, #888 50%,#333 65%,#000 100%);
}
.dwsc .dww {
color: #fff;
background: #444;
background: linear-gradient(#000 0%,#444 45%, #444 55%, #000 100%);
background: -webkit-gradient(linear,left bottom,left top,from(#000),color-stop(0.45, #444),color-stop(0.55, #444),to(#000));
background: -moz-linear-gradient(#000 0%,#444 45%, #444 55%, #000 100%);
background: -o-linear-gradient(#000 0%,#444 45%, #444 55%, #000 100%);
}
.dw-bf {
-webkit-perspective: 1000;
-webkit-backface-visibility: hidden;
}
.dw-ul {
position: relative;
z-index: 2;
}
.dw-li {
padding: 0 5px;
display: block;
text-align: center;
line-height: 40px;
font-size: 26px;
white-space: nowrap;
text-shadow: 0 1px 1px #000;
vertical-align: bottom;
opacity: .3;
filter: Alpha(Opacity=30);
}
/* Higlighted */
.dw-li.dw-hl {
background: #fff;
background: rgba(255,255,255,.3);
}
/* Valid entry */
.dw-li.dw-v {
opacity: 1;
filter: Alpha(Opacity=100);
}
/* Hidden entry */
.dw-li.dw-h {
visibility: hidden;
}
.dw-i {
position: relative;
height: 100%;
}
/* Wheel +/- buttons */
.dwwb {
position: absolute;
z-index: 4;
left: 0;
cursor: pointer;
width: 100%;
height: 40px;
text-align: center;
opacity: 1;
transition: opacity .2s linear;
-webkit-transition: opacity .2s linear;
}
.dwa .dwwb {
opacity: 0;
}
.dwwbp {
top: 0;
-webkit-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
font-size: 40px;
}
.dwwbm {
bottom: 0;
-webkit-border-radius: 0 0 3px 3px;
border-radius: 0 0 3px 3px;
font-size: 32px;
font-weight: bold;
}
.dwpm .dwwc {
background: transparent;
}
.dwpm .dww {
margin: 0;
}
.dwpm .dw-li {
text-shadow: none;
}
.dwpm .dwwol {
display: none;
}
/* Datewheel wheel overlay */
.dwwo {
position: absolute;
z-index: 3;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(#000 0%,rgba(44,44,44,0) 52%, rgba(44,44,44,0) 48%, #000 100%);
background: -webkit-gradient(linear,left bottom,left top,from(#000),color-stop(0.52, rgba(44,44,44,0)),color-stop(0.48, rgba(44,44,44,0)),to(#000));
background: -moz-linear-gradient(#000 0%,rgba(44,44,44,0) 52%, rgba(44,44,44,0) 48%, #000 100%);
background: -o-linear-gradient(#000 0%,rgba(44,44,44,0) 52%, rgba(44,44,44,0) 48%, #000 100%);
}
/* Background line */
.dwwol {
position: absolute;
z-index: 1;
top: 50%;
left: 0;
width: 100%;
height: 0;
margin-top: -1px;
}
/* Datewheel button */
.dwbg .dwb {
cursor: pointer;
overflow: hidden;
display: block;
height: 40px;
line-height: 40px;
padding: 0 15px;
margin: 0 2px;
font-size: 14px;
font-weight: bold;
text-decoration: none;
text-shadow: 0 -1px 1px #000;
border-radius: 5px;
box-shadow: 0 1px 3px rgba(0,0,0,0.5);
color: #fff;
background: #000;
background: linear-gradient(#6e6e6e 50%,#000 50%);
background: -webkit-gradient(linear,left bottom,left top,color-stop(0.5, #000),color-stop(0.5, #6e6e6e));
background: -moz-linear-gradient(#6e6e6e 50%,#000 50%);
background: -o-linear-gradient(#6e6e6e 50%,#000 50%);
white-space: nowrap;
text-overflow: ellipsis;
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
-webkit-border-radius: 5px;
}
/* Datewheel button container */
.dwbc {
padding: 5px 0;
text-align: center;
clear: both;
}
.dwbc:after {
content: '';
display: block;
clear: both;
}
/* Datewheel button wrapper */
.dwbw {
display: inline-block;
width: 90px;
position: relative;
z-index: 5;
}
.dwbc-p .dwbw {
width: 33.33%;
}
/* Hidden label */
.dwhl {
padding-top: 10px;
}
.dwhl .dwl {
display: none;
}
/* Multiple selection */
.dwms .dwwms .dw-li {
padding: 0 40px;
position: relative;
}
.dwms .dw-msel:after {
width: 40px;
text-align: center;
position: absolute;
top: 0;
left: 0;
content: '?';
}
/* Backgrounds */
.dwbg {
background: #fff;
width: 100%;
}
/* Android ICS skin */
.android-ics .dw {
padding: 0;
color: #ff83bb;
background: #292829;
}
.android-ics .dw .dwwc,
.android-ics .dw .dwwl,
.android-ics .dw .dww,
.android-ics .dw .dwb-c .dwb,
.android-ics .dw .dwpm .dww {
background: none;
}
.android-ics .dwwr {
padding: 0;
}
.android-ics .dwc {
margin: 0;
width: 100%;
}
.android-ics .dwc table{width: 100%;}
.android-ics .dwhl {
padding: 1px 10px;
}
.android-ics .dwwl {
margin: 0 2px;
}
.android-ics .dww,
.android-ics .dw .dwpm .dwwl,
.android-ics .dw .dwpm .dww {
border: 0;
}
.android-ics .dww .dw-li {
color: #fff;
font-size: 18px;
text-shadow: none;
}
.android-ics .dwwb span {
display: none;
}
.android-ics .dwwb:after {
position: absolute;
top: 50%;
left: 50%;
margin-top: -8px;
margin-left: -8px;
color: #7e7e7e;
width: 0;
height: 0;
border-width: 8px;
border-style: solid;
content: '';
}
.android-ics .dwwbm {
top: 0;
bottom: auto;
}
.android-ics .dwwbp {
bottom: 0;
top: auto;
}
.android-ics .dwwbm:after {
border-color: transparent transparent #7e7e7e transparent;
}
.android-ics .dwwbp:after {
border-color: #7e7e7e transparent transparent transparent;
}
.android-ics .dw .dwb {
height: 30px;
line-height: 30px;
padding: 0;
margin: 0;
font-weight: normal;
text-shadow: none;
box-shadow: none;
-webkit-box-shadow: none;
}
.android-ics .dw .dwb-a {
background: #ff5072;
}
/* Docked */
.android-ics.dw-bottom .dw, .android-ics.dw-top .dw {
border-radius: 0;
-webkit-border-radius: 0;
}
/* Multiple select */
.android-ics .dwwms .dwwol {
display: none;
}
.android-ics .dwwms .dw-li {
padding-left: 5px;
padding-right: 36px;
}
.android-ics .dwwms .dw-li:after {
content: '';
position: absolute;
top: 50%;
left: auto;
right: 10px;
width: 14px;
height: 14px;
margin-top: -9px;
color: #31b6e7;
line-height: 14px;
border: 1px solid #424542;
text-shadow: 0 0 5px #29799c;
}
.android-ics .dwwms .dw-msel:after {
content: '?';
}
/* Light version */
.android-ics.light .dw {
background: #f5f5f5;
height: 235px;
}
.android-ics.light .dww .dw-li {
color: #000;
}
.android-ics.light .dww .dw-sel{color: #ff6090;}
.android-ics.light .dwwo {
background: linear-gradient(#f5f5f5 0%,rgba(245,245,245,0) 52%, rgba(245,245,245,0) 48%, #f5f5f5 100%);
background: -webkit-gradient(linear,left bottom,left top,from(#f5f5f5),color-stop(0.52, rgba(245,245,245,0)),color-stop(0.48, rgba(245,245,245,0)),to(#f5f5f5));
background: -moz-linear-gradient(#f5f5f5 0%,rgba(245,245,245,0) 52%, rgba(245,245,245,0) 48%, #f5f5f5 100%);
background: -o-linear-gradient(#f5f5f5 0%,rgba(245,245,245,0) 52%, rgba(245,245,245,0) 48%, #f5f5f5 100%);
}
.android-ics.light .dw .dwwb {
background: #f5f5f5;
color: #f5f5f5;
}
.android-ics.light .dwb {
color: #ff83bb;
}
.android-ics.light .dwb-c .dwb-a {
color: #ff509f;
background-color: #e6e6e6;
border-color: #ff509f;
}
.dwb-s{float: right; margin-right: 15px;}
.dwb-c{float: left;margin-left: 15px;}
.dwb-s .dwb,.dwb-c .dwb{
border: 1px solid #ff83bb;
border-radius: 5px;
-webkit-border-radius: 15px;
}
.android-ics.light .dwb-s .dwb{
background: #ff83bb; color: #fff;
}
.android-ics.light .dwb-s .dwb-a {
color: #e6e6e6;
background-color: #ff509f;
border-color: #ff509f;
}
/* Bubble positioning */
.android-ics .dw-bubble-bottom .dw-arr {
border-color: transparent transparent #292829 transparent;
}
.android-ics .dw-bubble-top .dw-arr {
border-color: #292829 transparent transparent transparent;
}
/* Bubble positioning */
.android-ics.light .dw-bubble-bottom .dw-arr {
border-color: transparent transparent #f5f5f5 transparent;
}
.android-ics.light .dw-bubble-top .dw-arr {
border-color: #f5f5f5 transparent transparent transparent;
}
/* Multiple select */
.android-ics.light .dwwms .dw-li:after {
text-shadow: 0 0 5px #31b6e7;
}
.dw-trans .dw-persp {
overflow: hidden;
perspective: 1000;
-webkit-perspective: 1000;
-moz-perspective: 1000;
}
.dw-trans .dwwb {
-webkit-backface-visibility: hidden;
}
.dw-in {
animation-timing-function: ease-out;
animation-duration: 350ms;
-webkit-animation-timing-function: ease-out;
-webkit-animation-duration: 350ms;
-moz-animation-timing-function: ease-out;
-moz-animation-duration: 350ms;
}
.dw-out {
animation-timing-function: ease-in;
animation-duration: 350ms;
-webkit-animation-timing-function: ease-in;
-webkit-animation-duration: 350ms;
-moz-animation-timing-function: ease-in;
-moz-animation-duration: 350ms;
}
.dw-flip,
.dw-swing,
.dw-slidehorizontal,
.dw-slidevertical,
.dw-slidedown,
.dw-slideup,
.dw-fade {
backface-visibility: hidden;
transform: translateX(0);
-webkit-backface-visibility: hidden;
-webkit-transform: translateX(0);
-moz-backface-visibility: hidden;
-moz-transform: translateX(0);
}
.dw-swing,
.dw-slidehorizontal,
.dw-slidevertical,
.dw-slidedown,
.dw-slideup,
.dw-fade {
transform-origin: 0 0;
-webkit-transform-origin: 0 0;
-moz-transform-origin: 0 0;
}
.dw-flip,
.dw-pop {
transform-origin: 50% 50%;
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
}
.dw-pop.dw-in {
opacity: 1;
transform: scale(1);
animation-name: dw-p-in;
-webkit-animation-name: dw-p-in;
-webkit-transform: scale(1);
-moz-animation-name: dw-p-in;
-moz-transform: scale(1);
}
.dw-pop.dw-out {
opacity: 0;
animation-name: dw-p-out;
-webkit-animation-name: dw-p-out;
-moz-animation-name: dw-p-out;
}
.dw-flip.dw-in {
opacity: 1;
transform: scale(1);
animation-name: dw-fl-in;
-webkit-animation-name: dw-fl-in;
-webkit-transform: scale(1);
-moz-animation-name: dw-fl-in;
-moz-transform: scale(1);
}
.dw-flip.dw-out {
opacity: 0;
animation-name: dw-fl-out;
-webkit-animation-name: dw-fl-out;
-moz-animation-name: dw-fl-out;
}
.dw-swing.dw-in {
opacity: 1;
transform: scale(1);
animation-name: dw-sw-in;
-webkit-animation-name: dw-sw-in;
-webkit-transform: scale(1);
-moz-animation-name: dw-sw-in;
-moz-transform: scale(1);
}
.dw-swing.dw-out {
opacity: 0;
animation-name: dw-sw-out;
-webkit-animation-name: dw-sw-out;
-moz-animation-name: dw-sw-out;
}
.dw-slidehorizontal.dw-in {
opacity: 1;
transform: scale(1);
animation-name: dw-sh-in;
-webkit-animation-name: dw-sh-in;
-webkit-transform: scale(1);
-moz-animation-name: dw-sh-in;
-moz-transform: scale(1);
}
.dw-slidehorizontal.dw-out {
opacity: 0;
animation-name: dw-sh-out;
-webkit-animation-name: dw-sh-out;
-moz-animation-name: dw-sh-out;
}
.dw-slidevertical.dw-in {
opacity: 1;
animation-name: dw-dw-sv-in;
transform: scale(1);
-webkit-animation-name: dw-dw-sv-in;
-webkit-transform: scale(1);
-moz-animation-name: dw-dw-sv-in;
-moz-transform: scale(1);
}
.dw-slidevertical.dw-out {
opacity: 0;
animation-name: dw-sv-out;
-webkit-animation-name: dw-sv-out;
-moz-animation-name: dw-sv-out;
}
.dw-slidedown.dw-in {
animation-name: dw-sd-in;
transform: scale(1);
-webkit-animation-name: dw-sd-in;
-webkit-transform: scale(1);
-moz-animation-name: dw-sd-in;
-moz-transform: scale(1);
}
.dw-slidedown.dw-out {
animation-name: dw-sd-out;
-webkit-animation-name: dw-sd-out;
-moz-animation-name: dw-sd-out;
}
.dw-slideup.dw-in {
transform: scale(1);
animation-name: dw-su-in;
-webkit-animation-name: dw-su-in;
-webkit-transform: scale(1);
-moz-animation-name: dw-su-in;
-moz-transform: scale(1);
}
.dw-slideup.dw-out {
animation-name: dw-su-out;
-webkit-animation-name: dw-su-out;
-moz-animation-name: dw-su-out;
}
.dw-fade.dw-in {
opacity: 1;
animation-name: dw-f-in;
-webkit-animation-name: dw-f-in;
-moz-animation-name: dw-f-in;
}
.dw-fade.dw-out {
opacity: 0;
animation-name: dw-f-out;
-webkit-animation-name: dw-f-out;
-moz-animation-name: dw-f-out;
}
.dw-sel {
font-size: 24px ;
color: #ff83bb ;
}
/* Fade in */
@keyframes dw-f-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes dw-f-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-moz-keyframes dw-f-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Fade out */
@keyframes dw-f-out {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@-webkit-keyframes dw-f-out {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@-moz-keyframes dw-f-out {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
/* Pop in */
@keyframes dw-p-in {
from {
opacity: 0;
transform: scale(0.8);
}
to {
opacity: 1;
transform: scale(1);
}
}
@-webkit-keyframes dw-p-in {
from {
opacity: 0;
-webkit-transform: scale(0.8);
}
to {
opacity: 1;
-webkit-transform: scale(1);
}
}
@-moz-keyframes dw-p-in {
from {
opacity: 0;
-moz-transform: scale(0.8);
}
to {
opacity: 1;
-moz-transform: scale(1);
}
}
/* Pop out */
@keyframes dw-p-out {
from {
opacity: 1;
transform: scale(1);
}
to {
opacity: 0;
transform: scale(0.8);
}
}
@-webkit-keyframes dw-p-out {
from {
opacity: 1;
-webkit-transform: scale(1);
}
to {
opacity: 0;
-webkit-transform: scale(0.8);
}
}
@-moz-keyframes dw-p-out {
from {
opacity: 1;
-moz-transform: scale(1);
}
to {
opacity: 0;
-moz-transform: scale(0.8);
}
}
/* Flip in */
@keyframes dw-fl-in {
from {
opacity: 0;
transform: rotateY(90deg);
}
to {
opacity: 1;
transform: rotateY(0);
}
}
@-webkit-keyframes dw-fl-in {
from {
opacity: 0;
-webkit-transform: rotateY(90deg);
}
to {
opacity: 1;
-webkit-transform: rotateY(0);
}
}
@-moz-keyframes dw-fl-in {
from {
opacity: 0;
-moz-transform: rotateY(90deg);
}
to {
opacity: 1;
-moz-transform: rotateY(0);
}
}
/* Flip out */
@keyframes dw-fl-out {
from {
opacity: 1;
transform: rotateY(0deg);
}
to {
opacity: 0;
transform: rotateY(-90deg);
}
}
@-webkit-keyframes dw-fl-out {
from {
opacity: 1;
-webkit-transform: rotateY(0deg);
}
to {
opacity: 0;
-webkit-transform: rotateY(-90deg);
}
}
@-moz-keyframes dw-fl-out {
from {
opacity: 1;
-moz-transform: rotateY(0deg);
}
to {
opacity: 0;
-moz-transform: rotateY(-90deg);
}
}
/* Swing in */
@keyframes dw-sw-in {
from {
opacity: 0;
transform: rotateY(-90deg);
}
to {
opacity: 1;
transform: rotateY(0deg);
}
}
@-webkit-keyframes dw-sw-in {
from {
opacity: 0;
-webkit-transform: rotateY(-90deg);
}
to {
opacity: 1;
-webkit-transform: rotateY(0deg);
}
}
@-moz-keyframes dw-sw-in {
from {
opacity: 0;
-moz-transform: rotateY(-90deg);
}
to {
opacity: 1;
-moz-transform: rotateY(0deg);
}
}
/* Swing out */
@keyframes dw-sw-out {
from {
opacity: 1;
transform: rotateY(0deg);
}
to {
opacity: 0;
transform: rotateY(-90deg);
}
}
@-webkit-keyframes dw-sw-out {
from {
opacity: 1;
-webkit-transform: rotateY(0deg);
}
to {
opacity: 0;
-webkit-transform: rotateY(-90deg);
}
}
@-moz-keyframes dw-sw-out {
from {
opacity: 1;
-moz-transform: rotateY(0deg);
}
to {
opacity: 0;
-moz-transform: rotateY(-90deg);
}
}
/* Slide horizontal in */
@keyframes dw-sh-in {
from {
opacity: 0;
transform: translateX(-100%);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@-webkit-keyframes dw-sh-in {
from {
opacity: 0;
-webkit-transform: translateX(-100%);
}
to {
opacity: 1;
-webkit-transform: translateX(0);
}
}
@-moz-keyframes dw-sh-in {
from {
opacity: 0;
-moz-transform: translateX(-100%);
}
to {
opacity: 1;
-moz-transform: translateX(0);
}
}
/* Slide horizontal out */
@keyframes dw-sh-out {
from {
opacity: 1;
transform: translateX(0);
}
to {
opacity: 0;
transform: translateX(100%);
}
}
@-webkit-keyframes dw-sh-out {
from {
opacity: 1;
-webkit-transform: translateX(0);
}
to {
opacity: 0;
-webkit-transform: translateX(100%);
}
}
@-moz-keyframes dw-sh-out {
from {
opacity: 1;
-moz-transform: translateX(0);
}
to {
opacity: 0;
-moz-transform: translateX(100%);
}
}
/* Slide vertical in */
@keyframes dw-dw-sv-in {
from {
opacity: 0;
transform: translateY(-100%);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@-webkit-keyframes dw-dw-sv-in {
from {
opacity: 0;
-webkit-transform: translateY(-100%);
}
to {
opacity: 1;
-webkit-transform: translateY(0);
}
}
@-moz-keyframes dw-dw-sv-in {
from {
opacity: 0;
-moz-transform: translateY(-100%);
}
to {
opacity: 1;
-moz-transform: translateY(0);
}
}
/* Slide vertical out */
@keyframes dw-sv-out {
from {
opacity: 1;
transform: translateY(0);
}
to {
opacity: 0;
transform: translateY(100%);
}
}
@-webkit-keyframes dw-sv-out {
from {
opacity: 1;
-webkit-transform: translateY(0);
}
to {
opacity: 0;
-webkit-transform: translateY(100%);
}
}
@-moz-keyframes dw-sv-out {
from {
opacity: 1;
-moz-transform: translateY(0);
}
to {
opacity: 0;
-moz-transform: translateY(100%);
}
}
/* Slide Down In */
@keyframes dw-sd-in {
from {
transform: translateY(-100%);
}
to {
transform: translateY(0);
}
}
@-webkit-keyframes dw-sd-in {
from {
opacity: 1;
-webkit-transform: translateY(-100%);
}
to {
opacity: 1;
-webkit-transform: translateY(0);
}
}
@-moz-keyframes dw-sd-in {
from {
-moz-transform: translateY(-100%);
}
to {
-moz-transform: translateY(0);
}
}
/* Slide down out */
@keyframes dw-sd-out {
from {
transform: translateY(0);
}
to {
transform: translateY(-100%);
}
}
@-webkit-keyframes dw-sd-out {
from {
opacity: 1;
-webkit-transform: translateY(0);
}
to {
opacity: 1;
-webkit-transform: translateY(-100%);
}
}
@-moz-keyframes dw-sd-out {
from {
-moz-transform: translateY(0);
}
to {
-moz-transform: translateY(-100%);
}
}
/* Slide Up In */
@keyframes dw-su-in {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}
@-webkit-keyframes dw-su-in {
from {
opacity: 1;
-webkit-transform: translateY(100%);
}
to {
opacity: 1;
-webkit-transform: translateY(0);
}
}
@-moz-keyframes dw-su-in {
from {
-moz-transform: translateY(100%);
}
to {
-moz-transform: translateY(0);
}
}
/* Slide up out */
@keyframes dw-su-out {
from {
transform: translateY(0);
}
to {
transform: translateY(100%);
}
}
@-webkit-keyframes dw-su-out {
from {
opacity: 1;
-webkit-transform: translateY(0);
}
to {
opacity: 1;
-webkit-transform: translateY(100%);
}
}
@-moz-keyframes dw-su-out {
from {
-moz-transform: translateY(0);
}
to {
-moz-transform: translateY(100%);
}
}