First alpha

This commit is contained in:
Fabian
2019-01-27 21:29:33 +01:00
commit 313f5aee97
41 changed files with 10856 additions and 0 deletions

24
src/components/routing.scss Executable file
View File

@ -0,0 +1,24 @@
.transition_container {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
overflow: auto;
background: var(--back-color);
}
.transition_slidein {
animation-name: slidein;
animation-duration: 0.3s;
z-index: 128;
}
@keyframes slidein {
from {
left: 100%;
}
to {
left: 0%;
}
}