53 lines
1.2 KiB
Cheetah
53 lines
1.2 KiB
Cheetah
<!DOCTYPE html>
|
|
<html>
|
|
<header>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
|
|
<script type="module">
|
|
import * as d3 from "https://cdn.jsdelivr.net/npm/d3@7/+esm";
|
|
</script>
|
|
<style>
|
|
rows {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
}
|
|
columns {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-grow: 1;
|
|
}
|
|
rows, columns { border: 1px solid red; }
|
|
</style>
|
|
</header>
|
|
<body>
|
|
<h1>Report</h1>
|
|
<columns>
|
|
<rows style="max-width: 12.5em">
|
|
<columns>filter1</columns>
|
|
<columns>filter2</columns>
|
|
</rows>
|
|
<rows>
|
|
<rows>
|
|
<rows>
|
|
<h2>Alert Volume by Name</h2>
|
|
<div>DRAW ME</div>
|
|
</rows>
|
|
<columns>
|
|
<rows>
|
|
<h3>by Day</h3>
|
|
<div>DRAW ME</div>
|
|
</rows>
|
|
<rows>
|
|
<h3>by Hour</h3>
|
|
<div>DRAW ME</div>
|
|
</rows>
|
|
</columns>
|
|
</rows>
|
|
</rows>
|
|
</columns>
|
|
</body>
|
|
<footer>
|
|
</footer>
|
|
</html>
|