2013-11-16 06:21:12 +08:00
|
|
|
|
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)}
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
html.rl-started-delay {
|
2013-12-30 05:13:35 +08:00
|
|
|
|
2016-05-01 09:07:10 +08:00
|
|
|
#rl-left {
|
2020-09-03 03:30:23 +08:00
|
|
|
transition: width 0.3s ease-out;
|
2016-05-01 09:07:10 +08:00
|
|
|
}
|
2013-12-30 05:13:35 +08:00
|
|
|
|
2016-05-01 09:07:10 +08:00
|
|
|
#rl-right {
|
2020-09-03 03:30:23 +08:00
|
|
|
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 {
|
2020-09-03 03:30:23 +08:00
|
|
|
transition: left 0.3s ease-out;
|
2013-12-30 05:13:35 +08:00
|
|
|
}
|
2016-05-01 09:07:10 +08:00
|
|
|
}
|
|
|
|
|
2021-02-15 22:20:22 +08:00
|
|
|
@media screen and (min-width: 1000px) {
|
2013-12-30 05:13:35 +08:00
|
|
|
|
2021-04-30 22:39:27 +08:00
|
|
|
html.rl-started-trigger .b-login-content {
|
2021-02-15 22:20:22 +08:00
|
|
|
/*transform: scale(1.1);*/
|
|
|
|
transform: translateY(-20px);
|
|
|
|
opacity: 0.5;
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
|
|
|
|
2021-02-19 04:06:19 +08:00
|
|
|
.b-login-content .errorAnimated {
|
|
|
|
animation: login-form-shake 400ms ease-in-out;
|
|
|
|
}
|
2021-02-15 22:20:22 +08:00
|
|
|
|
2021-02-19 04:06:19 +08:00
|
|
|
.b-login-content .errorAnimated .buttonLogin {
|
|
|
|
color: #b94a48;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2021-04-30 22:39:27 +08:00
|
|
|
.b-login-content {
|
2021-02-19 04:06:19 +08:00
|
|
|
transition: all 0.3s ease-out;
|
|
|
|
}
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2021-02-19 04:06:19 +08:00
|
|
|
.button-delete-transitions {
|
|
|
|
transition: all 0.2s linear;
|
|
|
|
}
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2021-02-19 04:06:19 +08:00
|
|
|
#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;
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-02 23:06:35 +08:00
|
|
|
#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);
|
|
|
|
}
|