-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathassists.html
131 lines (131 loc) · 6.05 KB
/
assists.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.75">
<meta name="description" content="A guest star gallery for Skullgirls Mobile. View the stats and abilities of all guest stars, translated in any language offered in the game.">
<link rel="shortcut icon" type="image/png" href="image/official/Button_Modifiers.png">
<link rel="stylesheet" type="text/css" href="index.css">
<title>Skullgirls Mobile Guest Star Gallery</title>
<script type="application/javascript" src="assist.js"></script>
</head>
<body class="diamond">
<div id="header">
<span class="banner cinematic gold-gradient" id="skullgirls-mobile"></span>
<wbr>
<span class="assist-gallery banner cinematic dependent-gradient"></span>
<div class="ribbon">
<div class="scroller">
<div>
<a target="_blank" href="https://github.com/krazete/sgm/blob/main/README.md" class="tagged" id="version">7.1.0</a>
|
<a href="https://krazete.github.io/sgmnow" id="sgmnow">
<img src="https://krazete.github.io/sgmnow/ArtCalendar.png">
</a>
|
<a href="index.html" class="fighters"></a>
|
<a href="moves.html" class="moves"></a>
|
<a href="catalysts.html" class="catalysts"></a>
|
<a href="artifacts.html" class="artifacts"></a>
|
<a href="ratings.html" class="ratings"></a>
</div>
</div>
</div>
<div class="scroller">
<div id="language-menu">
<input type="radio" name="language" id="en">
<label for="en" class="tagged"></label>
<input type="radio" name="language" id="ja">
<label for="ja" class="tagged"></label>
<input type="radio" name="language" id="fr">
<label for="fr" class="tagged"></label>
<input type="radio" name="language" id="de">
<label for="de" class="tagged"></label>
<input type="radio" name="language" id="es">
<label for="es" class="tagged"></label>
<input type="radio" name="language" id="ko">
<label for="ko" class="tagged"></label>
<input type="radio" name="language" id="zh-cn">
<label for="zh-cn" class="tagged"></label>
<input type="radio" name="language" id="ru">
<label for="ru" class="tagged"></label>
<input type="radio" name="language" id="pt-br">
<label for="pt-br" class="tagged"></label>
</div>
</div>
</div>
<div id="collection">
<div class="fill-row" id="search-menu">
<input type="text" class="cinematic" id="searchbox">
<div class="scroller">
<div>
<div>
<input type="radio" name="search" id="search-mn">
<label for="search-mn"></label>
</div>
<div>
<input type="radio" name="search" id="search-vn">
<label for="search-vn"></label>
</div>
<div>
<input type="radio" name="search" id="search-d">
<label for="search-d" class="ability-type"></label>
</div>
</div>
</div>
</div>
<div class="fill-row cinematic" id="loading">
<img src="image/huh.gif">
</div>
</div>
<div id="footer">
<div class="hidden" id="menu">
<div class="scroller half" id="filter-menu">
<div>
<span class="tagged cinematic silver-gradient" id="filter-label"></span>
<input type="checkbox" id="filter-cancel">
<label for="filter-cancel"><img src="image/official/constraints_no.png" class="icon"></label>
<div class="divider"></div>
<input type="checkbox" id="filter-bdrain">
<label for="filter-bdrain"><img src="image/official/BrainDrain_MasteryIcon.png" class="icon"></label>
<input type="checkbox" id="filter-min">
<label for="filter-min"><img src="image/official/Minette_MasteryIcon.png" class="icon"></label>
</div>
</div>
<div class="scroller half" id="sort-menu">
<div>
<span class="tagged cinematic silver-gradient" id="sort-label"></span>
<div class="divider"></div>
<input type="radio" name="sort" id="sort-abc">
<label for="sort-abc"></label>
<input type="radio" name="sort" id="sort-element">
<label for="sort-element"></label>
</div>
</div>
</div>
<div id="dock">
<div id="dock-left">
<img src="image/official/ZoomOut.png" class="button" id="zoom-out">
<img src="image/official/ZoomIn.png" class="button" id="zoom-in">
</div>
<div class="scroller" id="level-menu">
<div>
<span class="cinematic dependent-gradient" id="level-label"></span>
<div>
<input type="text" pattern="\d*" min="1" max="20" value="20" class="cinematic" id="level-text">
<div class="level-icon icon"></div>
</div>
<input type="range" min="1" max="20" value="20" id="level-range">
</div>
</div>
<div id="dock-right">
<img src="image/official/icon_filter.png" class="icon" id="settings">
</div>
</div>
</div>
</body>
</html>