-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 2.37 KB
/
index.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
40
41
42
43
44
45
46
47
48
49
50
51
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script src="settings.js"></script>
<script src="data_model.js"></script>
<script src="data.js"></script>
<script src="script.js"></script>
</head>
<body>
<div class="sidebar">
<h1 id="title"></h1>
<script>
document.getElementById("title").innerHTML = title;
</script>
<table id="plan"></table>
</div>
<div class="slide">
<img id="sponsor_logo"></img>
<div id="tournement_start" style="display:none">
<div style="width:66%;float:left;">
<div style="height:60%">
<img src="eventlogos/default.png" class="logo" id="game_logo" style="position:relative;top:50%;transform:translateY(-50%)"/>
</div>
<div style="height:40%">
<p align="center" style="margin:0">Sponsoreret af <span id="tournement_sponsor_name"></span></p>
<img src="sponsorlogos/default2.png" class="logo" style="max-width:80%; width:80%" id="tournement_sponsor_logo"/>
</div>
</div>
<div style="width:33%;float:right;">
<div style="height:33%">
<h1 id="tournement_name" style="margin:0;padding-top:1em"></h1>
<p id="tournement_message" style="margin:0"></p>
</div>
<div style="height:33%">
<svg width="300" height="300">
<path id="timer_fill" fill="none" stroke="#3c3" stroke-width="135"/>
<circle cx="150" cy="150" r="135" stroke="black" stroke-width="10" fill="none"/>
<text id="timer_text" x="150" y="150" text-anchor="middle" alignment-baseline="central" font-size="67">30:00</text>
</svg>
</div>
<div style="height:33%">
<p style="margin:0;padding-top:1em">Turnerings ansvarlige</p>
<table id="responsible_table" style="width:100%"></table>
</div>
</div>
</div>
<div>
</div>
</body
</html>