56 lines
947 B
CSS
56 lines
947 B
CSS
@-webkit-keyframes intro-devider-animation {
|
|
100%{
|
|
opacity: 1;
|
|
}
|
|
}
|
|
@keyframes intro-devider-animation {
|
|
100%{
|
|
opacity: 1;
|
|
}
|
|
}
|
|
@-webkit-keyframes intro-menu-animation {
|
|
100%{
|
|
opacity: 1;
|
|
transform: translateX(0px);
|
|
}
|
|
}
|
|
@keyframes intro-menu-animation {
|
|
100%{
|
|
opacity: 1;
|
|
transform: translateX(0px);
|
|
}
|
|
}
|
|
@-webkit-keyframes intro-submenu-animation {
|
|
100%{
|
|
opacity: 1;
|
|
transform: translateX(0px);
|
|
}
|
|
}
|
|
@keyframes intro-submenu-animation {
|
|
100%{
|
|
opacity: 1;
|
|
transform: translateX(0px);
|
|
}
|
|
}
|
|
@-webkit-keyframes intro-active-menu-animation {
|
|
100%{
|
|
z-index: 10;
|
|
}
|
|
}
|
|
@keyframes intro-active-menu-animation {
|
|
100%{
|
|
z-index: 10;
|
|
}
|
|
}
|
|
@-webkit-keyframes active-side-menu-chevron-animation {
|
|
100% {
|
|
margin-right: -27px;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
@keyframes active-side-menu-chevron-animation {
|
|
100% {
|
|
margin-right: -27px;
|
|
opacity: 1;
|
|
}
|
|
} |