Compare commits

...

3 Commits

3 changed files with 18 additions and 8 deletions

BIN
img/placeholder.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

View File

@@ -4,6 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FIM Simulator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<button onclick="selectFolder()">Select Menu Folder</button>
@@ -14,16 +15,16 @@
<br><br>
<div id="viewer">
<div id="screen">
<img src="img/placeholder.jpg" width="1280" height="720">
</div>
<div>
<div id="sidePanel">
<div id="controls">
<button onclick="pressButton('up')">Up</button>
<button onclick="pressButton('down')">Down</button>
<button onclick="pressButton('left')">Left</button>
<button onclick="pressButton('right')">Right</button>
<button onclick="pressButton('select')">Select</button>
<button onclick="pressButton('back')">Back</button>
<button onclick="pressButton('up')">Up</button><br>
<button onclick="pressButton('down')">Down</button><br>
<button onclick="pressButton('left')">Left</button><br>
<button onclick="pressButton('right')">Right</button><br>
<button onclick="pressButton('select')">Select</button><br>
<button onclick="pressButton('menu')">Menu</button>
</div>
</div>
</div>

9
style.css Normal file
View File

@@ -0,0 +1,9 @@
#viewer{
display: flex;
flex-direction: row;
}
#sidePanel{
border: solid black 1px;
margin: 10px;
padding: 20px;
}