135 lines
2.0 KiB
CSS
135 lines
2.0 KiB
CSS
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
user-select: none;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: #121212;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.emscripten {
|
|
padding-right: 0;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
display: none;
|
|
border: 0 none;
|
|
}
|
|
|
|
h1, h2, h5 {
|
|
color: #F0F0F0;
|
|
font-size: 20px;
|
|
font-family: monospace;
|
|
width: 100%;
|
|
text-align: center;
|
|
margin-top: 60px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 15px;
|
|
font-size: 17px;
|
|
}
|
|
|
|
h5 {
|
|
margin-top: 0;
|
|
font-size: 17px;
|
|
}
|
|
|
|
#not_working {
|
|
opacity: 0;
|
|
}
|
|
|
|
#not_working.visible {
|
|
opacity: 1;
|
|
transition: opacity 2s ease;
|
|
}
|
|
|
|
a {
|
|
color: #7893ff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-shadow: #3a4677 0 0 10px;
|
|
}
|
|
|
|
.footer {
|
|
width: 100%;
|
|
height: 20px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
text-align: center;
|
|
color: #F0F0F0;
|
|
background-color: #0A0A0A;
|
|
padding: 10px;
|
|
font-family: monospace;
|
|
font-size: 15px;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
gap: 10%;
|
|
}
|
|
|
|
.centered {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
|
|
.lds-ripple {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 80px;
|
|
height: 80px;
|
|
}
|
|
.lds-ripple div {
|
|
position: absolute;
|
|
border: 4px solid #fff;
|
|
opacity: 1;
|
|
border-radius: 50%;
|
|
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
|
|
}
|
|
.lds-ripple div:nth-child(2) {
|
|
animation-delay: -0.5s;
|
|
}
|
|
@keyframes lds-ripple {
|
|
0% {
|
|
top: 36px;
|
|
left: 36px;
|
|
width: 0;
|
|
height: 0;
|
|
opacity: 0;
|
|
}
|
|
4.9% {
|
|
top: 36px;
|
|
left: 36px;
|
|
width: 0;
|
|
height: 0;
|
|
opacity: 0;
|
|
}
|
|
5% {
|
|
top: 36px;
|
|
left: 36px;
|
|
width: 0;
|
|
height: 0;
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
top: 0;
|
|
left: 0;
|
|
width: 72px;
|
|
height: 72px;
|
|
opacity: 0;
|
|
}
|
|
} |