Skip to content

Commit

Permalink
Merge pull request #6 from seiKiMo-Inc/pr-for-web
Browse files Browse the repository at this point in the history
Pr for web
  • Loading branch information
Arikatsu authored Mar 3, 2023
2 parents 4c4f5f9 + f1e15bb commit e7995ea
Show file tree
Hide file tree
Showing 57 changed files with 6,733 additions and 460 deletions.
5 changes: 4 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ insert_final_newline = true
trim_trailing_whitespace = true

[*.json]
indent_size = 2
indent_size = 2

[*.html]
indent_size = 2
64 changes: 64 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,73 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Laudiolin</title>
<style>
#placeholderBG {
background: #000;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 100000;
}

#placeholderBG img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 100%;
}

.loader, .loader:before, .loader:after {
border-radius: 50%;
width: 2.5em;
height: 2.5em;
animation-fill-mode: both;
animation: bblFadInOut 1.8s infinite ease-in-out;
}

.loader {
color: #FFF;
font-size: 7px;
text-indent: -9999em;
animation-delay: -0.16s;
z-index: 100000;
position: absolute;
top: calc(50% + 40px);
left: 50%;
transform: translate(-50%, -50%);
}

.loader:before,
.loader:after {
content: '';
position: absolute;
top: 0;
}

.loader:before {
left: -3.5em;
animation-delay: -0.32s;
}

.loader:after {
left: 3.5em;
}

@keyframes bblFadInOut {
0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em }
40% { box-shadow: 0 2.5em 0 0 }
}
</style>
</head>

<body>
<div id="placeholderBG">
<img src="/launch_screen.png" alt="placeholderBG" />
</div>
<span class="loader"></span>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
Expand Down
Loading

0 comments on commit e7995ea

Please sign in to comment.