blob: 0d1f1509cdf19d77dc37dd80a59fc46fc667f301 (
plain) (
blame)
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
|
<!DOCTYPE html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="assets/dist/css/bootstrap.min.css" rel="stylesheet" media="screen">
<style> /* set the CSS */
path {
stroke: steelblue;
stroke-width: 2;
stroke-opacity: 1;
fill: none;
}
.axis path,
.axis line {
fill: none;
stroke: grey;
stroke-width: 1;
shape-rendering: crispEdges;
}
.job_graph {
/*
border: solid 2px;
border-color: rgba(231, 228, 157, 0.15);
background: none repeat scroll 0% 0% rgba(231, 228, 157, 0.25);
*/
overflow: hidden;
}
.listgraph {
/*
margin-left: 20px;
margin-right: 20px;
margin-top: 10px;
margin-bottom: 10px;
*/
margin-bottom: 0px;
}
.panel {
margin-left: auto;
margin-right: auto;
}
</style>
<script src="assets/js/d3.min.js"></script>
<script src="assets/js/jquery-1.11.1.min.js"></script>
<script src="assets/js/monitor.js"></script>
<script src="assets/dist/js/bootstrap.min.js"></script>
<body>
<div id="jobs"></div>
</body>
|