Jessica James
5 years ago
5 changed files with 268 additions and 0 deletions
@ -0,0 +1,5 @@ |
|||
</section> |
|||
</div> |
|||
</div> |
|||
</body> |
|||
</html> |
@ -0,0 +1,147 @@ |
|||
|
|||
<!DOCTYPE html> |
|||
|
|||
<html lang="en"> |
|||
<head> |
|||
<meta charset="UTF-8"> |
|||
<meta name="description" content="Renegade X Leaderboard"> |
|||
<meta name="keywords" content="Renegade,Renegade X,Leaderboard,Ladder,Rank"> |
|||
<title>Renegade X Leaderboard</title> |
|||
<link rel="icon" type="image/ico" href="//renegade-x.com/favicon.ico" /> |
|||
<link rel="stylesheet" href="//renegade-x.com/styles/stylesheet.css"> |
|||
<script src="//renegade-x.com/includes/leaderboard/sorttable.js"></script> |
|||
<style> |
|||
div#leaderboard { |
|||
width: 750px; |
|||
margin: 0 auto; |
|||
position: relative; |
|||
} |
|||
table { |
|||
margin: 0 auto; |
|||
} |
|||
span.leaderboard-page { |
|||
margin: 0 3px; |
|||
padding: 2px; |
|||
border: 1px solid #545454; |
|||
} |
|||
#leaderboard-paging { |
|||
margin-top: 10px; |
|||
} |
|||
#leaderboard-paging span { |
|||
display: inline-block; |
|||
margin-top: 10px; |
|||
} |
|||
input.leaderboard-button { |
|||
padding: 3px; |
|||
} |
|||
input.leaderboard-search-input { |
|||
margin-right: 5px; |
|||
padding: 3px; |
|||
} |
|||
form.leaderboard-search { |
|||
display: inline-block; |
|||
position: relative; |
|||
left: 2.5%; |
|||
} |
|||
form.database-select-form { |
|||
display: inline-block; |
|||
position: absolute; |
|||
right: 5%; |
|||
} |
|||
select.database-select { |
|||
background-color: rgba(53,186,255,.2); |
|||
border: 1px solid rgba(53,186,255,.2); |
|||
color: #fff; |
|||
padding: 3px; |
|||
padding-right: 8px; |
|||
margin-right: 5px; |
|||
} |
|||
|
|||
|
|||
|
|||
table.leaderboard { |
|||
margin: 0 auto; |
|||
position: relative; |
|||
border: 2px solid rgba(53,186,255,.2); |
|||
width: 95%; |
|||
border-spacing: 0; |
|||
} |
|||
table.leaderboard tr { |
|||
border-top:1px solid #fff; |
|||
} |
|||
table.leaderboard tr:hover { |
|||
background-color: #545454; |
|||
} |
|||
table.leaderboard th { |
|||
border-left: none; |
|||
border-right: none; |
|||
text-align: center; |
|||
padding-top: 4px; |
|||
padding-bottom: 4px; |
|||
} |
|||
th.header-col-a { |
|||
background-color: rgba(53,186,255,.1); |
|||
} |
|||
th.header-col-b { |
|||
background-color: rgba(53,186,255,.15); |
|||
} |
|||
table.leaderboard td { |
|||
text-align: center; |
|||
padding-left: 5px; |
|||
padding-right: 5px; |
|||
padding-top: 3px; |
|||
padding-bottom: 3px; |
|||
} |
|||
td.data-col-a { |
|||
background-color: rgba(53,186,255,.05); |
|||
} |
|||
td.data-col-b { |
|||
background-color: rgba(53,186,255,.1); |
|||
} |
|||
h2.leaderboard-table-head { |
|||
margin: 0 auto; |
|||
position: relative; |
|||
width: 95%; |
|||
border-spacing: 0; |
|||
margin-top: 10px; |
|||
|
|||
border-left: none; |
|||
border-right: none; |
|||
text-align: center; |
|||
padding-top: 5px; |
|||
padding-bottom: 4px; |
|||
|
|||
background-color: rgba(53,186,255,.2); |
|||
} |
|||
|
|||
table.sortable th:not(.sorttable_nosort) { |
|||
cursor: pointer; |
|||
} |
|||
table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after { |
|||
content: " \25B4\25BE" |
|||
} |
|||
</style> |
|||
</head> |
|||
|
|||
<body> |
|||
<div id="wrapper"> |
|||
<header> |
|||
<a href="//renegade-x.com"> |
|||
<img src="//renegade-x.com/images/logo_min.png" alt="Renegade X logo"> |
|||
</a> |
|||
<nav> |
|||
<ul> |
|||
<li><a href="//renegade-x.com">Home</a></li> |
|||
<li><a href="//wiki.renegade-x.com/">Wiki</a></li> |
|||
<li><a href="//renegade-x.com/forums/">Forums</a></li> |
|||
<li><a href="/">Leaderboard</a></li> |
|||
<li id="lastchild"><a href="//renegade-x.com/files/"><strong>Downloads</strong></a></li> |
|||
</ul> |
|||
</nav> |
|||
</header> |
|||
<div id="leaderboard"> |
|||
<section class="main"> |
|||
<div class="topleftcorner"></div> |
|||
<div class="toprightcorner"></div> |
|||
<div class="bottomleftcorner"></div> |
|||
<div class="bottomrightcorner"></div> |
@ -0,0 +1 @@ |
|||
</table> |
@ -0,0 +1,4 @@ |
|||
<h2 class="leaderboard-table-head">Renegade-X Leaderboard</h2> |
|||
<table class="leaderboard sortable"> |
|||
<tr><th class="header-col-a sorttable_sorted">Position <span id="sorttable_sortfwdind"> ▾</span></th><th class="header-col-b sorttable_nosort">Name</th><th class="header-col-a">Score</th><th class="header-col-b">SPM</th><th class="header-col-a">Games</th><th class="header-col-b">Wins</th><th class="header-col-a">Losses</th><th class="header-col-b">WLR</th></tr> |
|||
|
@ -0,0 +1,111 @@ |
|||
<style> |
|||
.profile h1 { |
|||
text-align: center; |
|||
} |
|||
.profile img { |
|||
display: block; |
|||
margin-left: auto; |
|||
margin-right: auto; |
|||
} |
|||
.profile-table h1 { |
|||
} |
|||
.profile table { |
|||
margin: 0 auto; |
|||
position: relative; |
|||
border: 2px solid rgba(53,186,255,.2); |
|||
width: 95%; |
|||
border-spacing: 0; |
|||
margin-top: 30px; |
|||
} |
|||
.profile th { |
|||
background-color: rgba(53,186,255,.1); |
|||
border-right: 1px solid rgba(53,186,255,.15); |
|||
border-left: 1px solid rgba(53,186,255,.15); |
|||
text-align: center; |
|||
} |
|||
.profile td { |
|||
text-align: center; |
|||
padding-left: 5px; |
|||
padding-right: 5px; |
|||
} |
|||
th.profile-table-header { |
|||
background-color: rgba(53,186,255,.2); |
|||
border-left: none; |
|||
border-right: none; |
|||
text-align: center; |
|||
} |
|||
th.profile-table-data-first { |
|||
border-left: none; |
|||
} |
|||
tr.profile-table-row-b { |
|||
background-color: rgba(53,186,255,.05); |
|||
} |
|||
div.profile-line { |
|||
width: 100%; |
|||
height: 5px; |
|||
background: rgba(53,156,255,.2); |
|||
overflow: hidden; |
|||
margin: 0 auto; |
|||
margin-bottom: 15px; |
|||
} |
|||
form.profile-previous { |
|||
float: left; |
|||
left: 2.5%; |
|||
} |
|||
form.profile-next { |
|||
float: right; |
|||
right: 2.5%; |
|||
} |
|||
.profile-previous input { |
|||
padding: 3px; |
|||
} |
|||
.profile-next input { |
|||
padding: 3px; |
|||
} |
|||
div.profile-navigation { |
|||
display: block; |
|||
height: 40px; |
|||
} |
|||
</style> |
|||
<div class="profile"> |
|||
|
|||
<h1>{NAME} (#{RANK})</h1> |
|||
<div class="profile-line"></div> |
|||
<a href="//www.steamcommunity.com/profiles/{STEAM}"><img src="//badges.steamprofile.com/profile/default/steam/{STEAM}.png"/></a> |
|||
|
|||
<div class="profile-table"> |
|||
|
|||
<table> |
|||
<tr><th colspan="8" class="profile-table-header"><h1>Combat Record</h1></th></tr> |
|||
<tr><th class="profile-table-data-first">Score</th><td>{SCORE}</td><th>Score/Min</th><td>{SPM}</td><th>Win/Loss</th><td>{WLR}</td><th>Game Time</th><td>{GAMETIME}</td></tr> |
|||
<tr class="profile-table-row-b"><th class="profile-table-data-first">Games</th><td>{GAMES}</td><th>Wins</th><td>{WINS}</td><th>Losses</th><td>{LOSSES}</td><th>Ties</th><td>{TIES}</td></tr> |
|||
<tr><th class="profile-table-data-first">Beacons Placed</th><td>{BEACONPLACEMENTS}</td><th>Beacon Disarms</th><td>{BEACONDISARMS}</td><th>Proxies Placed</th><td>{PROXYPLACEMENTS}</td><th>Proxy Disarms</th><td>{PROXYDISARMS}</td></tr> |
|||
<tr class="profile-table-row-b"><th class="profile-table-data-first">Kills</th><td>{KILLS}</td><th>Building Kills</th><td>{BUILDINGKILLS}</td><th>Vehicle Kills</th><td>{VEHICLEKILLS}</td><th>Defence Kills</th><td>{DEFENCEKILLS}</td></tr> |
|||
<tr><th class="profile-table-data-first">Deaths</th><td>{DEATHS}</td><th>KDR</th><td>{KDR}</td><th>Headshots</th><td>{HEADSHOTS}</td><th>HSKR</th><td>{HSKR}</td></tr> |
|||
|
|||
<tr><th colspan="4" class="profile-table-header"><h1>Global Defense Initiative</h1></th><th colspan="4" class="profile-table-header"><h1>Brotherhood of Nod</h1></th></tr> |
|||
<tr><th class="profile-table-data-first">Games</th><td>{GDIGAMES}</td><th>Ratio</th><td>{GDIWLR}</td><th>Games</th><td>{NODGAMES}</td><th>Ratio</th><td>{NODWLR}</td></tr> |
|||
<tr class="profile-table-row-b"><th class="profile-table-data-first">Wins</th><td>{GDIWINS}</td><th>Losses</th><td>{GDILOSSES}</td><th>Wins</th><td>{NODWINS}</td><th>Losses</th><td>{NODLOSSES}</td></tr> |
|||
|
|||
<tr><th class="profile-table-data-first">Ties</th><td>{GDITIES}</td><th>Game Time</th><td>{GDIGAMETIME}</td><th>Ties</th><td>{NODTIES}</td><th>Game time</th><td>{NODGAMETIME}</td></tr> |
|||
<tr class="profile-table-row-b"><th class="profile-table-data-first">Score</th><td>{GDISCORE}</td><th>SPM</th><td>{GDISPM}</td><th>Score</th><td>{NODSCORE}</td><th>SPM</th><td>{NODSPM}</td></tr> |
|||
<tr><th class="profile-table-data-first">Building Kills</th><td>{GDIBUILDINGKILLS}</td><th>Vehicle Kills</th><td>{GDIVEHICLEKILLS}</td><th>Building Kills</th><td>{NODBUILDINGKILLS}</td><th>Vehicle Kills</th><td>{NODVEHICLEKILLS}</td></tr> |
|||
<tr class="profile-table-row-b"><th class="profile-table-data-first">Defence Kills</th><td>{GDIDEFENCEKILLS}</td><th>Kills</th><td>{GDIKILLS}</td><th>Defence Kills</th><td>{NODDEFENCEKILLS}</td><th>Kills</th><td>{NODKILLS}</td></tr> |
|||
<tr><th class="profile-table-data-first">Deaths</th><td>{GDIDEATHS}</td><th>KDR</th><td>{GDIKDR}</td><th>Deaths</th><td>{NODDEATHS}</td><th>KDR</th><td>{NODKDR}</td></tr> |
|||
<tr class="profile-table-row-b"><th class="profile-table-data-first">Headshots</th><td>{GDIHEADSHOTS}</td><th>HSKR</th><td>{GDIHSKR}</td><th>Headshots</th><td>{NODHEADSHOTS}</td><th>HSKR</th><td>{NODHSKR}</td></tr> |
|||
<tr><th class="profile-table-data-first">Beacons Placed</th><td>{GDIBEACONPLACEMENTS}</td><th>Beacon Disarms</th><td>{GDIBEACONDISARMS}</td><th>Beacons Placed</th><td>{NODBEACONPLACEMENTS}</td><th>Beacon Disarms</th><td>{NODBEACONDISARMS}</td></tr> |
|||
<tr class="profile-table-row-b"><th class="profile-table-data-first">Proxies Placed</th><td>{GDIPROXYPLACEMENTS}</td><th>Proxy Disarms</th><td>{GDIPROXYDISARMS}</td><th>Proxies Placed</th><td>{NODPROXYPLACEMENTS}</td><th>Proxy Disarms</th><td>{NODPROXYDISARMS}</td></tr> |
|||
</table> |
|||
|
|||
<table> |
|||
<tr><th colspan="4"; class="profile-table-header"><h1>Personal Bests</h1></th></tr> |
|||
<tr><th class="profile-table-data-first">Score</th><td>{VSCORE}</td><th>Game Time</th><td>{VGAMETIME}</td></tr> |
|||
<tr class="profile-table-row-b"><th class="profile-table-data-first">Beacons Placed</th><td>{VBEACONPLACEMENTS}</td><th>Beacon Disarms</th><td>{VBEACONDISARMS}</td></tr> |
|||
<tr><th class="profile-table-data-first">Proxies Placed</th><td>{VPROXYPLACEMENTS}</td><th>Proxy Disarms</th><td>{VPROXYDISARMS}</td></tr> |
|||
<tr class="profile-table-row-b"><th class="profile-table-data-first">Building Kills</th><td>{VBUILDINGKILLS}</td><th>Vehicle Kills</th><td>{VVEHICLEKILLS}</td></tr> |
|||
<tr><th class="profile-table-data-first">Defence Kills</th><td>{VDEFENCEKILLS}</td><th>Headshots</th><td>{VHEADSHOTS}</td></tr> |
|||
<tr class="profile-table-row-b"><th class="profile-table-data-first">Kills</th><td>{VKILLS}</td><th>Deaths</th><td>{VDEATHS}</td></tr> |
|||
</table> |
|||
|
|||
</div> |
|||
</div> |
Loading…
Reference in new issue