Make it look less worrisome

This commit is contained in:
Neale Pickett 2023-03-18 13:00:43 -06:00
parent 2380c28584
commit 6c2aa40d8b
2 changed files with 24 additions and 5 deletions

View File

@ -45,11 +45,10 @@
<div class="modal is-active init"> <div class="modal is-active init">
<div class="modal-background"></div> <div class="modal-background"></div>
<div class="modal-content"> <div class="modal-content">
<div class="message"> <div class="notification is-info">
<div class="message-header"> <h1 class="title has-text-centered">
Initializing... Loading...
</div> </h1>
<div class="message-body content">
<p> <p>
If you can read this, If you can read this,
it could mean it could mean

View File

@ -94,3 +94,23 @@ code {
height: 0.5em; height: 0.5em;
width: 100%; width: 100%;
} }
.loader {
width: 48px;
height: 48px;
border: 5px solid #FFF;
border-bottom-color: transparent;
border-radius: 50%;
display: inline-block;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}