This repository has been archived by the owner on Jul 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbounty.php
111 lines (90 loc) · 2.28 KB
/
bounty.php
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php
$title="Bounty";
include "header.php";
?>
<style type="text/css">
table.bounty {
width: 99%;
border: 0.2em solid black;
margin-bottom: 1em;
}
/*Table title line*/
table.bounty th {
padding: 1ex;
background: rgb(54, 54, 54)/*(200, 150, 180)*/;
text-align: center;
color: white;
font-size: 1.2em;
}
table.bounty td { margin: 1ex; }
table.bounty td.category {
border-right: 0.1em solid;
width: 15%;}
table.bounty td.taskname {
border-right: 0.1em solid;
width: 25%;}
table.bounty td.req {
border-right: 0.1em solid;
width: 40%;}
table.bounty td.bounty {
border-right: 0.1em solid;
width: 8%;
text-align: right;
font-size: 1.2em;
font-weight: bold;}
table.bounty td.status {
width: 12%;
text-align: left;}
table.bounty tr { background: rgb(208,208,255); }
table.bounty tr.odd { background: rgb(240,240,255); }
table.bounty tr.completed { background: rgb(220,250,220); }
td {
padding: 8px;
vertical-align: top;
}
Tr.header {
background: rgb(221, 221, 221) none repeat scroll 0% 50%;
font-weight: bold;
}
td.title {
background: rgb(221, 221, 221) none repeat scroll 0% 50%;
text-align: center;
font-size: 16px;
font-weight: bold;
color: rgb(156, 66, 112);
}
</style>
<div class="content">
<div class="header">
<h1>Bounty!</h1>
<h2>Invest some cash to get new features</h2>
</div>
<p>
<table class="bounty">
<Tbody>
<tr>
<th>Category</th>
<th>Task Name</th>
<th>Requirements</th>
<th>Bounty</th>
<th>Status</th>
</tr>
<tr class="completed">
<td class="category">new
codec</a></td>
<td class="taskname">add
support for
Apple(tm)'s 2vuy uncompressed 8bit 4:2:2 video</td>
<td class="req">Unspecified</td>
<td class="bounty">$70</td>
<td class="status">Completed by jsteward</td>
</tr>
</tbody>
</table>
<p><h3>Oops! :-( There are no bounties available at the moment. If you want to spend some bucks to get a feature working, please send a message to the mailing list.</h3></p>
<strong> For more information contact the <a href="/contact.php">Cinelerra Community</a>.</strong>
<div class="lastmodified">Last modified on Sep 9, 2015</div>
</div>
<?php include "footer.php"; ?>
</body>
</html>