-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdevelopment.html
72 lines (62 loc) · 2.29 KB
/
development.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
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<title>Al-Quran App</title>
<link rel="stylesheet" href="assets/css/style.min.css">
<meta property="og:site_name" content="quran-app">
<meta property="og:title" content="Al-Quran App">
<meta property="og:type" content="website">
<meta property="og:description" content="Read Al-Quran Online with ease!">
<meta property="og:image" content="/assets/image.png">
<meta property="og:image:secure_url" content="/assets/image.png">
<meta property="og:image:width" content="2026">
<meta property="og:image:height" content="588">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Al-Quran App">
<meta name="twitter:description" content="Read Al-Quran Online with ease!">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--background: #f4f4f4;
--main-color: #308d4d;
--secondary-color: #fff;
--light-secondary: #f1f1f1;
--border-color: #f1f1f1;
--icon-color: #000;
--text-color: #000;
--gray-color: #555;
--badge-background: #f1f1f1;
--active-badge-background: #fff;
--badge-color: #000;
--active-badge-color: #000;
--scrollbar-bg: #e6e6e6;
--scrollbar-bar: #888;
}
html.mode\:dark {
--background: #212121;
--main-color: #308d4d;
--secondary-color: #282828;
--light-secondary: #222222;
--border-color: #333333;
--icon-color: #fff;
--text-color: #fff;
--gray-color: #cdcbcb;
--badge-background: #f1f1f1;
--active-badge-background: #fff;
--badge-color: #000;
--active-badge-color: #000;
--scrollbar-bg: #303030;
--scrollbar-bar: #444;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>