trainsim/devtools/panel.html
2025-02-15 12:46:14 -07:00

39 lines
619 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Context Stack</title>
<style>
body {
font-family: sans-serif;
/* margin: 10px; */
width: 100%;
height: 100%;
background-color: #302040;
}
.context-row {
display: flex;
margin-bottom: 8px;
}
.context-key {
width: 150px;
font-weight: bold;
}
.context-value input {
width: 100%;
}
</style>
</head>
<body>
<h1>Context Stack</h1>
<div id="contextContainer"></div>
<button id="refresh">Refresh</button>
<script src="panel.js"></script>
</body>
</html>