stella-coder 3.9.2 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (235) hide show
  1. package/.mcp.json +11 -0
  2. package/.opencode/skills/banner-design/SKILL.md +196 -0
  3. package/.opencode/skills/banner-design/references/banner-sizes-and-styles.md +118 -0
  4. package/.opencode/skills/brand/SKILL.md +97 -0
  5. package/.opencode/skills/brand/references/approval-checklist.md +169 -0
  6. package/.opencode/skills/brand/references/asset-organization.md +157 -0
  7. package/.opencode/skills/brand/references/brand-guideline-template.md +140 -0
  8. package/.opencode/skills/brand/references/color-palette-management.md +186 -0
  9. package/.opencode/skills/brand/references/consistency-checklist.md +94 -0
  10. package/.opencode/skills/brand/references/logo-usage-rules.md +185 -0
  11. package/.opencode/skills/brand/references/messaging-framework.md +85 -0
  12. package/.opencode/skills/brand/references/typography-specifications.md +214 -0
  13. package/.opencode/skills/brand/references/update.md +118 -0
  14. package/.opencode/skills/brand/references/visual-identity.md +96 -0
  15. package/.opencode/skills/brand/references/voice-framework.md +88 -0
  16. package/.opencode/skills/brand/scripts/extract-colors.cjs +341 -0
  17. package/.opencode/skills/brand/scripts/inject-brand-context.cjs +349 -0
  18. package/.opencode/skills/brand/scripts/sync-brand-to-tokens.cjs +248 -0
  19. package/.opencode/skills/brand/scripts/tests/test_sync_brand_to_tokens.py +52 -0
  20. package/.opencode/skills/brand/scripts/validate-asset.cjs +387 -0
  21. package/.opencode/skills/brand/templates/brand-guidelines-starter.md +275 -0
  22. package/.opencode/skills/design/SKILL.md +313 -0
  23. package/.opencode/skills/design/data/cip/deliverables.csv +51 -0
  24. package/.opencode/skills/design/data/cip/industries.csv +21 -0
  25. package/.opencode/skills/design/data/cip/mockup-contexts.csv +21 -0
  26. package/.opencode/skills/design/data/cip/styles.csv +21 -0
  27. package/.opencode/skills/design/data/icon/styles.csv +16 -0
  28. package/.opencode/skills/design/data/logo/colors.csv +56 -0
  29. package/.opencode/skills/design/data/logo/industries.csv +56 -0
  30. package/.opencode/skills/design/data/logo/styles.csv +56 -0
  31. package/.opencode/skills/design/references/banner-sizes-and-styles.md +118 -0
  32. package/.opencode/skills/design/references/cip-deliverable-guide.md +95 -0
  33. package/.opencode/skills/design/references/cip-design.md +121 -0
  34. package/.opencode/skills/design/references/cip-prompt-engineering.md +84 -0
  35. package/.opencode/skills/design/references/cip-style-guide.md +68 -0
  36. package/.opencode/skills/design/references/design-routing.md +207 -0
  37. package/.opencode/skills/design/references/icon-design.md +122 -0
  38. package/.opencode/skills/design/references/logo-color-psychology.md +101 -0
  39. package/.opencode/skills/design/references/logo-design.md +92 -0
  40. package/.opencode/skills/design/references/logo-prompt-engineering.md +158 -0
  41. package/.opencode/skills/design/references/logo-style-guide.md +109 -0
  42. package/.opencode/skills/design/references/slides-copywriting-formulas.md +84 -0
  43. package/.opencode/skills/design/references/slides-create.md +4 -0
  44. package/.opencode/skills/design/references/slides-html-template.md +295 -0
  45. package/.opencode/skills/design/references/slides-layout-patterns.md +137 -0
  46. package/.opencode/skills/design/references/slides-strategies.md +94 -0
  47. package/.opencode/skills/design/references/slides.md +42 -0
  48. package/.opencode/skills/design/references/social-photos-design.md +329 -0
  49. package/.opencode/skills/design/scripts/cip/core.py +215 -0
  50. package/.opencode/skills/design/scripts/cip/generate.py +484 -0
  51. package/.opencode/skills/design/scripts/cip/render-html.py +424 -0
  52. package/.opencode/skills/design/scripts/cip/search.py +127 -0
  53. package/.opencode/skills/design/scripts/icon/generate.py +487 -0
  54. package/.opencode/skills/design/scripts/logo/core.py +175 -0
  55. package/.opencode/skills/design/scripts/logo/generate.py +362 -0
  56. package/.opencode/skills/design/scripts/logo/search.py +114 -0
  57. package/.opencode/skills/design-system/SKILL.md +244 -0
  58. package/.opencode/skills/design-system/data/slide-backgrounds.csv +11 -0
  59. package/.opencode/skills/design-system/data/slide-charts.csv +26 -0
  60. package/.opencode/skills/design-system/data/slide-color-logic.csv +14 -0
  61. package/.opencode/skills/design-system/data/slide-copy.csv +26 -0
  62. package/.opencode/skills/design-system/data/slide-layout-logic.csv +16 -0
  63. package/.opencode/skills/design-system/data/slide-layouts.csv +26 -0
  64. package/.opencode/skills/design-system/data/slide-strategies.csv +16 -0
  65. package/.opencode/skills/design-system/data/slide-typography.csv +15 -0
  66. package/.opencode/skills/design-system/references/component-specs.md +236 -0
  67. package/.opencode/skills/design-system/references/component-tokens.md +214 -0
  68. package/.opencode/skills/design-system/references/primitive-tokens.md +203 -0
  69. package/.opencode/skills/design-system/references/semantic-tokens.md +215 -0
  70. package/.opencode/skills/design-system/references/states-and-variants.md +241 -0
  71. package/.opencode/skills/design-system/references/tailwind-integration.md +251 -0
  72. package/.opencode/skills/design-system/references/token-architecture.md +224 -0
  73. package/.opencode/skills/design-system/scripts/embed-tokens.cjs +99 -0
  74. package/.opencode/skills/design-system/scripts/fetch-background.py +317 -0
  75. package/.opencode/skills/design-system/scripts/generate-slide.py +770 -0
  76. package/.opencode/skills/design-system/scripts/generate-tokens.cjs +205 -0
  77. package/.opencode/skills/design-system/scripts/html-token-validator.py +327 -0
  78. package/.opencode/skills/design-system/scripts/search-slides.py +218 -0
  79. package/.opencode/skills/design-system/scripts/slide-token-validator.py +35 -0
  80. package/.opencode/skills/design-system/scripts/slide_search_core.py +453 -0
  81. package/.opencode/skills/design-system/scripts/tests/test_validate_tokens.py +48 -0
  82. package/.opencode/skills/design-system/scripts/validate-tokens.cjs +246 -0
  83. package/.opencode/skills/design-system/templates/design-tokens-starter.json +143 -0
  84. package/.opencode/skills/slides/SKILL.md +40 -0
  85. package/.opencode/skills/slides/references/copywriting-formulas.md +84 -0
  86. package/.opencode/skills/slides/references/create.md +4 -0
  87. package/.opencode/skills/slides/references/html-template.md +295 -0
  88. package/.opencode/skills/slides/references/layout-patterns.md +137 -0
  89. package/.opencode/skills/slides/references/slide-strategies.md +94 -0
  90. package/.opencode/skills/ui-styling/LICENSE.txt +202 -0
  91. package/.opencode/skills/ui-styling/SKILL.md +324 -0
  92. package/.opencode/skills/ui-styling/references/canvas-design-system.md +320 -0
  93. package/.opencode/skills/ui-styling/references/shadcn-accessibility.md +471 -0
  94. package/.opencode/skills/ui-styling/references/shadcn-components.md +424 -0
  95. package/.opencode/skills/ui-styling/references/shadcn-theming.md +373 -0
  96. package/.opencode/skills/ui-styling/references/tailwind-customization.md +483 -0
  97. package/.opencode/skills/ui-styling/references/tailwind-responsive.md +382 -0
  98. package/.opencode/skills/ui-styling/references/tailwind-utilities.md +455 -0
  99. package/.opencode/skills/ui-styling/scripts/requirements.txt +17 -0
  100. package/.opencode/skills/ui-styling/scripts/shadcn_add.py +308 -0
  101. package/.opencode/skills/ui-styling/scripts/tailwind_config_gen.py +473 -0
  102. package/.opencode/skills/ui-styling/scripts/tests/coverage-ui.json +1 -0
  103. package/.opencode/skills/ui-styling/scripts/tests/requirements.txt +3 -0
  104. package/.opencode/skills/ui-styling/scripts/tests/test_shadcn_add.py +266 -0
  105. package/.opencode/skills/ui-styling/scripts/tests/test_tailwind_config_gen.py +394 -0
  106. package/.opencode/skills/ui-ux-pro-max/SKILL.md +396 -0
  107. package/.opencode/skills/ui-ux-pro-max/data/_sync_all.py +414 -0
  108. package/.opencode/skills/ui-ux-pro-max/data/app-interface.csv +31 -0
  109. package/.opencode/skills/ui-ux-pro-max/data/charts.csv +26 -0
  110. package/.opencode/skills/ui-ux-pro-max/data/colors.csv +193 -0
  111. package/.opencode/skills/ui-ux-pro-max/data/design.csv +1776 -0
  112. package/.opencode/skills/ui-ux-pro-max/data/draft.csv +1779 -0
  113. package/.opencode/skills/ui-ux-pro-max/data/google-fonts.csv +1924 -0
  114. package/.opencode/skills/ui-ux-pro-max/data/icons.csv +106 -0
  115. package/.opencode/skills/ui-ux-pro-max/data/landing.csv +35 -0
  116. package/.opencode/skills/ui-ux-pro-max/data/motion.csv +17 -0
  117. package/.opencode/skills/ui-ux-pro-max/data/products.csv +193 -0
  118. package/.opencode/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  119. package/.opencode/skills/ui-ux-pro-max/data/stacks/angular.csv +51 -0
  120. package/.opencode/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  121. package/.opencode/skills/ui-ux-pro-max/data/stacks/avalonia.csv +57 -0
  122. package/.opencode/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  123. package/.opencode/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  124. package/.opencode/skills/ui-ux-pro-max/data/stacks/javafx.csv +76 -0
  125. package/.opencode/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  126. package/.opencode/skills/ui-ux-pro-max/data/stacks/laravel.csv +51 -0
  127. package/.opencode/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  128. package/.opencode/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +71 -0
  129. package/.opencode/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  130. package/.opencode/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  131. package/.opencode/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  132. package/.opencode/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  133. package/.opencode/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  134. package/.opencode/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  135. package/.opencode/skills/ui-ux-pro-max/data/stacks/threejs.csv +54 -0
  136. package/.opencode/skills/ui-ux-pro-max/data/stacks/uno.csv +60 -0
  137. package/.opencode/skills/ui-ux-pro-max/data/stacks/uwp.csv +56 -0
  138. package/.opencode/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  139. package/.opencode/skills/ui-ux-pro-max/data/stacks/winui.csv +60 -0
  140. package/.opencode/skills/ui-ux-pro-max/data/stacks/wpf.csv +57 -0
  141. package/.opencode/skills/ui-ux-pro-max/data/styles.csv +85 -0
  142. package/.opencode/skills/ui-ux-pro-max/data/typography.csv +75 -0
  143. package/.opencode/skills/ui-ux-pro-max/data/ui-reasoning.csv +162 -0
  144. package/.opencode/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  145. package/.opencode/skills/ui-ux-pro-max/scripts/__pycache__/core.cpython-312.pyc +0 -0
  146. package/.opencode/skills/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-312.pyc +0 -0
  147. package/.opencode/skills/ui-ux-pro-max/scripts/core.py +274 -0
  148. package/.opencode/skills/ui-ux-pro-max/scripts/design_system.py +1329 -0
  149. package/.opencode/skills/ui-ux-pro-max/scripts/search.py +127 -0
  150. package/README.md +5 -0
  151. package/STELLA.md +1 -1
  152. package/dist/antimalware/database.mjs +871 -0
  153. package/dist/antimalware/index.mjs +8 -0
  154. package/dist/antimalware/scanner.mjs +591 -0
  155. package/dist/antimalware/ui.mjs +570 -0
  156. package/dist/banner.mjs +46 -0
  157. package/dist/index.mjs +3073 -0
  158. package/dist/markdown.mjs +100 -0
  159. package/dist/sea-config.json +4 -0
  160. package/dist/security.mjs +237 -0
  161. package/dist/theme.mjs +89 -0
  162. package/dist/tools.mjs +3145 -0
  163. package/install-stella.bat +44 -0
  164. package/package.json +4 -2
  165. package/presentation-advanced-features-demo/README.md +27 -0
  166. package/presentation-advanced-features-demo/index.html +371 -0
  167. package/presentation-advanced-features-demo/print.html +81 -0
  168. package/presentation-advanced-features-demo/slide-01.html +98 -0
  169. package/presentation-advanced-features-demo/slide-02.html +101 -0
  170. package/presentation-advanced-features-demo/slide-03.html +100 -0
  171. package/presentation-advanced-features-demo/slide-04.html +100 -0
  172. package/presentation-advanced-features-demo/slide-05.html +100 -0
  173. package/presentation-advanced-features-demo/slide-06.html +64 -0
  174. package/presentation-advanced-features-demo/slide-07.html +101 -0
  175. package/presentation-advanced-features-demo/slide-08.html +91 -0
  176. package/presentation-stella-coder---ai-coding-agent/README.md +27 -0
  177. package/presentation-stella-coder---ai-coding-agent/index.html +168 -0
  178. package/presentation-stella-coder---ai-coding-agent/slide-01.html +98 -0
  179. package/presentation-stella-coder---ai-coding-agent/slide-02.html +101 -0
  180. package/presentation-stella-coder---ai-coding-agent/slide-03.html +100 -0
  181. package/presentation-stella-coder---ai-coding-agent/slide-04.html +100 -0
  182. package/presentation-stella-coder---ai-coding-agent/slide-05.html +100 -0
  183. package/presentation-stella-coder---ai-coding-agent/slide-06.html +100 -0
  184. package/presentation-stella-coder---ai-coding-agent/slide-07.html +100 -0
  185. package/presentation-stella-coder---ai-coding-agent/slide-08.html +64 -0
  186. package/presentation-stella-coder---ai-coding-agent/slide-09.html +101 -0
  187. package/presentation-stella-coder---ai-coding-agent/slide-10.html +91 -0
  188. package/presentation-stella-coder-demo/README.md +27 -0
  189. package/presentation-stella-coder-demo/index.html +371 -0
  190. package/presentation-stella-coder-demo/slide-01.html +98 -0
  191. package/presentation-stella-coder-demo/slide-02.html +101 -0
  192. package/presentation-stella-coder-demo/slide-03.html +100 -0
  193. package/presentation-stella-coder-demo/slide-04.html +100 -0
  194. package/presentation-stella-coder-demo/slide-05.html +100 -0
  195. package/presentation-stella-coder-demo/slide-06.html +64 -0
  196. package/presentation-stella-coder-demo/slide-07.html +101 -0
  197. package/presentation-stella-coder-demo/slide-08.html +91 -0
  198. package/presentation-stella-coder-features/README.md +27 -0
  199. package/presentation-stella-coder-features/index.html +364 -0
  200. package/presentation-stella-coder-features/print.html +77 -0
  201. package/presentation-stella-coder-features/slide-01.html +98 -0
  202. package/presentation-stella-coder-features/slide-02.html +101 -0
  203. package/presentation-stella-coder-features/slide-03.html +100 -0
  204. package/presentation-stella-coder-features/slide-04.html +100 -0
  205. package/presentation-stella-coder-features/slide-05.html +64 -0
  206. package/presentation-stella-coder-features/slide-06.html +101 -0
  207. package/presentation-stella-coder-features/slide-07.html +91 -0
  208. package/presentation-test-presentation/README.md +27 -0
  209. package/presentation-test-presentation/index.html +350 -0
  210. package/presentation-test-presentation/print.html +69 -0
  211. package/presentation-test-presentation/slide-01.html +98 -0
  212. package/presentation-test-presentation/slide-02.html +101 -0
  213. package/presentation-test-presentation/slide-03.html +64 -0
  214. package/presentation-test-presentation/slide-04.html +101 -0
  215. package/presentation-test-presentation/slide-05.html +91 -0
  216. package/presentation-/321/202/320/265/321/201/321/202/320/276/320/262/320/260/321/217-/320/277/321/200/320/265/320/267/320/265/320/275/321/202/320/260/321/206/320/270/321/217/README.md +27 -0
  217. package/presentation-/321/202/320/265/321/201/321/202/320/276/320/262/320/260/321/217-/320/277/321/200/320/265/320/267/320/265/320/275/321/202/320/260/321/206/320/270/321/217/index.html +159 -0
  218. package/presentation-/321/202/320/265/321/201/321/202/320/276/320/262/320/260/321/217-/320/277/321/200/320/265/320/267/320/265/320/275/321/202/320/260/321/206/320/270/321/217/slide-01.html +98 -0
  219. package/presentation-/321/202/320/265/321/201/321/202/320/276/320/262/320/260/321/217-/320/277/321/200/320/265/320/267/320/265/320/275/321/202/320/260/321/206/320/270/321/217/slide-02.html +101 -0
  220. package/presentation-/321/202/320/265/321/201/321/202/320/276/320/262/320/260/321/217-/320/277/321/200/320/265/320/267/320/265/320/275/321/202/320/260/321/206/320/270/321/217/slide-03.html +100 -0
  221. package/presentation-/321/202/320/265/321/201/321/202/320/276/320/262/320/260/321/217-/320/277/321/200/320/265/320/267/320/265/320/275/321/202/320/260/321/206/320/270/321/217/slide-04.html +100 -0
  222. package/presentation-/321/202/320/265/321/201/321/202/320/276/320/262/320/260/321/217-/320/277/321/200/320/265/320/267/320/265/320/275/321/202/320/260/321/206/320/270/321/217/slide-05.html +64 -0
  223. package/presentation-/321/202/320/265/321/201/321/202/320/276/320/262/320/260/321/217-/320/277/321/200/320/265/320/267/320/265/320/275/321/202/320/260/321/206/320/270/321/217/slide-06.html +101 -0
  224. package/presentation-/321/202/320/265/321/201/321/202/320/276/320/262/320/260/321/217-/320/277/321/200/320/265/320/267/320/265/320/275/321/202/320/260/321/206/320/270/321/217/slide-07.html +91 -0
  225. package/stella-cli/coding-brain.mjs +753 -0
  226. package/stella-cli/index.mjs +931 -15
  227. package/stella-cli/mcp.mjs +296 -0
  228. package/stella-cli/presentations.mjs +1106 -0
  229. package/stella-cli/subagents.mjs +142 -0
  230. package/stella-cli/telegram-bot.mjs +824 -0
  231. package/stella-cli/tg-bg.bat +13 -0
  232. package/stella-cli/tg-server.bat +15 -0
  233. package/stella-cli/tg-server.mjs +116 -0
  234. package/stella-cli/theme.mjs +6 -4
  235. package/stella-coder-3.9.2.tgz +0 -0
@@ -0,0 +1,101 @@
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="ru">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
8
+ <style>
9
+ * { margin: 0; padding: 0; box-sizing: border-box; }
10
+ body {
11
+ font-family: 'Inter', sans-serif;
12
+ background: #ffffff;
13
+ color: #171717;
14
+ min-height: 100vh;
15
+ display: flex;
16
+ align-items: center;
17
+ justify-content: center;
18
+ }
19
+ .slide {
20
+ width: 1280px;
21
+ height: 720px;
22
+ padding: 80px;
23
+ display: flex;
24
+ flex-direction: column;
25
+ justify-content: center;
26
+ position: relative;
27
+ }
28
+ .slide-number {
29
+ position: absolute;
30
+ top: 40px;
31
+ right: 60px;
32
+ font-size: 14px;
33
+ color: #737373;
34
+ }
35
+ h2 {
36
+ font-size: 48px;
37
+ font-weight: 700;
38
+ margin-bottom: 40px;
39
+ color: #171717;
40
+ }
41
+ .content-grid {
42
+ display: grid;
43
+ grid-template-columns: 1fr 1fr;
44
+ gap: 40px;
45
+ }
46
+ .content-item {
47
+ padding: 24px;
48
+ background: #fafafa;
49
+ border-radius: 16px;
50
+ border: 1px solid #73737320;
51
+ }
52
+ .content-item h3 {
53
+ font-size: 20px;
54
+ font-weight: 600;
55
+ margin-bottom: 12px;
56
+ color: #000000;
57
+ }
58
+ .content-item p {
59
+ font-size: 16px;
60
+ line-height: 1.6;
61
+ color: #737373;
62
+ }
63
+ .bullet-list {
64
+ list-style: none;
65
+ padding: 0;
66
+ }
67
+ .bullet-list li {
68
+ font-size: 20px;
69
+ line-height: 1.8;
70
+ padding-left: 24px;
71
+ position: relative;
72
+ color: #171717;
73
+ }
74
+ .bullet-list li::before {
75
+ content: '';
76
+ position: absolute;
77
+ left: 0;
78
+ top: 50%;
79
+ transform: translateY(-50%);
80
+ width: 8px;
81
+ height: 8px;
82
+ background: #000000;
83
+ border-radius: 50%;
84
+ }
85
+ </style>
86
+ </head>
87
+ <body>
88
+ <div class="slide">
89
+ <div class="slide-number">3 / 3</div>
90
+ <h2>Заключение</h2>
91
+
92
+ <ul class="bullet-list">
93
+ <li>Основные выводы</li>
94
+ <li>Практическая значимость</li>
95
+ <li>Рекомендации</li>
96
+ <li>Направления дальнейших исследований</li>
97
+ </ul>
98
+
99
+ </div>
100
+ </body>
101
+ </html>
@@ -0,0 +1,91 @@
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="ru">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
8
+ <style>
9
+ * { margin: 0; padding: 0; box-sizing: border-box; }
10
+ body {
11
+ font-family: 'Inter', sans-serif;
12
+ background: #ffffff;
13
+ color: #171717;
14
+ min-height: 100vh;
15
+ display: flex;
16
+ align-items: center;
17
+ justify-content: center;
18
+ }
19
+ .slide {
20
+ width: 1280px;
21
+ height: 720px;
22
+ padding: 80px;
23
+ display: flex;
24
+ flex-direction: column;
25
+ justify-content: center;
26
+ align-items: center;
27
+ text-align: center;
28
+ position: relative;
29
+ overflow: hidden;
30
+ }
31
+ .slide::before {
32
+ content: '';
33
+ position: absolute;
34
+ top: 50%;
35
+ left: 50%;
36
+ transform: translate(-50%, -50%);
37
+ width: 600px;
38
+ height: 600px;
39
+ background: radial-gradient(circle, #00000020 0%, transparent 70%);
40
+ }
41
+ .content { position: relative; z-index: 1; }
42
+ h2 {
43
+ font-size: 64px;
44
+ font-weight: 800;
45
+ margin-bottom: 24px;
46
+ background: linear-gradient(135deg, #171717 0%, #000000 100%);
47
+ -webkit-background-clip: text;
48
+ -webkit-text-fill-color: transparent;
49
+ }
50
+ .subtitle {
51
+ font-size: 24px;
52
+ color: #737373;
53
+ margin-bottom: 48px;
54
+ }
55
+ .cta-buttons {
56
+ display: flex;
57
+ gap: 24px;
58
+ }
59
+ .cta-button {
60
+ padding: 16px 32px;
61
+ border-radius: 12px;
62
+ font-size: 18px;
63
+ font-weight: 600;
64
+ text-decoration: none;
65
+ transition: all 0.3s ease;
66
+ }
67
+ .cta-primary {
68
+ background: #000000;
69
+ color: #ffffff;
70
+ }
71
+ .cta-secondary {
72
+ background: transparent;
73
+ color: #171717;
74
+ border: 2px solid #73737340;
75
+ }
76
+ </style>
77
+ </head>
78
+ <body>
79
+ <div class="slide">
80
+ <div class="content">
81
+ <h2>Спасибо!</h2>
82
+ <p class="subtitle">Вопросы?</p>
83
+ <div class="cta-buttons">
84
+
85
+ <a class="cta-button cta-primary">Начать использовать</a>
86
+ <a class="cta-button cta-secondary">Узнать больше</a>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ </body>
91
+ </html>
@@ -0,0 +1,27 @@
1
+ # Тестовая презентация
2
+
3
+ ## Презентация
4
+
5
+ Эта презентация содержит 7 слайдов.
6
+
7
+ ### Просмотр
8
+
9
+ Откройте `index.html` в браузере для просмотра презентации.
10
+
11
+ ### Навигация
12
+
13
+ - Используйте клавиши ← → для навигации
14
+ - Нажмите F11 для полноэкранного режима
15
+
16
+ ### Тема
17
+
18
+ Modern Dark
19
+
20
+ ### Цвета
21
+
22
+ - Primary: #22c55e
23
+ - Secondary: #3b82f6
24
+ - Accent: #22c55e
25
+
26
+ ---
27
+ Создано с помощью Stella Coder
@@ -0,0 +1,159 @@
1
+ <!DOCTYPE html>
2
+ <html lang="ru">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Тестовая презентация</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
8
+ <style>
9
+ * { margin: 0; padding: 0; box-sizing: border-box; }
10
+ body {
11
+ font-family: 'Inter', sans-serif;
12
+ background: #0a0a0f;
13
+ overflow: hidden;
14
+ }
15
+ .presentation {
16
+ width: 100vw;
17
+ height: 100vh;
18
+ display: flex;
19
+ align-items: center;
20
+ justify-content: center;
21
+ }
22
+ .slide-container {
23
+ width: 1280px;
24
+ height: 720px;
25
+ transform-origin: center center;
26
+ }
27
+ .controls {
28
+ position: fixed;
29
+ bottom: 30px;
30
+ left: 50%;
31
+ transform: translateX(-50%);
32
+ display: flex;
33
+ gap: 12px;
34
+ z-index: 1000;
35
+ }
36
+ .control-btn {
37
+ width: 48px;
38
+ height: 48px;
39
+ border-radius: 12px;
40
+ border: 1px solid #94a3b830;
41
+ background: #111118;
42
+ color: #f8fafc;
43
+ cursor: pointer;
44
+ display: flex;
45
+ align-items: center;
46
+ justify-content: center;
47
+ transition: all 0.2s ease;
48
+ }
49
+ .control-btn:hover {
50
+ background: #22c55e;
51
+ color: #0a0a0f;
52
+ }
53
+ .progress {
54
+ position: fixed;
55
+ bottom: 0;
56
+ left: 0;
57
+ height: 4px;
58
+ background: linear-gradient(90deg, #22c55e, #3b82f6);
59
+ transition: width 0.3s ease;
60
+ }
61
+ .slide-counter {
62
+ position: fixed;
63
+ bottom: 40px;
64
+ right: 30px;
65
+ font-size: 14px;
66
+ color: #94a3b8;
67
+ }
68
+ </style>
69
+ </head>
70
+ <body>
71
+ <div class="presentation">
72
+ <div class="slide-container" id="slideContainer">
73
+
74
+ <div class="slide" id="slide1" style="display: block">
75
+ <iframe src="slide-01.html" width="1280" height="720" frameborder="0" style="border: none;"></iframe>
76
+ </div>
77
+ <div class="slide" id="slide2" style="display: none">
78
+ <iframe src="slide-02.html" width="1280" height="720" frameborder="0" style="border: none;"></iframe>
79
+ </div>
80
+ <div class="slide" id="slide3" style="display: none">
81
+ <iframe src="slide-03.html" width="1280" height="720" frameborder="0" style="border: none;"></iframe>
82
+ </div>
83
+ <div class="slide" id="slide4" style="display: none">
84
+ <iframe src="slide-04.html" width="1280" height="720" frameborder="0" style="border: none;"></iframe>
85
+ </div>
86
+ <div class="slide" id="slide5" style="display: none">
87
+ <iframe src="slide-05.html" width="1280" height="720" frameborder="0" style="border: none;"></iframe>
88
+ </div>
89
+ <div class="slide" id="slide6" style="display: none">
90
+ <iframe src="slide-06.html" width="1280" height="720" frameborder="0" style="border: none;"></iframe>
91
+ </div>
92
+ <div class="slide" id="slide7" style="display: none">
93
+ <iframe src="slide-07.html" width="1280" height="720" frameborder="0" style="border: none;"></iframe>
94
+ </div>
95
+ </div>
96
+ </div>
97
+
98
+ <div class="controls">
99
+ <button class="control-btn" onclick="prevSlide()">←</button>
100
+ <button class="control-btn" onclick="nextSlide()">→</button>
101
+ <button class="control-btn" onclick="toggleFullscreen()">⛶</button>
102
+ </div>
103
+
104
+ <div class="progress" id="progress"></div>
105
+ <div class="slide-counter" id="slideCounter">1 / 7</div>
106
+
107
+ <script>
108
+ let currentSlide = 1;
109
+ const totalSlides = 7;
110
+
111
+ function showSlide(n) {
112
+ document.querySelectorAll('.slide').forEach(s => s.style.display = 'none');
113
+ document.getElementById('slide' + n).style.display = 'block';
114
+ document.getElementById('slideCounter').textContent = n + ' / ' + totalSlides;
115
+ document.getElementById('progress').style.width = ((n / totalSlides) * 100) + '%';
116
+ }
117
+
118
+ function nextSlide() {
119
+ if (currentSlide < totalSlides) {
120
+ currentSlide++;
121
+ showSlide(currentSlide);
122
+ }
123
+ }
124
+
125
+ function prevSlide() {
126
+ if (currentSlide > 1) {
127
+ currentSlide--;
128
+ showSlide(currentSlide);
129
+ }
130
+ }
131
+
132
+ function toggleFullscreen() {
133
+ if (!document.fullscreenElement) {
134
+ document.documentElement.requestFullscreen();
135
+ } else {
136
+ document.exitFullscreen();
137
+ }
138
+ }
139
+
140
+ document.addEventListener('keydown', (e) => {
141
+ if (e.key === 'ArrowRight' || e.key === ' ') nextSlide();
142
+ if (e.key === 'ArrowLeft') prevSlide();
143
+ if (e.key === 'f') toggleFullscreen();
144
+ });
145
+
146
+ // Scale to fit
147
+ function scalePresentation() {
148
+ const container = document.getElementById('slideContainer');
149
+ const scaleX = window.innerWidth / 1280;
150
+ const scaleY = window.innerHeight / 720;
151
+ const scale = Math.min(scaleX, scaleY) * 0.9;
152
+ container.style.transform = 'scale(' + scale + ')';
153
+ }
154
+
155
+ window.addEventListener('resize', scalePresentation);
156
+ scalePresentation();
157
+ </script>
158
+ </body>
159
+ </html>
@@ -0,0 +1,98 @@
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="ru">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Тестовая презентация</title>
8
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
9
+ <style>
10
+ * { margin: 0; padding: 0; box-sizing: border-box; }
11
+ body {
12
+ font-family: 'Inter', sans-serif;
13
+ background: #0a0a0f;
14
+ color: #f8fafc;
15
+ min-height: 100vh;
16
+ display: flex;
17
+ align-items: center;
18
+ justify-content: center;
19
+ }
20
+ .slide {
21
+ width: 1280px;
22
+ height: 720px;
23
+ padding: 80px;
24
+ display: flex;
25
+ flex-direction: column;
26
+ justify-content: center;
27
+ position: relative;
28
+ overflow: hidden;
29
+ }
30
+ .slide::before {
31
+ content: '';
32
+ position: absolute;
33
+ top: -50%;
34
+ right: -50%;
35
+ width: 100%;
36
+ height: 100%;
37
+ background: radial-gradient(circle, #22c55e15 0%, transparent 70%);
38
+ }
39
+ .slide::after {
40
+ content: '';
41
+ position: absolute;
42
+ bottom: -30%;
43
+ left: -30%;
44
+ width: 80%;
45
+ height: 80%;
46
+ background: radial-gradient(circle, #3b82f610 0%, transparent 70%);
47
+ }
48
+ .content { position: relative; z-index: 1; }
49
+ h1 {
50
+ font-size: 72px;
51
+ font-weight: 800;
52
+ line-height: 1.1;
53
+ margin-bottom: 24px;
54
+ background: linear-gradient(135deg, #f8fafc 0%, #94a3b8 100%);
55
+ -webkit-background-clip: text;
56
+ -webkit-text-fill-color: transparent;
57
+ }
58
+ .subtitle {
59
+ font-size: 28px;
60
+ color: #94a3b8;
61
+ font-weight: 400;
62
+ max-width: 600px;
63
+ }
64
+ .author {
65
+ position: absolute;
66
+ bottom: 60px;
67
+ left: 80px;
68
+ font-size: 18px;
69
+ color: #94a3b8;
70
+ }
71
+ .date {
72
+ position: absolute;
73
+ bottom: 60px;
74
+ right: 80px;
75
+ font-size: 16px;
76
+ color: #94a3b8;
77
+ }
78
+ .accent-line {
79
+ width: 80px;
80
+ height: 4px;
81
+ background: linear-gradient(90deg, #22c55e, #3b82f6);
82
+ border-radius: 2px;
83
+ margin-bottom: 32px;
84
+ }
85
+ </style>
86
+ </head>
87
+ <body>
88
+ <div class="slide">
89
+ <div class="content">
90
+ <div class="accent-line"></div>
91
+ <h1>Тестовая презентация</h1>
92
+ <p class="subtitle"></p>
93
+ </div>
94
+ <div class="author">Stella</div>
95
+ <div class="date">10.07.2026</div>
96
+ </div>
97
+ </body>
98
+ </html>
@@ -0,0 +1,101 @@
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="ru">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
8
+ <style>
9
+ * { margin: 0; padding: 0; box-sizing: border-box; }
10
+ body {
11
+ font-family: 'Inter', sans-serif;
12
+ background: #0a0a0f;
13
+ color: #f8fafc;
14
+ min-height: 100vh;
15
+ display: flex;
16
+ align-items: center;
17
+ justify-content: center;
18
+ }
19
+ .slide {
20
+ width: 1280px;
21
+ height: 720px;
22
+ padding: 80px;
23
+ display: flex;
24
+ flex-direction: column;
25
+ justify-content: center;
26
+ position: relative;
27
+ }
28
+ .slide-number {
29
+ position: absolute;
30
+ top: 40px;
31
+ right: 60px;
32
+ font-size: 14px;
33
+ color: #94a3b8;
34
+ }
35
+ h2 {
36
+ font-size: 48px;
37
+ font-weight: 700;
38
+ margin-bottom: 40px;
39
+ color: #f8fafc;
40
+ }
41
+ .content-grid {
42
+ display: grid;
43
+ grid-template-columns: 1fr 1fr;
44
+ gap: 40px;
45
+ }
46
+ .content-item {
47
+ padding: 24px;
48
+ background: #111118;
49
+ border-radius: 16px;
50
+ border: 1px solid #94a3b820;
51
+ }
52
+ .content-item h3 {
53
+ font-size: 20px;
54
+ font-weight: 600;
55
+ margin-bottom: 12px;
56
+ color: #22c55e;
57
+ }
58
+ .content-item p {
59
+ font-size: 16px;
60
+ line-height: 1.6;
61
+ color: #94a3b8;
62
+ }
63
+ .bullet-list {
64
+ list-style: none;
65
+ padding: 0;
66
+ }
67
+ .bullet-list li {
68
+ font-size: 20px;
69
+ line-height: 1.8;
70
+ padding-left: 24px;
71
+ position: relative;
72
+ color: #f8fafc;
73
+ }
74
+ .bullet-list li::before {
75
+ content: '';
76
+ position: absolute;
77
+ left: 0;
78
+ top: 50%;
79
+ transform: translateY(-50%);
80
+ width: 8px;
81
+ height: 8px;
82
+ background: #22c55e;
83
+ border-radius: 50%;
84
+ }
85
+ </style>
86
+ </head>
87
+ <body>
88
+ <div class="slide">
89
+ <div class="slide-number">1 / 5</div>
90
+ <h2>Введение</h2>
91
+
92
+ <ul class="bullet-list">
93
+ <li>Что такое Тестовая презентация</li>
94
+ <li>Актуальность темы</li>
95
+ <li>Цели и задачи работы</li>
96
+ <li>Методы исследования</li>
97
+ </ul>
98
+
99
+ </div>
100
+ </body>
101
+ </html>
@@ -0,0 +1,100 @@
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="ru">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
8
+ <style>
9
+ * { margin: 0; padding: 0; box-sizing: border-box; }
10
+ body {
11
+ font-family: 'Inter', sans-serif;
12
+ background: #0a0a0f;
13
+ color: #f8fafc;
14
+ min-height: 100vh;
15
+ display: flex;
16
+ align-items: center;
17
+ justify-content: center;
18
+ }
19
+ .slide {
20
+ width: 1280px;
21
+ height: 720px;
22
+ padding: 80px;
23
+ display: flex;
24
+ flex-direction: column;
25
+ justify-content: center;
26
+ position: relative;
27
+ }
28
+ .slide-number {
29
+ position: absolute;
30
+ top: 40px;
31
+ right: 60px;
32
+ font-size: 14px;
33
+ color: #94a3b8;
34
+ }
35
+ h2 {
36
+ font-size: 48px;
37
+ font-weight: 700;
38
+ margin-bottom: 40px;
39
+ color: #f8fafc;
40
+ }
41
+ .content-grid {
42
+ display: grid;
43
+ grid-template-columns: 1fr 1fr;
44
+ gap: 40px;
45
+ }
46
+ .content-item {
47
+ padding: 24px;
48
+ background: #111118;
49
+ border-radius: 16px;
50
+ border: 1px solid #94a3b820;
51
+ }
52
+ .content-item h3 {
53
+ font-size: 20px;
54
+ font-weight: 600;
55
+ margin-bottom: 12px;
56
+ color: #22c55e;
57
+ }
58
+ .content-item p {
59
+ font-size: 16px;
60
+ line-height: 1.6;
61
+ color: #94a3b8;
62
+ }
63
+ .bullet-list {
64
+ list-style: none;
65
+ padding: 0;
66
+ }
67
+ .bullet-list li {
68
+ font-size: 20px;
69
+ line-height: 1.8;
70
+ padding-left: 24px;
71
+ position: relative;
72
+ color: #f8fafc;
73
+ }
74
+ .bullet-list li::before {
75
+ content: '';
76
+ position: absolute;
77
+ left: 0;
78
+ top: 50%;
79
+ transform: translateY(-50%);
80
+ width: 8px;
81
+ height: 8px;
82
+ background: #22c55e;
83
+ border-radius: 50%;
84
+ }
85
+ </style>
86
+ </head>
87
+ <body>
88
+ <div class="slide">
89
+ <div class="slide-number">2 / 5</div>
90
+ <h2>Основные понятия</h2>
91
+
92
+ <ul class="bullet-list">
93
+ <li>Определения</li>
94
+ <li>Классификация</li>
95
+ <li>Примеры</li>
96
+ </ul>
97
+
98
+ </div>
99
+ </body>
100
+ </html>