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