project-client/static/splash.html

30 lines
549 B
HTML
Raw Normal View History

2023-03-29 23:02:30 +00:00
<head>
<style>
body {
margin: 0;
padding: 0;
}
.wrapper {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: hsl(223 6.7% 20.6%);
border-radius: 6px;
}
p {
color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
}
</style>
</head>
<body>
<div class="wrapper">
<p>Loading...</p>
</div>
</body>