-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (51 loc) · 1.16 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
<!doctype html>
<html lang="en">
<head>
<title>Tauri App</title>
<script type="module" src="/src/main.ts" defer></script>
<style>
#status-message {
position: fixed;
top: 20px;
left: 20px;
padding: 15px 25px;
background-color: rgba(0, 0, 0, 0.8);
color: white;
font-family: system-ui, -apple-system, sans-serif;
border-radius: 8px;
min-width: 300px;
max-width: 800px;
font-size: 16px;
line-height: 1.5;
display: none;
white-space: pre-wrap;
word-wrap: break-word;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border: 2px solid transparent;
}
#status-message a {
color: #5a9ee6;
text-decoration: none;
}
#status-message a:hover {
text-decoration: underline;
}
/* Status types */
#status-message.status-error {
border-color: #ff4444;
}
#status-message.status-ok {
border-color: #00cc00;
}
#status-message.status-working {
border-color: #3498db;
}
#status-message.status-info {
border-color: #333333;
}
</style>
</head>
<body>
<div id="status-message"></div>
</body>
</html>