snappymail/dev/Styles/Animations.less

71 lines
1.3 KiB
Text
Raw Normal View History

2015-04-14 02:45:09 +08:00
@keyframes login-form-shake {
0% {transform: translateX(0);}
2021-03-23 21:48:34 +08:00
12.5% {transform: translateX(-6px)}
37.5% {transform: translateX(5px)}
62.5% {transform: translateX(-3px)}
87.5% {transform: translateX(2px)}
2015-04-14 02:45:09 +08:00
100% {transform: translateX(0)}
}
html.rl-started-delay {
2016-05-01 09:07:10 +08:00
#rl-left {
transition: width 0.3s ease-out;
2016-05-01 09:07:10 +08:00
}
2016-05-01 09:07:10 +08:00
#rl-right {
transition: left 0.3s ease-out, right 0.3s ease-out;
2016-05-01 09:07:10 +08:00
}
2015-01-09 07:31:31 +08:00
2016-05-01 09:07:10 +08:00
#rl-sub-right {
transition: left 0.3s ease-out;
}
2016-05-01 09:07:10 +08:00
}
@media screen and (min-width: 1000px) {
2021-04-30 22:39:27 +08:00
html.rl-started-trigger .b-login-content {
/*transform: scale(1.1);*/
transform: translateY(-20px);
opacity: 0.5;
}
.b-login-content .errorAnimated {
animation: login-form-shake 400ms ease-in-out;
}
.b-login-content .errorAnimated .buttonLogin {
color: #b94a48;
font-weight: bold;
}
2021-04-30 22:39:27 +08:00
.b-login-content {
transition: all 0.3s ease-out;
}
.button-delete-transitions {
transition: all 0.2s linear;
}
#rl-popups > .rl-view-model .modal {
transition: all .2s ease-out;
}
#rl-popups > .rl-view-model:not(.show) .modal {
top: -25%;
}
#rl-popups > .rl-view-model .modal.fade {
opacity: 1;
}
#rl-popups > .rl-view-model:not(.show) .modal.fade {
opacity: 0;
}
}
#rl-popups > .rl-view-model {
transition: background-color 0.2s linear;
}
#rl-popups > .rl-view-model:not(.show) {
background-color: rgba(0,0,0,0);
}