-
Notifications
You must be signed in to change notification settings - Fork 2
/
spc-rankings.php
68 lines (59 loc) · 2.28 KB
/
spc-rankings.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
<link rel="stylesheet" href="../node_modules/datatables/media/css/jquery.dataTables.css" />
<style>
body {
min-width: 600px;
}
.legend {
padding: 10px;
text-align: center;
font-size: 16px;
}
tr.even.red { background-color: #FFA1A1!important; }
tr.odd.red { background-color: #FF8F8F!important; }
tr.even.red td.sorting_1 { background-color: #FF7070!important; }
tr.odd.red td.sorting_1 { background-color: #FF5050!important; }
tr.even.green { background-color: #00D10E!important; }
tr.odd.green { background-color: #00BF0D!important; }
tr.even.green td.sorting_1 { background-color: #00B30C!important; }
tr.odd.green td.sorting_1 { background-color: #00A30B!important; }
tr.even.yellow { background-color: #FFFA00!important; }
tr.odd.yellow { background-color: #FFE500!important; }
tr.even.yellow td.sorting_1 { background-color: #FFEA00!important; }
tr.odd.yellow td.sorting_1 { background-color: #FFD500!important; }
</style>
<div class="col-lg-12">
<div class="row">
<div class="col-lg-12 alert alert-info">
<h4>39 Males and 39 Females will return, with 4 additional Slivkans determined based on Total w/ Multiplier.</h4>
<h4>Disclaimers! The following information may <strong><em>increase</em></strong> between now and Housing:</h4>
<ul>
<li>Additional Slivkans abstaining</li>
<li>Committee Points</li>
<li>Appointed Position Points (e.g. Eco Rep)</li>
<li>Event Points for the rest of the quarter</li>
</ul>
</div>
</div>
<div class="row" style="margin-bottom:10px">
<div class="col-lg-6 legend" style="background-color:#00D10E;">
Above Points Cutoff <strong><em>NOT FINAL</em></strong>
</div>
<div class="col-lg-6 legend" style="background-color:#FF8F8F;">
Abstaining from Housing or Below Points Minimum
</div>
</div>
<ul class="nav nav-tabs" id="tabs">
<li class="active"><a href="#males" data-toggle="tab"><span>Males</span></a></li>
<li><a href="#females" data-toggle="tab"><span>Females</span></a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active col-md-12" id="males" >
<table id="males_table"></table>
</div>
<div class="tab-pane col-md-12" id="females">
<table id="females_table"></table>
</div>
</div><!--tab-content-->
</div>
<div class="clearfix"></div>
<?php include('credits.html'); ?>