-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstreamoverlay.html
More file actions
51 lines (49 loc) · 2.21 KB
/
streamoverlay.html
File metadata and controls
51 lines (49 loc) · 2.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width"/>
<link rel="stylesheet" href="styles/streamoverlay.css"/>
<title>Battles 2 Overlay</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Urbanist&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Urbanist&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Gabarito&display=swap" rel="stylesheet">
</head>
<body>
<main id="main">
<div id="bannerContainer">
</div>
<div class="bannerContent">
<section class="topText" id="topText">
<h3 class="luckiestGuy" id="playerName"></h3>
<h5 id="clanName"></h5>
<p style="margin-left: auto;"></p>
</section>
<section class="mainContent">
<div class="score">
<h5>Score</h5>
<div class="horizontalLine"></div>
<div class="scoreContainer">
<h3 id="score"></h3>
<h3 class="scoreChange" id="scoreChange"></h3>
</div>
</div>
<div class="wonLost">
<h1 class="luckiestGuy" id="wonLost"></h1>
</div>
<div class="place">
<h3 id="place"></h3>
</div>
</section>
</div>
</main>
</body>
<script type="module" src="/scripts/streamoverlay.js"></script>
<style class="bannerStyle">
</style>
</html>