-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenhanced_velocity_chart_legend.html
65 lines (59 loc) · 1.26 KB
/
enhanced_velocity_chart_legend.html
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
<html>
<head>
<title>design</title>
<style>
body {font-family: "Lucida Grande","Lucida Sans Unicode", verdana, arial, Helvetica,sans-serif; font-size: 10px; font-weight: inherit;}
table { font-family: "Lucida Grande","Lucida Sans Unicode", verdana, arial, Helvetica,sans-serif; font-size: 11px; text-align:left;}
#after{
border-radius: 15%;
background: #9DEC9F;
padding: 6px;
width: 25%;
height: 8%;
}
#during{
border-radius: 15%;
background: #008000;
padding: 6px;
width: 25%;
height: 8%;
}
#notYet{
border-radius: 3px;
border: 2px ridge #808080;
padding: 5px;
width: 28%;
height: 6%;
}
#duringThread{
border: 1px solid #008000;
background: #008000;
width: 12px;
}
#border {
border-radius: 7px;
border: 2px ridge #C0C0C0;
padding: 5px;
width: 650px;
height: 18px;
}
</style>
</head>
<body>
<center>
<p align= "center" id="border">
<table style="width:100%;" >
<tr>
<td><div id="during"></div></td>
<td> Accepted During Iteration</td>
<td><div id="after"></td>
<td> Accepted After Iteration</td>
<td><div id="notYet"></td>
<td> Not Yet Accepted</td>
<td><div id="duringThread"></div> </td>
<td>Accepted During Iteration Trend</td>
</tr>
</table>
</center>
</body>
</html>