-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcumulative_flow_legend.html
89 lines (79 loc) · 1.54 KB
/
cumulative_flow_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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<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: 12px; text-align:left;}
#idea{
border-radius: 15%;
background: #C1BFBD;
padding: 6px;
width: 25%;
height: 8%;
}
#defined{
border-radius: 15%;
background: #F18825;
padding: 6px;
width: 25%;
height: 8%;
}
#inprogress{
border-radius: 15%;
background: #FBDD51;
padding: 6px;
width: 25%;
height: 8%;
}
#completed{
border-radius: 15%;
background: #529EB8;
padding: 6px;
width: 25%;
height: 8%;
}
#accepted{
border-radius: 15%;
background: #5DB08A;
padding: 6px;
width: 25%;
height: 8%;
}
#deployed{
border-radius: 15%;
background: #888D8B;
padding: 6px;
width: 25%;
height: 8%;
}
#border {
border-radius: 7px;
border: 2px ridge #C0C0C0;
padding: 5px;
width: 450px;
height: 18px;
}
</style>
</head>
<body>
<center>
<p align= "center" id="border">
<table style="width:100%;" >
<tr>
<td><div id="idea"></div></td>
<td> Idea</td>
<td><div id="defined"></td>
<td> Defined</td>
<td><div id="inprogress"></td>
<td> In-Progress</td>
<td><div id="completed"></td>
<td> Completed</td>
<td><div id="accepted"></td>
<td> Accepted</td>
<td><div id="deployed"></td>
<td> Deployed</td>
</tr>
</table>
</center>
</body>
</html>