mt-polygon-simplification/benchmarking/public/index.html

71 lines
1.4 KiB
HTML
Raw Permalink Normal View History

2019-07-14 20:37:26 +02:00
<html lang="en">
2019-07-19 15:15:05 +02:00
<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" />
2019-07-14 20:37:26 +02:00
<title>Document</title>
2019-07-19 15:15:05 +02:00
<link rel="stylesheet" href="./style.css" />
2019-08-09 10:45:11 +02:00
<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>
2019-07-19 15:15:05 +02:00
</head>
2019-07-14 20:37:26 +02:00
2019-07-19 15:15:05 +02:00
<body>
2019-07-14 20:37:26 +02:00
<header>
2019-07-19 15:15:05 +02:00
<h1>Benchmarking</h1>
2019-08-09 10:45:11 +02:00
<a href="./loadChart.html">Load previously saved chart</a> |
<a href="./results.html">See prepared results</a>
2019-07-14 20:37:26 +02:00
</header>
2019-07-19 15:15:05 +02:00
<main id="root"></main>
2019-08-06 14:03:05 +02:00
<footer>
Footer
</footer>
2019-07-14 20:37:26 +02:00
<script src="./bundle.js"></script>
2019-07-19 15:15:05 +02:00
</body>
</html>