1
0
mirror of https://github.com/XFox111/easylogon-web.git synced 2026-07-02 19:52:45 +03:00

major: initial commit

This commit is contained in:
2025-03-26 16:42:06 +00:00
commit 94a3197208
172 changed files with 7524 additions and 0 deletions
+75
View File
@@ -0,0 +1,75 @@
body
{
margin: 0;
user-select: none;
overflow-x: hidden;
}
#root > .fui-FluentProvider
{
min-height: 100vh;
display: grid;
}
p, h1, h2, h3
{
margin: 0;
}
@keyframes fadeIn
{
0%
{
opacity: 0;
}
100%
{
opacity: 1;
}
}
@keyframes scaleUpFade
{
0%
{
opacity: 0;
transform: scale(0.8);
}
100%
{
opacity: 1;
transform: scale(1);
}
}
@keyframes slideLeftIn
{
0%
{
opacity: 0;
transform: translateX(40px);
}
100%
{
opacity: 1;
transform: translateX(0);
}
}
@keyframes slideRightIn
{
0%
{
opacity: 0;
transform: translateX(-40px);
}
100%
{
opacity: 1;
transform: translateX(0);
}
}