forked from NineWorlds/xstreamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
player1.html
39 lines (37 loc) · 1.39 KB
/
player1.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
<html>
<head>
<style>
body { margin: 5px;
color: #F8F8FF;
text-shadow: 4px 1px #000000;
text-align: right;
}
.squad { padding:5px;
background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5));
}
.pilot { font-size: 14pt; margin-botton: 2px;}
.shields { font-size: 14pt; color: cyan; }
.hull { font-size: 14pt; color: yellow; }
</style>
</head>
<body>
<div class="squad">
<b class="pilot">manaroo (35)</b><br/>
<b class="shields">4</b> <image style="vertical-align: middle;" height="30" width="30" src="images/Token_Shield.png"/>
<b class="hull">5</b><image style="vertical-align: middle;" height="30" width="30"src="images/Token_Hull.png"/>
<br/>
</div>
<div class="squad">
<b class="pilot">fennrau (32)</b><br/>
<b class="shields">0</b> <image style="vertical-align: middle;" height="30" width="30" src="images/Token_Shield.png"/>
<b class="hull">4</b><image style="vertical-align: middle;" height="30" width="30"src="images/Token_Hull.png"/>
<br/>
</div>
<div class="squad">
<b class="pilot">Palob Godalhi (33)</b><br/>
<b class="shields">1</b> <image style="vertical-align: middle;" height="30" width="30" src="images/Token_Shield.png"/>
<b class="hull">4</b><image style="vertical-align: middle;" height="30" width="30"src="images/Token_Hull.png"/>
<br/>
</div>
</body>
</html>