-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathframe.html
60 lines (57 loc) · 2.07 KB
/
frame.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
<!Doctype html>
<html>
<head>
<title>Webtoon Downloader</title>
<meta charset="utf-8">
<link href="./css/frameLess.css" rel="stylesheet" type="text/css">
<link href="./css/common.css" rel="stylesheet" type="text/css">
<link href="./css/card.css" rel="stylesheet" type="text/css">
<link href="./css/input.css" rel="stylesheet" type="text/css">
<link href="./css/search.css" rel="stylesheet" type="text/css">
<link href="./css/detail.css" rel="stylesheet" type="text/css">
<link href="./css/button.css" rel="stylesheet" type="text/css">
<link href="./css/radio.css" rel="stylesheet" type="text/css">
<link href="./css/progress.css" rel="stylesheet" type="text/css">
<link id="theme" rel="stylesheet" type="text/css">
<link href="./css/nouislider.css" rel="stylesheet">
<script src="./js/nouislider.js"></script>
<script src="./js/wNumb.js"></script>
<script src="./js/main.js"></script>
</head>
<body>
<header id="titlebar">
<div id="drag-region">
<div id="window-title">
<span id="appTitle">Webtoon Downloader</span>
</div>
<div id="window-controls">
<div class="button" id="fullscreen-button">
<span></span>
</div>
<div class="button" id="unfullscreen-button">
<span></span>
</div>
<div class="button" id="min-button">
<span></span>
</div>
<div class="button" id="max-button">
<span></span>
</div>
<div class="button" id="restore-button">
<span></span>
</div>
<div class="button" id="close-button">
<span></span>
</div>
</div>
</div>
</header>
<div id="main">
<div style="height:calc(100vh - 32px);display: flex;align-items: center;justify-content: center;">
<img src="res/logo.png" style="width:200px;height: 200px;">
</div>
</div>
<div id="scripts"></div>
<div id="toast"></div>
</body>
</html>