Tray/NoTray

This commit is contained in:
Robert Nasarek 2022-09-02 15:08:29 +02:00
parent 76800ad933
commit d4afab5a72
7 changed files with 120 additions and 40 deletions

52
splashScreen.css Normal file
View file

@ -0,0 +1,52 @@
body {
background-color: #f9f9fa;
background-image: url('background.jpg');
}
.flex {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto
}
.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;
left: 0;
right: 0;
top: 0px;
bottom: 0;
position: fixed;
}
/* 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;
}