Skip to content

Commit

Permalink
pushing dist to repo
Browse files Browse the repository at this point in the history
  • Loading branch information
JSLegendDev committed Mar 10, 2024
1 parent d9ed034 commit db79f91
Show file tree
Hide file tree
Showing 7 changed files with 481 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

Expand Down
1 change: 1 addition & 0 deletions dist/assets/index-Dp2PfoCH.js

Large diffs are not rendered by default.

92 changes: 92 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<script type="module" crossorigin src="./assets/index-Dp2PfoCH.js"></script>
</head>
<body>
<style>
@font-face {
font-family: monogram;
src: url(monogram.ttf);
}

body {
font-family: monogram, monospace;
font-size: 2rem;
overflow: hidden;
}

#app {
width: 100%;
height: 100%;
position: relative;
}

#textbox {
position: absolute;
left: 10%;
right: 10%;
bottom: 2vh;
min-height: 10vh;
background: white;
border-radius: 3px;
outline-style: solid;
padding: 1rem;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
word-spacing: 0.2rem;
filter: drop-shadow(0 0 0.75rem rgb(112, 112, 112));
/* overflow: auto; */
}

.ui-text {
margin: 0;
user-select: none;
}

.ui-close-btn {
font-family: monogram, monospace;
border-style: none;
border-radius: 3px;
padding: 1rem;
font-size: inherit;
}

.btn-container {
align-self: flex-end;
margin-top: 1rem;
}

.note {
position: absolute;
left: 5%;
top: 1vh;
display: flex;
flex-direction: column;
color: rgb(238, 238, 238);
}
</style>
<div id="app">
<div>
<p class="note">Tap/Click around to move</p>

<div id="textbox-container" style="display: none">
<div id="textbox">
<p id="dialogue" class="ui-text"></p>
<div class="btn-container">
<button id="close" class="ui-close-btn">Close</button>
</div>
</div>
</div>
</div>
<canvas id="game"></canvas>
</div>
</body>
</html>
Loading

0 comments on commit db79f91

Please sign in to comment.