33 lines
619 B
HTML
33 lines
619 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;
|
|
overflow: clip;
|
|
}
|
|
#pie canvas {
|
|
max-width: 20vw;
|
|
max-height: 20vh;
|
|
position: absolute;
|
|
opacity: 90%;
|
|
top: 10px;
|
|
left: 10px;
|
|
}
|
|
#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>
|