This repository was archived by the owner on Jan 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCPU.html
More file actions
79 lines (71 loc) · 2.93 KB
/
CPU.html
File metadata and controls
79 lines (71 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Task-Viewer</title>
<link rel="stylesheet" href="style/w3.css">
<link rel="stylesheet" href="style/grey.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Montserrat", sans-serif
}
.w3-row-padding img {
margin-bottom: 12px
}
/* Set the width of the sidebar to 120px */
.w3-sidebar {
width: 120px;
background: #222;
}
</style>
</head>
<body class="w3-theme-action">
<!-- Top container -->
<div class="w3-bar w3-top w3-large w3-grey">
<button class="w3-bar-item w3-button w3-hover-none w3-hover-text-light-grey" id="MenuButton"><i class="fa fa-bars"></i> Menu</button>
<button class="w3-bar-item w3-button w3-hover-none w3-hover-text-light-grey" id="FullscreenButton"><i class="fa fa-desktop"></i> Toggle Fullscreen</button>
</div>
<!-- Sidebar/menu -->
<nav class="w3-sidebar w3-white w3-animate-left" style="z-index:3;width:300px;display:none;margin-top:-30px" id="Sidebar">
<div class="w3-container">
<h5>Menu</h5>
</div>
<div class="w3-bar-block">
<a href="index.html" class="w3-bar-item w3-button w3-padding"><i class="fa fa-users fa-fw"></i> Main</a>
<a href="javascript:void" class="w3-bar-item w3-button w3-padding w3-blue"><i class="fa fa-eye fa-fw"></i> CPU</a>
</div>
</nav>
<div class="w3-overlay w3-animate-opacity" onclick="w3_close()" style="cursor:pointer" title="close side menu" id="myOverlay"></div>
<div class="w3-main w3-center" style="margin-top:30px">
<h1>CPU</h1>
<canvas id="cpuChart" width="300" height="300" class="w3-content"></canvas>
<h2>Usage</h2>
<h3 id="cpuUsagePercent"></h3>
<hr>
<table id="Info" class="w3-content"></table>
<footer class="w3-center w3-padding-64 w3-text-grey w3-xlarge">
<hr class="w3-content">
<!--<i class="fa fa-facebook-official w3-hover-opacity"></i>
<i class="fa fa-instagram w3-hover-opacity"></i>
<i class="fa fa-snapchat w3-hover-opacity"></i>
<i class="fa fa-pinterest-p w3-hover-opacity"></i>
<i class="fa fa-twitter w3-hover-opacity"></i>
<i class="fa fa-linkedin w3-hover-opacity"></i>-->
<p class="w3-medium"><a href="http://herobone.com" target="_blank" class="w3-hover-text-green">Herobone</a></p>
</footer>
<!-- END PAGE CONTENT -->
</div>
</body>
<script>
// You can also require other files to run in this process
require('./renderCPU.js')
</script>
</html>