-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathburnup_legend.html
46 lines (41 loc) · 896 Bytes
/
burnup_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
<html>
<head>
<title>design</title>
<style>
body {font-family: "Lucida Grande","Lucida Sans Unicode", verdana, arial, Helvetica,sans-serif; font-size: 15px; font-weight: inherit;}
table { font-family: "Lucida Grande","Lucida Sans Unicode", verdana, arial, Helvetica,sans-serif; font-size: 12px; text-align:left;}
#accepted{
border-radius: 15%;
background: #5DB08A;
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>  ⚫</td>
<td> Scope</td>
<td><div id="accepted"></td>
<td> Accepted</td>
</tr>
</table>
</p>
<b><font color = "red">
Note: Y axis reflects the plan estimate value in story points
</font>
</b>
</center>
</body>
</html>