forked from cdanis/urzas-overlay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spotter.html
58 lines (55 loc) · 2.68 KB
/
spotter.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
52
53
54
55
56
57
58
<html>
<head>
<title>spotter dashboard</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="spotter.css">
<link rel="stylesheet" type="text/css" href="css/cards.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Metal+Mania" rel="stylesheet">
<link href="css/mana.css" rel="stylesheet" type="text/css"/>
<script src="https://code.jquery.com/jquery-3.1.0.min.js"
integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<script type="text/javascript" src="underscore-min.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.6.4/firebase.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript" src="cards.js"></script>
<script type="text/javascript" src="firebase.js"></script>
<script type="text/javascript" src="spotter.js"></script>
</head>
<body>
<svg height="0" width="0">
<defs>
<clipPath id="cardLeft" transform="translate(-68, -2)">
<path d="M200.430496,2 L299.319838,2 C299.319838,2 302.564538,6.89754972 302.718477,16.5 C302.872416,26.1024503 299.319838,30 299.319838,30 L200.430496,30 L3.40350126,30 C3.40350126,30 -0.149076946,26.1024503 0.00486211923,16.5 C0.158801185,6.89754972 3.40350126,2 3.40350126,2 L200.430496,2 Z"></path>
</clipPath>
<clipPath id="cardRight" transform="translate(1, -2)">
<path d="M200.430496,2 L299.319838,2 C299.319838,2 302.564538,6.89754972 302.718477,16.5 C302.872416,26.1024503 299.319838,30 299.319838,30 L200.430496,30 L3.40350126,30 C3.40350126,30 -0.149076946,26.1024503 0.00486211923,16.5 C0.158801185,6.89754972 3.40350126,2 3.40350126,2 L200.430496,2 Z"></path>
</clipPath>
</defs>
</svg>
<header class="header">
<div id="user-pic" style="display:none;"></div>
<div id="sign-out" class="button" style="display:none;">
Sign out
</div>
<div id="sign-in" class="button" style="display:none;">
Sign in
</div>
</header>
<div id="p1" class="button selected"></div>
<div id="p2" class="button"></div>
<div id="p1tab" class="tab">
<div class="reset button" data-player="p1deck">Reset</div>
<div class="total"></div>
<div class="lands"></div>
<div class="cards"></div>
<div class="hand left"></div>
</div>
<div id="p2tab" class="tab" style="display: none;">
<div class="reset button" data-player="p2deck">Reset</div>
<div class="total"></div>
<div class="lands"></div>
<div class="cards"></div>
<div class="hand left"></div>
</div>
</body>