You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.0 KiB
48 lines
1.0 KiB
9 years ago
|
/* universal */
|
||
|
.app-primary .main-enter {
|
||
9 years ago
|
position: absolute;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
/* center position */
|
||
9 years ago
|
.app-primary.from-right .main-enter-active,
|
||
|
.app-primary.from-left .main-enter-active {
|
||
9 years ago
|
overflow-x: hidden;
|
||
9 years ago
|
transform: translateX(0px);
|
||
|
transition: transform 300ms ease-in;
|
||
9 years ago
|
}
|
||
|
|
||
9 years ago
|
/* exited positions */
|
||
9 years ago
|
.app-primary.from-left .main-leave-active {
|
||
9 years ago
|
transform: translateX(360px);
|
||
|
transition: transform 300ms ease-in;
|
||
9 years ago
|
}
|
||
|
.app-primary.from-right .main-leave-active {
|
||
9 years ago
|
transform: translateX(-360px);
|
||
|
transition: transform 300ms ease-in;
|
||
9 years ago
|
}
|
||
|
|
||
7 years ago
|
.sidebar.from-left {
|
||
|
transform: translateX(-320px);
|
||
|
transition: transform 300ms ease-in;
|
||
|
}
|
||
|
|
||
9 years ago
|
/* loader transitions */
|
||
|
.loader-enter, .loader-leave-active {
|
||
|
opacity: 0.0;
|
||
9 years ago
|
transition: opacity 150 ease-in;
|
||
9 years ago
|
}
|
||
|
.loader-enter-active, .loader-leave {
|
||
|
opacity: 1.0;
|
||
9 years ago
|
transition: opacity 150 ease-in;
|
||
|
}
|
||
|
|
||
|
/* entering positions */
|
||
|
.app-primary.from-right .main-enter:not(.main-enter-active) {
|
||
|
transform: translateX(360px);
|
||
|
}
|
||
|
.app-primary.from-left .main-enter:not(.main-enter-active) {
|
||
|
transform: translateX(-360px);
|
||
9 years ago
|
}
|
||
|
|