2023-03-30 08:02:30 +09:00
|
|
|
<head>
|
2023-06-26 08:42:51 +09:00
|
|
|
<link rel="stylesheet" href="./style.css" type="text/css" />
|
|
|
|
|
2023-04-10 05:29:59 +09:00
|
|
|
<style>
|
2024-01-08 10:38:38 +09:00
|
|
|
body {
|
2023-04-10 05:29:59 +09:00
|
|
|
user-select: none;
|
2024-01-08 10:38:38 +09:00
|
|
|
-webkit-app-region: drag;
|
2023-04-10 05:29:59 +09:00
|
|
|
}
|
2023-03-30 08:02:30 +09:00
|
|
|
|
2023-04-10 05:29:59 +09:00
|
|
|
.wrapper {
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
border-radius: 8px;
|
2023-06-26 08:42:51 +09:00
|
|
|
border: 1px solid var(--fg-semi-trans);
|
2023-04-10 05:29:59 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
2023-12-04 19:34:39 +09:00
|
|
|
width: 128px;
|
|
|
|
height: 128px;
|
2023-12-03 01:11:10 +09:00
|
|
|
image-rendering: pixelated;
|
2023-04-10 05:29:59 +09:00
|
|
|
}
|
|
|
|
</style>
|
2023-03-30 08:02:30 +09:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2023-04-10 05:29:59 +09:00
|
|
|
<div class="wrapper">
|
|
|
|
<img
|
|
|
|
draggable="false"
|
2023-10-25 07:25:17 +09:00
|
|
|
src="../shiggy.gif"
|
2023-04-10 05:29:59 +09:00
|
|
|
alt="shiggy"
|
|
|
|
role="presentation"
|
|
|
|
/>
|
2023-07-14 02:03:13 +09:00
|
|
|
<p>Loading Vesktop...</p>
|
2023-04-10 05:29:59 +09:00
|
|
|
</div>
|
2023-03-30 08:02:30 +09:00
|
|
|
</body>
|