forked from gbgwcalculator/gbgwcalculator.github.io
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
114 lines (114 loc) · 5.81 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>GBM Calculator</title>
<meta name="description" content="GBM Calculator">
<meta name="author" content="co-authored by rmkane, gbgwcalculator, autoricecooker">
<meta name="keywords" content="GBM, Gundam, Gundam Battle Mobile, Calculator">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="language" content="ES6">
<meta name="msapplication-config" content="IEconfig.xml">
<link rel="icon" type="image/png" sizes="16x16" href="dist/assets/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="dist/assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="dist/assets/favicon-96x96.png">
<link rel="apple-touch-icon" href="dist/assets/apple-iphone-old.png">
<link rel="apple-touch-icon" sizes="180x180" href="dist/assets/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="152x152" href="dist/assets/apple-ipad-retina.png">
<link rel="apple-touch-icon" sizes="167x167" href="dist/assets/apple-ipad-pro.png">
<link rel="manifest" href="site.webmanifest">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/balloon-css/1.0.4/balloon.min.css"/>
<link rel="stylesheet" href="dist/css/bundle.min.css"/>
<script src="dist/js/bundle.min.js" type="text/javascript"></script>
</head>
<body>
<div class="app">
<header>
<div class="options">
<h1>GBM Calculator v1.4.1</h1>
<div class="filters">
<span>Filters</span>
<select class="unselected-filter js-filter-attr">
<option class="placeholder-option" value="">Attribute</option>
</select>
<select class="unselected-filter js-filter-wt1">
<option class="placeholder-option" value="">Word Tag 1</option>
</select>
<select class="unselected-filter js-filter-wt2">
<option class="placeholder-option" value="">Word Tag 2</option>
</select>
<select class="unselected-filter js-filter-ex-cat">
<option class="placeholder-option" value="">EX Category</option>
</select>
<select class="unselected-filter js-filter-part-trait">
<option class="placeholder-option" value="">Part Trait</option>
</select>
<select class="unselected-filter js-filter-weapon-type">
<option class="placeholder-option" value="">Weapon Type</option>
</select>
</div>
<div class="other">
<div class="sort">
<span>Sort</span>
<select class="js-sort-param">
<option></option>
</select>
</div>
<div class="map-bonus">
Apply map bonus <input class="js-apply-map-bonus" type="checkbox"/>
</div>
<div class="theme-toggle">
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox"/>
<div class="slider round"></div>
</label>
</div>
</div>
</div>
</div>
</header>
<div class="container js-container"></div>
<footer>
<div class="notice">
©2020 <a href="https://github.com/rmkane" target="_blank">rmkane @GitHub</a> |
All Rights Reserved | <a href="https://www.mozilla.org/en-US/MPL/2.0/" target="_blank">Mozilla Public License Version 2.0</a><br>
Gundam And All Respective Names are Trademark & © of Bandai Co., Ltd. 1979—2020<br>
Gundam Battle Mobile is Trademark & © of BANDAI NAMCO Entertainment.<br>
This application is not affiliated with Bandai Co. or BANDAI NAMCO Entertainment.<br>
For issues or requests submit a <a href="https://github.com/rmkane/gbgwcalculator.github.io/issues" target="_blank"> new issue</a>
or contact <a href="https://discord.gg/6aMUnBD" target="_blank">GBM: Newtype Labs</a>.<br>
For inquiries, contact <a href="mailto:developer@rmkane.com">developer@rmkane.com</a>.
</div>
<div class="brands">
<div class="brand-badge-wrapper" title="BANDAI NAMCO Entertainment">
<a href="https://www.bandainamcoent.com" target="_blank">
<img src="dist/assets/bandai-namco-logo.svg" height="24em" alt="BANDAI NAMCO Entertainment"/>
</a>
</div>
<div class="brand-badge-wrapper" title="Bandai Co., Ltd.">
<a href="https://www.bandai.com/" target="_blank">
<img src="dist/assets/bandai-logo.svg" height="24em" alt="Bandai Co., Ltd."/>
</a>
</div>
<div class="brand-badge-wrapper" title="Gundam Battle Mobile">
<a href="https://g-b-en.ggame.jp" target="_blank">
<img src="dist/assets/gbm-logo.jpg" height="24em" alt="Gundam Battle Mobile"/>
</a>
</div>
<div class="brand-badge-wrapper">
<a href="https://discord.gg/6aMUnBD" title="GBM: Newtype Labs – Discord" target="_blank">
<img src="dist/assets/newtype-labs-logo.svg" height="24em" alt="Gundam Newtype Labs"/>
</a>
</div>
<div class="brand-badge-wrapper">
<a href="https://github.com/about" title="GitHub, Inc." target="_blank">
<img src="dist/assets/github-logo.svg" height="24em" alt="GitHub, Inc."/>
</a>
</div>
</div>
</footer>
</div>
</body>
</html>