forked from alhooromar014-wq/quran-learning-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (84 loc) · 2.6 KB
/
index.html
File metadata and controls
91 lines (84 loc) · 2.6 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
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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hafiz AI - مساعد حفظ القرآن</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Noto+Sans+Arabic:wght@300;400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Noto Sans Arabic', sans-serif;
background-color: #FAF9F6;
}
.quran-text {
font-family: 'Amiri', serif;
}
/* Ornate Mushaf Page Style */
.mushaf-page-container {
background: radial-gradient(circle, #ffffff 0%, #fdfbf7 100%);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
position: relative;
}
/* Multi-layered Ornate Frame */
.mushaf-frame {
position: absolute;
inset: 0;
pointer-events: none;
border: 2px solid #C9A44C;
margin: 10px;
z-index: 5;
}
.mushaf-frame-outer {
position: absolute;
inset: 0;
pointer-events: none;
border: 15px solid transparent;
border-image: linear-gradient(45deg, #0F3D2E, #C9A44C, #0F3D2E) 1;
z-index: 4;
}
/* Corner Decorations */
.mushaf-corner {
position: absolute;
width: 60px;
height: 60px;
z-index: 10;
color: #C9A44C;
}
.corner-tl { top: 0; left: 0; }
.corner-tr { top: 0; right: 0; transform: rotate(90deg); }
.corner-bl { bottom: 0; left: 0; transform: rotate(-90deg); }
.corner-br { bottom: 0; right: 0; transform: rotate(180deg); }
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #C9A44C;
border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: #0F3D2E;
}
</style>
<link rel="stylesheet" href="/index.css">
<script type="importmap">
{
"imports": {
"lucide-react": "https://esm.sh/lucide-react@^0.469.0",
"@google/genai": "https://esm.sh/@google/genai@^1.35.0",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"react/": "https://esm.sh/react@^19.2.3/",
"react": "https://esm.sh/react@^19.2.3"
}
}
</script>
<script type="module" crossorigin src="/assets/index-CXw_jHdq.js"></script>
</head>
<body>
<div id="root"></div>
</body>
</html>