-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
41 lines (36 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="/src/css/theme.css" />
<link rel="stylesheet" href="/src/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tauri App</title>
<script type="module" src="/src/side_navigation_panel.js" defer></script>
<script type="module" src="/src/main.js"></script>
<script type="module" src="/src/installer_app.js"></script>
<script type="module" src="/src/qemu_config.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" />
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
</head>
<div id="left-panel" class="background body-large">
<md-icon-button toggle id="dark-light-mode-toggle" style="display:flex; justify-content: flex-start; padding: 10px; padding-bottom: 20px;">
<md-icon slot="selected">dark_mode</md-icon>
<md-icon>light_mode</md-icon>
</md-icon-button>
<side-navigation-panel id="left-panel-navigation">
<div data-name="install">1. Source</div>
<div data-name="settings">2. Settings</div>
<div data-name="progress">3. Copying files</div>
<div data-name="bootloader">4. Bootloader</div>
</side-navigation-panel>
</div>
<body class="background body-large">
<installer-app id="installer_app">
<hr slot="file_name" style="width: 1px; height: 30px; border: none; position: fixed; margin-left: 290px; background-color: violet;">
<input slot="file_name" id="file-name" placeholder="Select ISO file..." />
<md-filled-text-field id="os-title" slot="os_title" label="Title" style="margin-bottom: 20px;"></md-filled-text-field>
<md-outlined-text-field id="install-dir" slot="install_dir" label="Installation Directory" style="width: 400px;"></md-outlined-text-field>
</installer-app>
</body>
</html>