included initial page, styles and modules

- uses node.js and materialize
This commit is contained in:
Saw, Hansly Kendrich 2022-09-14 12:07:35 +08:00
parent 0ff386bb9d
commit 56bd5d0837
92 changed files with 43518 additions and 0 deletions

View file

@ -0,0 +1,13 @@
// Scale transition
.scale-transition {
&.scale-out {
transform: scale(0);
transition: transform .2s !important;
}
&.scale-in {
transform: scale(1);
}
transition: transform .3s cubic-bezier(0.53, 0.01, 0.36, 1.63) !important;
}