39 lines
619 B
HTML
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> |