mirror of
https://github.com/slawkens/myaac.git
synced 2025-06-01 02:14:30 +02:00
64 lines
1.8 KiB
Twig
64 lines
1.8 KiB
Twig
<style type="text/css">
|
|
.top_level {
|
|
position: absolute;
|
|
top: 29px;
|
|
left: 6px;
|
|
height: 160px;
|
|
width: 168px;
|
|
z-index: 20;
|
|
padding-top: 6px;
|
|
font-family: Tahoma, Geneva, sans-serif;
|
|
font-size: 9.2pt;
|
|
color: #FFF;
|
|
font-weight: bold;
|
|
text-align: right;
|
|
text-decoration: inherit;
|
|
text-shadow: 0.1em 0.1em #333
|
|
}
|
|
|
|
#Topbar a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.online {
|
|
color: #008000;
|
|
}
|
|
|
|
.offline {
|
|
color: #FF0000;
|
|
}
|
|
|
|
a.topfont {
|
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
font-size: 11px;
|
|
text-decoration: none
|
|
}
|
|
a:hover.topfont {
|
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
font-size: 11px;
|
|
color: #CCC;
|
|
text-decoration:none
|
|
}
|
|
</style>
|
|
|
|
<div id="Topbar" class="Themebox" style="background-image:url({{ template_path }}/images/themeboxes/highscores/highscores.png);">
|
|
<div class="top_level" style="background:url({{ template_path }}/images/themeboxes/bg_top.png)" align=" ">
|
|
{% for player in topPlayers %}
|
|
<div style="text-align:left"><a href="{{ getPlayerLink(player['name'], false) }} " class="topfont {% if player['online'] %}online{% else %}offline{% endif %}">
|
|
{% if config.online_outfit %}
|
|
<img style="position:absolute;margin-top:{% if player.looktype in config.outfit_images_wrong_looktypes %}-20px;margin-left:-0px;{% else %}-45px;margin-left:-25px;{% endif %}" src="{{ player.outfit }}" alt="player outfit"/>
|
|
{% endif %}
|
|
<span style="color: #CCC; margin-left: 40px">{{ player['rank'] }} - </span>
|
|
{{ player['name'] }}
|
|
<br>
|
|
<small><span style="color: white; margin-left: 50px">Level: ({{ player['level'] }})</span></small>
|
|
<br>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
<div class="Bottom" style="background-image:url({{ template_path }}/images/general/box-bottom.gif); top: 159px;; left:-5px;">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<br/><br/><br/>
|