-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
335 lines (298 loc) · 9.79 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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Cache setting -->
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="0">
<!-- Preview -->
<title>DD Tools</title>
<!-- Preview: Primary Meta Tags -->
<meta name="title" content="Arce0406 | DD Tools">
<meta name="description" content="A website for VTuber audiences.">
<!-- Theme CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body class="has-background-light">
<!-- Modal: Merge & Import -->
<div class="modal" id="modal_import" data-mode="">
<div class="modal-background"></div>
<div class="modal-card">
<!-- modal card header -->
<header class="modal-card-head">
<span class="material-symbols-outlined mr-2">
mediation
</span>
<p class="modal-card-title">
Import
</p>
<button class="delete" aria-label="close"></button>
</header>
<!-- modal card body -->
<div class="modal-card-body">
<div class="block">
<div class="block-total">
</div>
<div class="is-flex is-justify-content-space-around block-duplicate">
<p class="title">
Old
</p>
<p class="title">
New
</p>
</div>
<hr class="mt-0">
<div id="radio-list">
<!-- <div class="radio-item-row">
<label class="radio-item box">
<p>
<strong>Title</strong>
<br>
Content
</p>
<input type="radio" name="a1">
</label>
<label class="radio-item box">
<p>
<strong>Title</strong>
<br>
Content
</p>
<input type="radio" name="a1" checked>
</label>
</div> -->
</div>
</div>
</div>
<!-- modal card footer -->
<footer class="modal-card-foot is-justify-content-space-between">
<div class="left">
<button class="button is-danger is-outlined is-edit-mode d-none">
<span>Delete</span>
<span class="icon is-small">
<i class="material-symbols-outlined">
delete
</i>
</span>
</button>
</div>
<div class="right">
<button class="button btn-save is-success">Save changes</button>
<button class="button btn-cancel">Cancel</button>
</div>
</footer>
</div>
</div>
<!-- Modal: Tag add/edit -->
<div class="modal" id="modal_tag" data-mode="">
<div class="modal-background"></div>
<div class="modal-card">
<!-- modal card header -->
<header class="modal-card-head is-add-mode">
<span class="material-symbols-outlined mr-2">
add
</span>
<p class="modal-card-title">
Add
</p>
<button class="delete" aria-label="close"></button>
</header>
<header class="modal-card-head is-edit-mode d-none">
<span class="material-symbols-outlined mr-2">
edit
</span>
<p class="modal-card-title">
Edit
</p>
<button class="delete" aria-label="close"></button>
</header>
<!-- modal card body -->
<div class="modal-card-body">
<div class="field">
<label class="label">Title</label>
<div class="control">
<input id="modal_input_title" class="input" type="text" placeholder="Text input">
</div>
</div>
<div class="field">
<label class="label">Content</label>
<div class="control">
<input id="modal_input_content" class="input" type="text" placeholder="Text input">
</div>
</div>
</div>
<!-- modal card footer -->
<footer class="modal-card-foot is-justify-content-space-between">
<div class="left">
<button class="button btn-delete is-danger is-outlined is-edit-mode d-none">
<span>Delete</span>
<span class="icon is-small">
<i class="material-symbols-outlined">
delete
</i>
</span>
</button>
</div>
<div class="right">
<button class="button btn-save is-success">Save changes</button>
<button class="button btn-cancel">Cancel</button>
</div>
</footer>
</div>
</div>
<!-- Navbar -->
<nav class="navbar main-navbar has-border shadow-light is-fixed-top">
<div class="navbar-brand">
<a class="navbar-item title mb-0" href="#">
DD Tools
</a>
<div class="navbar-burger" data-target="navMenuMain">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div id="navMenuMain" class="navbar-menu">
<div class="navbar-start">
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="tabs is-toggle">
<ul>
<li class="is-active" data-target="section1" data-group="section"><a>コール Storage</a></li>
<li data-target="section2" data-group="section"><a>How to use</a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
<!-- section: コール Storage -->
<section class="section tab-panel is-active" id="section1" data-group="section">
<main class="box">
<!-- Title & Toolbar -->
<div class="field is-grouped">
<p class="control title is-4 is-expanded">
コール Storage
</p>
<p class="control d-none">
<a id="btn-download" class="button is-white mb-0">
<span class="icon">
<i class="material-symbols-outlined">
download
</i>
</span>
</a>
</p>
<p class="control d-none">
<a id="btn-import" class="button is-white mb-0">
<span class="icon">
<i class="material-symbols-outlined">
mediation
</i>
</span>
</a>
</p>
<p class="control">
<button id="btn-share" class="button is-white mb-0">
<span class="icon">
<i class="material-symbols-outlined">
share
</i>
</span>
</button>
</p>
</div>
<!-- Search bar -->
<p class="control has-icons-left is-expanded">
<input id="input_search" class="input" type="text" placeholder="Conditions">
<span class="icon is-small is-left">
<span class="material-symbols-outlined mr-0">
search
</span>
</span>
</p>
<hr>
<!-- Items -->
<div id="call-blocks" class="columns is-multiline block p-3">
<!-- Items add -->
<div class="column is-3 is-func">
<div class="card">
<div class="card-content">
<div class="content">
<div class="is-flex is-justify-content-space-between is-align-content-center">
<p class="title is-4">
Add
</p>
<button class="button is-white btn-add" aria-label="edit">
<span class="icon">
<i class="material-symbols-outlined">
add
</i>
</span>
</button>
</div>
Add New Item
</div>
</div>
</div>
</div>
<div class="column is-3 is-public">
<div class="card" data-title="Clap" data-content="👏👏👏">
<div class="card-content">
<div class="is-flex">
<p class="title is-4 is-flex-grow-1">
Clap
</p>
<button class="button is-white btn-edit" aria-label="edit">
<span class="icon">
<i class="material-symbols-outlined">
edit
</i>
</span>
</button>
<button class="button is-white btn-copy" aria-label="copy">
<span class="icon is-small">
<i class="material-symbols-outlined">
content_copy
</i>
</span>
</button>
</div>
<div class="content">
👏👏👏
</div>
</div>
</div>
</div>
</div>
</main>
</section>
<!-- section: Twitter Spaces CC Expander -->
<section class="section tab-panel" id="section2" data-group="section">
<main class="box has-background-white">
<div class="content">
</div>
</main>
</section>
<!-- notification -->
<div id="notifiy" class="notification-wrapper">
<div class="notification is-info">
<button class="delete"></button>
<p></p>
</div>
</div>
<!-- Scripts -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="js/navbar.js"></script>
<script src="js/message.js"></script>
<script src="js/tab.js"></script>
<script type="module" src="./js/main.js"></script>
</body>
</html>