62 lines
975 B
CSS
62 lines
975 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
h3 {
|
|
color: white;
|
|
}
|
|
|
|
.main {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
background: url('../app-assets/img/soft/splash.jpg') no-repeat center;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
.loader {
|
|
border: 5px solid rgba(18, 65, 145, 255);
|
|
border-radius: 50%;
|
|
border-top: 5px solid #ffffff;
|
|
width: 40px;
|
|
height: 40px;
|
|
-webkit-animation: spin 1s linear infinite;
|
|
/* Safari */
|
|
animation: spin 1s linear infinite;
|
|
margin: auto;
|
|
}
|
|
|
|
/* Safari */
|
|
@-webkit-keyframes spin {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.center {
|
|
border: none !important;
|
|
text-align: center;
|
|
} |