Auth page done

This commit is contained in:
2022-04-25 17:47:24 -03:00
parent 32404d1104
commit bf31475316
17 changed files with 453 additions and 102 deletions

View File

@@ -8,6 +8,19 @@ body {
font-family: "Inter", sans-serif;
}
html, body, #root {
height: 100%;
}
#root {
display: flex;
flex-direction: column;
}
.fullscreen {
flex-grow: 1;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
}
@@ -17,4 +30,69 @@ img {
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.fade-in {
-webkit-animation: fade-in 0.5s ease-in-out both;
animation: fade-in 0.5s ease-in-out both;
}
/* ----------------------------------------------
* Generated by Animista on 2022-4-25 17:26:50
* Licensed under FreeBSD License.
* See http://animista.net/license for more info.
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/**
* ----------------------------------------
* animation fade-in
* ----------------------------------------
*/
@-webkit-keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fade-out {
-webkit-animation: fade-out 1s ease-in-out both;
animation: fade-out 1s ease-in-out both;
}
/* ----------------------------------------------
* Generated by Animista on 2022-4-25 17:27:42
* Licensed under FreeBSD License.
* See http://animista.net/license for more info.
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/**
* ----------------------------------------
* animation fade-out
* ----------------------------------------
*/
@-webkit-keyframes fade-out {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fade-out {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}/*# sourceMappingURL=styles.css.map */