auto-reload

This commit is contained in:
2023-12-13 08:35:01 +01:00
parent ab2f2ff439
commit e691640055
6 changed files with 89 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
* {
font-family: 'MonaspaceXenon';
font-family: 'MonaspaceXenon', serif;
}
html, body {
@@ -14,25 +14,38 @@ body {
background-color: #EFEFEF;
}
.hidden { display: none !important; }
main {
display: flex;
flex-direction: column;
display: grid;
grid-template-columns: auto 1fr auto;
grid-column-gap: 1rem;
grid-row-gap: 1rem;
margin: 1rem;
}
h1 {
font-size: 3em;
margin-bottom: 1rem;
text-shadow: 0 0 8px #888;
}
.loader_left,
.loader_right{
display: flex;
width: 50px;
justify-content: center;
align-items: center;
}
#maincontent {
display: flex;
flex-direction: column;
gap: 0.5rem;
padding: 0 2rem;
grid-column: 2;
}
.server {
@@ -74,3 +87,23 @@ h1 {
color: #00A;
}
.loader {
width: 48px;
height: 48px;
border-radius: 50%;
display: inline-block;
position: relative;
border: 10px solid;
border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.35) rgba(0, 0, 0, 0.5);
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}