Files
float-fleet/public/splash-screen.css
T
2023-04-05 21:38:44 +01:00

54 lines
1.0 KiB
CSS

body {
margin: 0;
padding: 0;
}
.splash-screen {
position: absolute;
z-index: 1000;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-family: Helvetica, 'sans-serif';
background-color: #f2f3f8;
color: #5E6278;
line-height: 1;
font-size: 14px;
font-weight: 400;
}
.splash-screen span {
color: #5E6278;
transition: none !important;
text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
}
.splash-screen img {
margin-left: calc(100vw - 100%);
margin-bottom: 30px;
height: 30px !important;
}
[data-theme="dark"] .splash-screen {
background-color: #151521;
color: #92929F;
}
[data-theme="dark"] .splash-screen span {
color: #92929F;
}
.auth-aside {
border-radius: 15px;
box-shadow:
0 2.8px 2.2px rgba(179, 116, 116, 0.034),
0 6.7px 5.3px rgba(129, 84, 84, 0.048),
0 12.5px 10px rgba(124, 88, 88, 0.06),
0 22.3px 17.9px rgba(0, 0, 0, 0.072),
0 41.8px 33.4px rgba(0, 0, 0, 0.086),
0 100px 80px rgba(0, 0, 0, 0.12)
}