2016-10-26 14:46:32 +00:00
|
|
|
|
<!DOCTYPE html>
|
2017-04-14 17:08:37 +00:00
|
|
|
|
<html lang="en">
|
2016-10-26 14:46:32 +00:00
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
2019-05-18 16:00:50 +00:00
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=no">
|
2018-04-26 18:13:22 +00:00
|
|
|
|
<link rel="icon" type="image/png" href="/favicon.png">
|
2024-09-17 23:54:25 +00:00
|
|
|
|
<!-- putting styles here to avoid having to wait for styles to load up -->
|
2024-09-17 02:04:52 +00:00
|
|
|
|
<style id="splashscreen">
|
|
|
|
|
#splash {
|
|
|
|
|
--scale: 1;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-rows: auto;
|
|
|
|
|
grid-template-columns: auto;
|
|
|
|
|
align-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
justify-items: center;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
background: #0f161e;
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
color: #b9b9ba;
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
font-size: calc(1vw + 1vh + 1vmin);
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-17 19:56:06 +00:00
|
|
|
|
#splash-credit {
|
|
|
|
|
position: absolute;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-17 02:04:52 +00:00
|
|
|
|
#splash-container {
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#mascot-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: flex-end;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#mascot:not(.orz) {
|
|
|
|
|
margin-bottom: 2em
|
|
|
|
|
object-position: 2.5em 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#mascot-temp.orz {
|
|
|
|
|
margin-bottom: 2em
|
|
|
|
|
object-position: 2.5em 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#mascot,
|
|
|
|
|
#mascot-temp {
|
|
|
|
|
width: calc(10em * var(--scale));
|
|
|
|
|
height: calc(8em * var(--scale));
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
object-position: bottom;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#throbber {
|
|
|
|
|
display: grid;
|
|
|
|
|
width: calc(5em * 0.5 * var(--scale));
|
|
|
|
|
height: calc(8em * 0.5 * var(--scale));
|
|
|
|
|
grid-template-rows: repeat(8, 1fr);
|
|
|
|
|
grid-template-columns: repeat(5, 1fr);
|
|
|
|
|
grid-template-areas: "P P . L L"
|
|
|
|
|
"P P . L L"
|
|
|
|
|
"P P . L L"
|
|
|
|
|
"P P . L L"
|
|
|
|
|
"P P . . ."
|
|
|
|
|
"P P . . ."
|
|
|
|
|
"P P . E E"
|
|
|
|
|
"P P . E E";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chunk {
|
|
|
|
|
background-color: #e2b188;
|
|
|
|
|
box-shadow: 0.01em 0.01em 0.1em 0 #e2b188;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chunk-P {
|
|
|
|
|
grid-area: P;
|
|
|
|
|
border-top-left-radius: calc(var(--logoChunkSize) / 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chunk-L {
|
|
|
|
|
grid-area: L;
|
|
|
|
|
border-bottom-right-radius: calc(var(--logoChunkSize) / 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#chunk-E {
|
|
|
|
|
grid-area: E;
|
|
|
|
|
border-bottom-right-radius: calc(var(--logoChunkSize) / 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#status {
|
|
|
|
|
line-height: 2;
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2024-09-17 19:56:06 +00:00
|
|
|
|
|
|
|
|
|
@media (prefers-reduced-motion) {
|
|
|
|
|
#throbber {
|
|
|
|
|
animation: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-09-17 02:04:52 +00:00
|
|
|
|
</style>
|
2024-05-31 18:33:44 +00:00
|
|
|
|
<style id="pleroma-eager-styles" type="text/css"></style>
|
|
|
|
|
<style id="pleroma-lazy-styles" type="text/css"></style>
|
2023-11-22 20:05:16 +00:00
|
|
|
|
<!--server-generated-meta-->
|
2016-10-26 14:46:32 +00:00
|
|
|
|
</head>
|
2024-09-15 23:34:02 +00:00
|
|
|
|
<body style="margin: 0; padding: 0">
|
2019-08-17 08:26:00 +00:00
|
|
|
|
<noscript>To use Pleroma, please enable JavaScript.</noscript>
|
2024-09-17 02:04:52 +00:00
|
|
|
|
<div id="splash">
|
2024-09-17 23:54:25 +00:00
|
|
|
|
<!-- we are hiding entire graphic so no point showing credit -->
|
|
|
|
|
<div aria-hidden="true" id="splash-credit">
|
2024-09-17 19:56:06 +00:00
|
|
|
|
Art by pipivovott
|
|
|
|
|
</div>
|
2024-09-17 02:04:52 +00:00
|
|
|
|
<div id="splash-container">
|
2024-09-17 23:54:25 +00:00
|
|
|
|
<div aria-hidden="true" id="mascot-container">
|
2024-09-17 02:04:52 +00:00
|
|
|
|
<div id="throbber">
|
|
|
|
|
<div class="chunk" id="chunk-P">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="chunk" id="chunk-L">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="chunk" id="chunk-E">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<img id="mascot" src="/static/pleromatan_apology_fox.png">
|
2024-09-15 23:34:02 +00:00
|
|
|
|
</div>
|
2024-09-17 02:04:52 +00:00
|
|
|
|
<div id="status" class="css-ok">
|
|
|
|
|
<!-- (。>﹏<) -->
|
2024-09-17 23:54:25 +00:00
|
|
|
|
<!-- it's a pseudographic, don't want screenreader read out nonsense -->
|
|
|
|
|
<span aria-hidden="true" class="initial-text">(。>﹏<)</span>
|
2024-09-15 23:34:02 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="app" class="hidden"></div>
|
2022-04-10 03:32:15 +00:00
|
|
|
|
<div id="modal"></div>
|
2016-10-26 14:46:32 +00:00
|
|
|
|
<!-- built files will be auto injected -->
|
2022-10-09 20:01:49 +00:00
|
|
|
|
<div id="popovers" />
|
2016-10-26 14:46:32 +00:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|