-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
146 lines (128 loc) · 4.71 KB
/
test.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="./template_files/528101.png">
<title>TPPC Damage Calculator</title>
<link rel="canonical" href="https://getbootstrap.com/docs/4.0/examples/blog/">
<link href="./template_files/bootstrap.min.css" rel="stylesheet">
<link href="./template_files/css" rel="stylesheet">
<link href="./template_files/blog.css" rel="stylesheet">
<script type="text/javascript" src="./data/poke_data.js"></script>
<script type="text/javascript" src="./data/move_data.js"></script>
<script type="text/javascript" src="./data/weakness.js"></script>
<script type="text/javascript" src="./damage.js"></script>
<!-- JavaScript functions here -->
<style>
body {
background-color: black;
color: red;
}
.container,
.card,
.blog-header,
.nav-scroller,
.blog-footer {
background-color: #1a1a1a;
color: red;
}
a,
a:hover {
color: red;
}
.btn-danger {
background-color: red;
border-color: red;
}
.btn-danger:hover {
background-color: darkred;
border-color: darkred;
}
.form-control {
background-color: #333;
color: red;
border: 1px solid red;
}
.icon {
filter: hue-rotate(0deg) brightness(0.5);
}
.table {
border-color: red;
}
.table th,
.table td {
border-color: red;
}
.table thead th {
background-color: #550000;
color: white;
}
.table tbody tr:hover {
background-color: #550000;
color: white;
}
</style>
</head>
<body onload="load()">
<header class="blog-header py-3">
<div class="row flex-nowrap justify-content-between align-items-center">
<div class="col text-center">
<span class='icon'></span>
<img src="./template_files/528101.png" class="rounded float-left" alt="..." width="42" height="42">
<img src="./template_files/528101.png" class="rounded float-right" alt="..." width="42" height="42">
<img src="./template_files/528101.png" class="rounded float-right" alt="..." width="42" height="42">
</div>
</div>
</header>
<div class="nav-scroller py-1 mb-2">
</div>
<div class="container">
<!-- Attacking and Defending Pokemon Sections -->
<div class="row mb-3">
<!-- Attacking Pokemon Section -->
<div class="col-md-6">
<!-- Attacking Pokemon Details Here -->
</div>
<!-- Defending Pokemon Section -->
<div class="col-md-6">
<!-- Defending Pokemon Details Here -->
</div>
<button type="button" class="btn btn-danger btn-lg btn-block" onclick="compute()"><b>Compute</b></button>
</div>
</div>
<div class="p-3 mb-3 bg-light rounded">
<table class="table table-bordered">
<thead>
<tr>
<th scope="col" colspan="2">
<h4><b style="color: #28a745;">RESULT</b></h4>
</th>
</tr>
</thead>
<tbody id="result">
<!-- Results will be displayed here -->
</tbody>
</table>
</div>
<footer class="blog-footer">
<p>Static webpage built for <a href="https://tppcrpg.net">TPPC</a> by <a
href="https://forums.tppc.info/member.php?u=7361">@chrizandr</a>.</p>
<p>
<a href="https://github.com/chrizandr/tppc_damage">Source Code</a>
</p>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>
</html>