Skip to content

Commit a7c8400

Browse files
committed
add WebContent
1 parent d375e61 commit a7c8400

19 files changed

+2283
-91
lines changed

NOTICES.txt

Lines changed: 0 additions & 91 deletions
This file was deleted.

WebContent/bootstrap-3.3.7-dist/css/bootstrap.min.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WebContent/bootstrap-3.3.7-dist/css/bootstrap.min.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WebContent/bootstrap-3.3.7-dist/js/bootstrap.min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WebContent/css/style.css

Lines changed: 167 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
/*******************************************************************************
2+
* Copyright 2017 IBM Corp.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
5+
* use this file except in compliance with the License. You may obtain a copy of
6+
* the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13+
* License for the specific language governing permissions and limitations under
14+
* the License.
15+
******************************************************************************/
16+
17+
@viewport {
18+
width: 320;
19+
}
20+
21+
html {
22+
background-color: #3b4b54;
23+
}
24+
25+
body {
26+
font: 12px Arial;
27+
fill: white;
28+
}
29+
30+
.container-fluid {
31+
background-color: #3b4b54;
32+
}
33+
34+
h1 {
35+
font: 26px Arial;
36+
font-weight: bold;
37+
text-align: center;
38+
color: white;
39+
}
40+
41+
svg {
42+
margin: 3px;
43+
border: 1px solid #dfe6eb;
44+
}
45+
46+
.col-md-2,
47+
.col-md-3,
48+
.col-md-4,
49+
.col-md-5,
50+
.col-md-6 {
51+
padding-right: 1px;
52+
padding-left: 1px;
53+
padding-top: 0px;
54+
padding-bottom: 0px
55+
}
56+
57+
.cpuChart path,
58+
.memChart path,
59+
.httpThroughPutChart path,
60+
.httpChart path {
61+
stroke: #00b4a0;
62+
stroke-width: 2;
63+
fill: none;
64+
}
65+
66+
path.line1 {
67+
stroke: #00b4a0;
68+
stroke-width: 2;
69+
fill: none;
70+
}
71+
72+
path.line2,
73+
path.processLine {
74+
stroke: #95d13c;
75+
stroke-width: 2;
76+
fill: none;
77+
}
78+
79+
path.line3,
80+
path.httpline {
81+
stroke: #5aaafa;
82+
stroke-width: 2;
83+
fill: none;
84+
}
85+
86+
g.xAxis path,
87+
g.xAxis line,
88+
g.yAxis path,
89+
g.yAxis line {
90+
fill: none;
91+
stroke: white;
92+
stroke-width: 1;
93+
shape-rendering: crispEdges;
94+
}
95+
96+
g.tick line {
97+
stroke: white;
98+
}
99+
100+
.axis2 path,
101+
.axis2 line {
102+
fill: none;
103+
stroke: white;
104+
stroke-width: 1;
105+
shape-rendering: crispEdges;
106+
}
107+
108+
.lineLabel,
109+
.lineLabel2,
110+
.avglatestlabel,
111+
.minlatestlabel {
112+
font: 14px Arial;
113+
text-anchor: left;
114+
}
115+
116+
.colourbox1 {
117+
fill: #00b4a0;
118+
stroke: #dbe6e9;
119+
stroke-width: 1px;
120+
}
121+
122+
.colourbox2 {
123+
fill: #95d13c;
124+
stroke: #dbe6e9;
125+
stroke-width: 1px;
126+
}
127+
128+
.colourbox3 {
129+
fill: #5aaafa;
130+
stroke: #dbe6e9;
131+
stroke-width: 1px;
132+
}
133+
134+
.container {
135+
width: 100%;
136+
}
137+
138+
.chart {
139+
margin: 0 auto;
140+
display: block;
141+
text-align: center;
142+
}
143+
144+
g.arc {
145+
fill: #6decd7;
146+
}
147+
148+
g.pointer {
149+
fill: #959f9f;
150+
stroke: #000000;
151+
}
152+
153+
g.label text {
154+
text-anchor: middle;
155+
text-align: center;
156+
font-size: 12px;
157+
}
158+
159+
.httpTop5Chart .bar {
160+
fill: #5aaafa;
161+
}
162+
163+
.titlebox {
164+
fill: #949394;
165+
stroke: #dbe6e9;
166+
stroke-width: 1px;
167+
}

0 commit comments

Comments
 (0)