mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-03 11:32:56 +00:00
47 lines
732 B
HTML
47 lines
732 B
HTML
<head>
|
|
|
|
<style>
|
|
.status {
|
|
font-family: monospace;
|
|
background-color: lightgrey;
|
|
}
|
|
.shellcommand {
|
|
font-family: monospace;
|
|
background-color: lightgrey;
|
|
}
|
|
.result {
|
|
font-family: monospace;
|
|
background-color: lightgrey;
|
|
padding: 10px;
|
|
}
|
|
h1 {color: blue;}
|
|
p {color: red;}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
}
|
|
|
|
/* Create two equal columns that sits next to each other */
|
|
.column1 {
|
|
flex: 30%;
|
|
padding: 10px;
|
|
}
|
|
.column2 {
|
|
flex: 70%;
|
|
padding: 10px;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div id="waldump"></div>
|
|
|
|
<!-- Attach React components -->
|
|
<script type="text/javascript" src="{{ url_for('static', filename='waldump_bundle.js') }}"></script>
|
|
</body>
|