portal/web/stat.html

30 lines
568 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>CPU Stats</title>
<meta charset="utf-8">
<link rel="icon" href="portal.png">
<script src="stat.mjs" type="module"></script>
<style>
html, body {
margin: 0;
}
#pie canvas {
max-width: 20vw;
max-height: 20vh;
position: absolute;
opacity: 90%;
}
#area canvas {
width: 100vw;
height: 99vh;
}
</style>
</head>
<body data-autostat>
<div id="pie" class="pie chart"></div>
<div id="area" class="area chart"></div>
</body>
</html>