71 lines
1.4 KiB
HTML
71 lines
1.4 KiB
HTML
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="./style.css" />
|
|
<style>
|
|
#status {
|
|
background-color: bisque;
|
|
}
|
|
.form {
|
|
display: grid;
|
|
grid-template-columns: auto auto;
|
|
grid-gap: 10px;
|
|
align-items: center;
|
|
margin-top: 20px;
|
|
}
|
|
input[type='submit'] {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
input,
|
|
select {
|
|
min-width: 150px;
|
|
width: 100%;
|
|
}
|
|
|
|
#root {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
#root > div {
|
|
margin: 10px 6px;
|
|
}
|
|
|
|
.component {
|
|
min-width: 300px;
|
|
flex: 1;
|
|
padding: 10px;
|
|
}
|
|
|
|
.chartComponent {
|
|
min-width: 500px;
|
|
}
|
|
|
|
@media screen and (max-width: 800px) {
|
|
.chartComponent {
|
|
min-width: 300px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<h1>Benchmarking</h1>
|
|
<a href="./loadChart.html">Load previously saved chart</a> |
|
|
<a href="./results.html">See prepared results</a>
|
|
</header>
|
|
<main id="root"></main>
|
|
<footer>
|
|
Footer
|
|
</footer>
|
|
|
|
<script src="./bundle.js"></script>
|
|
</body>
|
|
</html>
|