Skip to content

Commit

Permalink
Fixed font and background visuals.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexatunes committed Sep 27, 2024
1 parent b58f973 commit 8be4ada
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
14 changes: 13 additions & 1 deletion battle.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,19 @@
</head>

<body onload = "setUp()" onkeydown="keyDetected(event)" id = "mainBody" onclick = "selectTarget()">

<style>
@font-face {
font-family: ykw;
src: url('./ChangaOne-Regular.ttf');
}
body {
background-image: url('./images/battle/battleBG.png');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
overflow: none;
}
</style>

<div id = "battleViewport">
<p id = "myName0">Placeholder</p>
Expand Down
12 changes: 12 additions & 0 deletions matchmaking.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@
</head>

<body onload = "hidePad()">
<style>
@font-face {
font-family: ykw;
src: url('./ChangaOne-Regular.ttf');
}
body {
background-image: url('./images/matchmaking/matchmaking.jpg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
</style>
<img id = "tokoSprite" src = "./images/dialogPortraits/hime.png">

<input id="homeButton" type="image" src="./images/teambuilder/padIcon.png" onclick="switchHome()">
Expand Down

0 comments on commit 8be4ada

Please sign in to comment.