-
Notifications
You must be signed in to change notification settings - Fork 2
/
pointCalculator.html
36 lines (33 loc) · 1.54 KB
/
pointCalculator.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
<!DOCTYPE html>
<html>
<head>
<title>ATXIII Point Calculator</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.2/jquery-ui.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/calc.js"></script>
</head>
<body>
<div class="wrapper">
<h1>AT Point Calculator</h1>
<!-- Point Floating Window -->
<div class="floatingright">
<h4>Points</h4>
<p id="pointpara">Total Points: <span id="totalpoints"></span></p>
</div>
<!-- Ship Form -->
<div class="floatingleft">
<div class="ship" id="orig">
<input type="text" class="shipEntry">
</div>
<button id="newShip">Add Ship</button>
</div>
<br>
<div class="bottom">
<textarea id="fleetcomp" placeholder="Paste Fleet Composition Window here, then click Points box above."></textarea>
</div>
<div><p><i>Points current as of July 7th, 2016, using ATXIV points. Note T1 Industrial ships are not listed (yet - 2 points each fyi). Calculator created by John Hexis for Affirmative. Alliance, now maintained by Greygal. Source code available on our <a href="https://github.com/AffirmativeAlliance/at-calculator/">Github.</a></p></i></div></div>
</body>
</html>