-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (54 loc) · 2.03 KB
/
index.html
File metadata and controls
56 lines (54 loc) · 2.03 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Memora</title>
<!-- Content Security Policy for Electron security -->
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline' 'unsafe-eval';">
<link rel="icon" type="image/png" href="icon.png" />
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #0f172a;
overflow: hidden;
margin: 0;
padding: 0;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.2);
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.3);
}
.glass-panel {
background: rgba(17, 25, 40, 0.75);
backdrop-filter: blur(16px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.125);
}
/* Editor Overrides */
.editor-content:focus {
outline: none;
}
.editor-content ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 0.5rem; }
.editor-content ol { list-style-type: decimal; padding-left: 1.5rem; margin-bottom: 0.5rem; }
.editor-content li { margin-bottom: 0.25rem; }
.editor-content h1 { font-size: 1.5rem; font-weight: 800; margin: 1.25rem 0 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 0.5rem; line-height: 1.2; }
.editor-content h2 { font-size: 1.25rem; font-weight: 700; margin: 1rem 0 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.25rem; }
.editor-content input[type="checkbox"] { cursor: pointer; accent-color: #60a5fa; width: 1rem; height: 1rem; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>