49 lines
909 B
HTML
49 lines
909 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Smoke and Rails</title>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
/* margin: 10px; */
|
|
/* width: 100%;
|
|
height: 100%; */
|
|
background-color: #302040;
|
|
color: #fff;
|
|
/* text-align: right; */
|
|
}
|
|
|
|
.context-row {
|
|
display: flex;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.context-key {
|
|
width: 150px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.context-value input {
|
|
width: 100%;
|
|
}
|
|
|
|
form {
|
|
margin-left: 1rem;
|
|
margin-right: 1rem;
|
|
}
|
|
label {
|
|
display: inline-block;
|
|
margin-right: 1rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h2>Smoke and Rails Debugger</h2>
|
|
<button id="refresh">Refresh</button>
|
|
<div id="contextContainer"></div>
|
|
<script src="panel.js"></script>
|
|
</body>
|
|
</html>
|