mirror of
https://github.com/blossom-editor/blossom
synced 2024-11-17 22:48:03 +08:00
89 lines
2.0 KiB
HTML
89 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="referrer" content="no-referrer" />
|
|
<!-- <title>Blossom</title> -->
|
|
<script src="/config.js"></script>
|
|
<style>
|
|
* {
|
|
font-family: 'Consolas', 'Menlo', 'PingFang SC', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
@-webkit-keyframes rotation {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.index-html-loading {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: linear-gradient(to bottom right, #3e464e, #212121);
|
|
z-index: 999999;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.index-html-loading-div {
|
|
width: 120px;
|
|
height: 100px;
|
|
max-width: 100px;
|
|
max-height: 100px;
|
|
min-width: 100px;
|
|
min-height: 100px;
|
|
|
|
border: 10px solid #ffffff;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
animation: rotation 4s linear infinite;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.index-html-loading-div::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 63px;
|
|
height: 63px;
|
|
border-radius: 50%;
|
|
border: 8px solid transparent;
|
|
border-bottom-color: #835947;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
<div class="index-html-loading">
|
|
<div class="index-html-loading-div"></div>
|
|
</div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</div>
|
|
</body>
|
|
</html>
|