-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (66 loc) · 4.27 KB
/
Copy pathindex.html
File metadata and controls
67 lines (66 loc) · 4.27 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
<!DOCTYPE html>
<html lang="ru">
<head>
<script src="boot-theme.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover, maximum-scale=5.0, user-scalable=yes">
<title>КАР-точки — запоминай слова</title>
<meta name="description" content="КАР-точки: карточки для запоминания слов, терминов и цитат с интервальным повторением.">
<meta name="theme-color" content="#F2EBDD" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#15120E" media="(prefers-color-scheme: dark)">
<link rel="icon" href="icons/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="icons/apple-touch-icon.png">
<link rel="manifest" href="manifest.webmanifest">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="КАР-точки">
<meta name="format-detection" content="telephone=no">
<!-- frame-ancestors only via HTTP headers (public/_headers); invalid in <meta> and triggers console errors -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'wasm-unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: https:; connect-src 'self' https://*.supabase.co https://api.giphy.com https://pixabay.com https://generativelanguage.googleapis.com https://api.groq.com https://supadata.ai https://api.mymemory.translated.net; font-src 'self' data:; base-uri 'self'; form-action 'self';">
<link rel="preload" href="css/fonts/golos-cyr.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="css/fonts/golos-latin.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="css/fonts/unbounded-cyr.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="css/fonts/unbounded-latin.woff2" as="font" type="font/woff2" crossorigin>
<!-- tokens.css — единственный источник правды. Строго первым. -->
<link rel="stylesheet" href="css/tokens.css">
<link rel="stylesheet" href="css/fonts/fonts.css">
<!-- Параллельные link вместо @import в style.css — все CSS стартуют одним RTT -->
<link rel="stylesheet" href="css/components/modal.css">
<link rel="stylesheet" href="css/screens/home.css">
<link rel="stylesheet" href="css/screens/folder.css">
<link rel="stylesheet" href="css/screens/card-editor.css">
<link rel="stylesheet" href="css/screens/review.css">
<link rel="stylesheet" href="css/screens/settings.css">
<link rel="stylesheet" href="css/screens/stats.css">
<link rel="stylesheet" href="css/screens/youtube-import.css">
<link rel="stylesheet" href="css/screens/notes.css">
<link rel="stylesheet" href="css/screens/note-editor.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="app" class="app">
<div class="boot-splash" id="bootSplash">
<!-- Знак «В · Портрет»: Corvus cornix крупным планом, две краски.
Тело — серое перо, обрезано краем формата. Точки внизу — «кар». -->
<svg class="boot-crow" viewBox="0 0 40 54" width="80" height="108" aria-hidden="true">
<defs><clipPath id="bootCrop"><rect x="0" y="0" width="40" height="40"/></clipPath></defs>
<g fill="currentColor">
<rect class="boot-plate" x="0" y="0" width="40" height="40" rx="3"/>
<g clip-path="url(#bootCrop)">
<circle class="boot-body" cx="19" cy="37" r="16"/>
<circle class="boot-head" cx="17" cy="17" r="11"/>
<path class="boot-head" d="M26 12.5 L40 17.5 L26 22.5 Z"/>
<circle class="boot-eye" cx="13.5" cy="14" r="3.4"/>
</g>
<circle cx="8" cy="49" r="3" class="boot-dot d1"/>
<circle cx="20" cy="49" r="3" class="boot-dot d2"/>
<circle cx="32" cy="49" r="3" class="boot-dot d3"/>
</g>
</svg>
</div>
</div>
<div id="toasts" class="toasts" aria-live="polite"></div>
<div id="modalRoot"></div>
<script type="module" src="js/app.js"></script>
</body>
</html>