forked from sethjwilliamson/LoRTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraveyard.html
45 lines (45 loc) · 2.36 KB
/
graveyard.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
<html>
<head>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="myStyle.css">
<script>let $ = require('jquery');</script>
<script>require('popper.js');</script>
<script>require('bootstrap');</script>
</head>
<body style="overflow: hidden;">
<p class="font-loader" style="font-family: BeaufortforLOL-Bold;">. </p>
<p class="font-loader" style="font-family: BeaufortforLOL-Regular;">. </p>
<p class="font-loader" style="font-family: Univers;">. </p>
<p class="font-loader" style="font-family: Univers-Cond;">. </p>
<div id="top-container" class="top-container">
<canvas class="top" id="top"></canvas>
<input class="btn-minimize" type="image" src="buttons/minimize.png" onclick="minimize()">
<div id="options">
<div class="btn-group" data-toggle="buttons" id="player">
<label class="btn btn-lor-left">
<input style="display: none;" type="radio" name="optionsPlayer" id="option-player-m" onclick="buttonPressed(this)"> My
</label>
<label class="btn btn-lor-middle btn-lor-middle-active">
<input style="display: none;" type="radio" name="optionsPlayer" id="option-player-b" onclick="buttonPressed(this)" checked> Both
</label>
<label class="btn btn-lor-right">
<input style="display: none;" type="radio" name="optionsPlayer" id="option-player-e" onclick="buttonPressed(this)"> Enemy
</label>
</div>
<div class="btn-group" data-toggle="buttons" id="type">
<label class="btn btn-lor-left">
<input style="display: none;" type="radio" name="optionsType" id="option-type-u" onclick="buttonPressed(this)"> Units
</label>
<label class="btn btn-lor-middle btn-lor-middle-active">
<input style="display: none;" type="radio" name="optionsType" id="option-type-b" onclick="buttonPressed(this)" checked> Both
</label>
<label class="btn btn-lor-right">
<input style="display: none;" type="radio" name="optionsType" id="option-type-s" onclick="buttonPressed(this)"> Spells
</label>
</div>
</div>
</div>
<div id="cardContents" style="height: calc(100% - 124px); overflow: auto; position: absolute; top:124px"></div>
</body>
<script src="./graveyardRenderer.js"></script>
</html>