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.
- package/.mcp.json +11 -0
- package/.opencode/skills/banner-design/SKILL.md +196 -0
- package/.opencode/skills/banner-design/references/banner-sizes-and-styles.md +118 -0
- package/.opencode/skills/brand/SKILL.md +97 -0
- package/.opencode/skills/brand/references/approval-checklist.md +169 -0
- package/.opencode/skills/brand/references/asset-organization.md +157 -0
- package/.opencode/skills/brand/references/brand-guideline-template.md +140 -0
- package/.opencode/skills/brand/references/color-palette-management.md +186 -0
- package/.opencode/skills/brand/references/consistency-checklist.md +94 -0
- package/.opencode/skills/brand/references/logo-usage-rules.md +185 -0
- package/.opencode/skills/brand/references/messaging-framework.md +85 -0
- package/.opencode/skills/brand/references/typography-specifications.md +214 -0
- package/.opencode/skills/brand/references/update.md +118 -0
- package/.opencode/skills/brand/references/visual-identity.md +96 -0
- package/.opencode/skills/brand/references/voice-framework.md +88 -0
- package/.opencode/skills/brand/scripts/extract-colors.cjs +341 -0
- package/.opencode/skills/brand/scripts/inject-brand-context.cjs +349 -0
- package/.opencode/skills/brand/scripts/sync-brand-to-tokens.cjs +248 -0
- package/.opencode/skills/brand/scripts/tests/test_sync_brand_to_tokens.py +52 -0
- package/.opencode/skills/brand/scripts/validate-asset.cjs +387 -0
- package/.opencode/skills/brand/templates/brand-guidelines-starter.md +275 -0
- package/.opencode/skills/design/SKILL.md +313 -0
- package/.opencode/skills/design/data/cip/deliverables.csv +51 -0
- package/.opencode/skills/design/data/cip/industries.csv +21 -0
- package/.opencode/skills/design/data/cip/mockup-contexts.csv +21 -0
- package/.opencode/skills/design/data/cip/styles.csv +21 -0
- package/.opencode/skills/design/data/icon/styles.csv +16 -0
- package/.opencode/skills/design/data/logo/colors.csv +56 -0
- package/.opencode/skills/design/data/logo/industries.csv +56 -0
- package/.opencode/skills/design/data/logo/styles.csv +56 -0
- package/.opencode/skills/design/references/banner-sizes-and-styles.md +118 -0
- package/.opencode/skills/design/references/cip-deliverable-guide.md +95 -0
- package/.opencode/skills/design/references/cip-design.md +121 -0
- package/.opencode/skills/design/references/cip-prompt-engineering.md +84 -0
- package/.opencode/skills/design/references/cip-style-guide.md +68 -0
- package/.opencode/skills/design/references/design-routing.md +207 -0
- package/.opencode/skills/design/references/icon-design.md +122 -0
- package/.opencode/skills/design/references/logo-color-psychology.md +101 -0
- package/.opencode/skills/design/references/logo-design.md +92 -0
- package/.opencode/skills/design/references/logo-prompt-engineering.md +158 -0
- package/.opencode/skills/design/references/logo-style-guide.md +109 -0
- package/.opencode/skills/design/references/slides-copywriting-formulas.md +84 -0
- package/.opencode/skills/design/references/slides-create.md +4 -0
- package/.opencode/skills/design/references/slides-html-template.md +295 -0
- package/.opencode/skills/design/references/slides-layout-patterns.md +137 -0
- package/.opencode/skills/design/references/slides-strategies.md +94 -0
- package/.opencode/skills/design/references/slides.md +42 -0
- package/.opencode/skills/design/references/social-photos-design.md +329 -0
- package/.opencode/skills/design/scripts/cip/core.py +215 -0
- package/.opencode/skills/design/scripts/cip/generate.py +484 -0
- package/.opencode/skills/design/scripts/cip/render-html.py +424 -0
- package/.opencode/skills/design/scripts/cip/search.py +127 -0
- package/.opencode/skills/design/scripts/icon/generate.py +487 -0
- package/.opencode/skills/design/scripts/logo/core.py +175 -0
- package/.opencode/skills/design/scripts/logo/generate.py +362 -0
- package/.opencode/skills/design/scripts/logo/search.py +114 -0
- package/.opencode/skills/design-system/SKILL.md +244 -0
- package/.opencode/skills/design-system/data/slide-backgrounds.csv +11 -0
- package/.opencode/skills/design-system/data/slide-charts.csv +26 -0
- package/.opencode/skills/design-system/data/slide-color-logic.csv +14 -0
- package/.opencode/skills/design-system/data/slide-copy.csv +26 -0
- package/.opencode/skills/design-system/data/slide-layout-logic.csv +16 -0
- package/.opencode/skills/design-system/data/slide-layouts.csv +26 -0
- package/.opencode/skills/design-system/data/slide-strategies.csv +16 -0
- package/.opencode/skills/design-system/data/slide-typography.csv +15 -0
- package/.opencode/skills/design-system/references/component-specs.md +236 -0
- package/.opencode/skills/design-system/references/component-tokens.md +214 -0
- package/.opencode/skills/design-system/references/primitive-tokens.md +203 -0
- package/.opencode/skills/design-system/references/semantic-tokens.md +215 -0
- package/.opencode/skills/design-system/references/states-and-variants.md +241 -0
- package/.opencode/skills/design-system/references/tailwind-integration.md +251 -0
- package/.opencode/skills/design-system/references/token-architecture.md +224 -0
- package/.opencode/skills/design-system/scripts/embed-tokens.cjs +99 -0
- package/.opencode/skills/design-system/scripts/fetch-background.py +317 -0
- package/.opencode/skills/design-system/scripts/generate-slide.py +770 -0
- package/.opencode/skills/design-system/scripts/generate-tokens.cjs +205 -0
- package/.opencode/skills/design-system/scripts/html-token-validator.py +327 -0
- package/.opencode/skills/design-system/scripts/search-slides.py +218 -0
- package/.opencode/skills/design-system/scripts/slide-token-validator.py +35 -0
- package/.opencode/skills/design-system/scripts/slide_search_core.py +453 -0
- package/.opencode/skills/design-system/scripts/tests/test_validate_tokens.py +48 -0
- package/.opencode/skills/design-system/scripts/validate-tokens.cjs +246 -0
- package/.opencode/skills/design-system/templates/design-tokens-starter.json +143 -0
- package/.opencode/skills/slides/SKILL.md +40 -0
- package/.opencode/skills/slides/references/copywriting-formulas.md +84 -0
- package/.opencode/skills/slides/references/create.md +4 -0
- package/.opencode/skills/slides/references/html-template.md +295 -0
- package/.opencode/skills/slides/references/layout-patterns.md +137 -0
- package/.opencode/skills/slides/references/slide-strategies.md +94 -0
- package/.opencode/skills/ui-styling/LICENSE.txt +202 -0
- package/.opencode/skills/ui-styling/SKILL.md +324 -0
- package/.opencode/skills/ui-styling/references/canvas-design-system.md +320 -0
- package/.opencode/skills/ui-styling/references/shadcn-accessibility.md +471 -0
- package/.opencode/skills/ui-styling/references/shadcn-components.md +424 -0
- package/.opencode/skills/ui-styling/references/shadcn-theming.md +373 -0
- package/.opencode/skills/ui-styling/references/tailwind-customization.md +483 -0
- package/.opencode/skills/ui-styling/references/tailwind-responsive.md +382 -0
- package/.opencode/skills/ui-styling/references/tailwind-utilities.md +455 -0
- package/.opencode/skills/ui-styling/scripts/requirements.txt +17 -0
- package/.opencode/skills/ui-styling/scripts/shadcn_add.py +308 -0
- package/.opencode/skills/ui-styling/scripts/tailwind_config_gen.py +473 -0
- package/.opencode/skills/ui-styling/scripts/tests/coverage-ui.json +1 -0
- package/.opencode/skills/ui-styling/scripts/tests/requirements.txt +3 -0
- package/.opencode/skills/ui-styling/scripts/tests/test_shadcn_add.py +266 -0
- package/.opencode/skills/ui-styling/scripts/tests/test_tailwind_config_gen.py +394 -0
- package/.opencode/skills/ui-ux-pro-max/SKILL.md +396 -0
- package/.opencode/skills/ui-ux-pro-max/data/_sync_all.py +414 -0
- package/.opencode/skills/ui-ux-pro-max/data/app-interface.csv +31 -0
- package/.opencode/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/.opencode/skills/ui-ux-pro-max/data/colors.csv +193 -0
- package/.opencode/skills/ui-ux-pro-max/data/design.csv +1776 -0
- package/.opencode/skills/ui-ux-pro-max/data/draft.csv +1779 -0
- package/.opencode/skills/ui-ux-pro-max/data/google-fonts.csv +1924 -0
- package/.opencode/skills/ui-ux-pro-max/data/icons.csv +106 -0
- package/.opencode/skills/ui-ux-pro-max/data/landing.csv +35 -0
- package/.opencode/skills/ui-ux-pro-max/data/motion.csv +17 -0
- package/.opencode/skills/ui-ux-pro-max/data/products.csv +193 -0
- package/.opencode/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/angular.csv +51 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/avalonia.csv +57 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/javafx.csv +76 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/laravel.csv +51 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +71 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/threejs.csv +54 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/uno.csv +60 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/uwp.csv +56 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/winui.csv +60 -0
- package/.opencode/skills/ui-ux-pro-max/data/stacks/wpf.csv +57 -0
- package/.opencode/skills/ui-ux-pro-max/data/styles.csv +85 -0
- package/.opencode/skills/ui-ux-pro-max/data/typography.csv +75 -0
- package/.opencode/skills/ui-ux-pro-max/data/ui-reasoning.csv +162 -0
- package/.opencode/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/.opencode/skills/ui-ux-pro-max/scripts/__pycache__/core.cpython-312.pyc +0 -0
- package/.opencode/skills/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-312.pyc +0 -0
- package/.opencode/skills/ui-ux-pro-max/scripts/core.py +274 -0
- package/.opencode/skills/ui-ux-pro-max/scripts/design_system.py +1329 -0
- package/.opencode/skills/ui-ux-pro-max/scripts/search.py +127 -0
- package/README.md +5 -0
- package/STELLA.md +1 -1
- package/dist/antimalware/database.mjs +871 -0
- package/dist/antimalware/index.mjs +8 -0
- package/dist/antimalware/scanner.mjs +591 -0
- package/dist/antimalware/ui.mjs +570 -0
- package/dist/banner.mjs +46 -0
- package/dist/index.mjs +3073 -0
- package/dist/markdown.mjs +100 -0
- package/dist/sea-config.json +4 -0
- package/dist/security.mjs +237 -0
- package/dist/theme.mjs +89 -0
- package/dist/tools.mjs +3145 -0
- package/install-stella.bat +44 -0
- package/package.json +4 -2
- package/presentation-advanced-features-demo/README.md +27 -0
- package/presentation-advanced-features-demo/index.html +371 -0
- package/presentation-advanced-features-demo/print.html +81 -0
- package/presentation-advanced-features-demo/slide-01.html +98 -0
- package/presentation-advanced-features-demo/slide-02.html +101 -0
- package/presentation-advanced-features-demo/slide-03.html +100 -0
- package/presentation-advanced-features-demo/slide-04.html +100 -0
- package/presentation-advanced-features-demo/slide-05.html +100 -0
- package/presentation-advanced-features-demo/slide-06.html +64 -0
- package/presentation-advanced-features-demo/slide-07.html +101 -0
- package/presentation-advanced-features-demo/slide-08.html +91 -0
- package/presentation-stella-coder---ai-coding-agent/README.md +27 -0
- package/presentation-stella-coder---ai-coding-agent/index.html +168 -0
- package/presentation-stella-coder---ai-coding-agent/slide-01.html +98 -0
- package/presentation-stella-coder---ai-coding-agent/slide-02.html +101 -0
- package/presentation-stella-coder---ai-coding-agent/slide-03.html +100 -0
- package/presentation-stella-coder---ai-coding-agent/slide-04.html +100 -0
- package/presentation-stella-coder---ai-coding-agent/slide-05.html +100 -0
- package/presentation-stella-coder---ai-coding-agent/slide-06.html +100 -0
- package/presentation-stella-coder---ai-coding-agent/slide-07.html +100 -0
- package/presentation-stella-coder---ai-coding-agent/slide-08.html +64 -0
- package/presentation-stella-coder---ai-coding-agent/slide-09.html +101 -0
- package/presentation-stella-coder---ai-coding-agent/slide-10.html +91 -0
- package/presentation-stella-coder-demo/README.md +27 -0
- package/presentation-stella-coder-demo/index.html +371 -0
- package/presentation-stella-coder-demo/slide-01.html +98 -0
- package/presentation-stella-coder-demo/slide-02.html +101 -0
- package/presentation-stella-coder-demo/slide-03.html +100 -0
- package/presentation-stella-coder-demo/slide-04.html +100 -0
- package/presentation-stella-coder-demo/slide-05.html +100 -0
- package/presentation-stella-coder-demo/slide-06.html +64 -0
- package/presentation-stella-coder-demo/slide-07.html +101 -0
- package/presentation-stella-coder-demo/slide-08.html +91 -0
- package/presentation-stella-coder-features/README.md +27 -0
- package/presentation-stella-coder-features/index.html +364 -0
- package/presentation-stella-coder-features/print.html +77 -0
- package/presentation-stella-coder-features/slide-01.html +98 -0
- package/presentation-stella-coder-features/slide-02.html +101 -0
- package/presentation-stella-coder-features/slide-03.html +100 -0
- package/presentation-stella-coder-features/slide-04.html +100 -0
- package/presentation-stella-coder-features/slide-05.html +64 -0
- package/presentation-stella-coder-features/slide-06.html +101 -0
- package/presentation-stella-coder-features/slide-07.html +91 -0
- package/presentation-test-presentation/README.md +27 -0
- package/presentation-test-presentation/index.html +350 -0
- package/presentation-test-presentation/print.html +69 -0
- package/presentation-test-presentation/slide-01.html +98 -0
- package/presentation-test-presentation/slide-02.html +101 -0
- package/presentation-test-presentation/slide-03.html +64 -0
- package/presentation-test-presentation/slide-04.html +101 -0
- package/presentation-test-presentation/slide-05.html +91 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- package/stella-cli/coding-brain.mjs +753 -0
- package/stella-cli/index.mjs +931 -15
- package/stella-cli/mcp.mjs +296 -0
- package/stella-cli/presentations.mjs +1106 -0
- package/stella-cli/subagents.mjs +142 -0
- package/stella-cli/telegram-bot.mjs +824 -0
- package/stella-cli/tg-bg.bat +13 -0
- package/stella-cli/tg-server.bat +15 -0
- package/stella-cli/tg-server.mjs +116 -0
- package/stella-cli/theme.mjs +6 -4
- package/stella-coder-3.9.2.tgz +0 -0
|
@@ -0,0 +1,168 @@
|
|
|
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>Stella Coder - AI Coding Agent</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: #0f0a1a;
|
|
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 #a78bfa30;
|
|
41
|
+
background: #1a1025;
|
|
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: #8b5cf6;
|
|
51
|
+
color: #0f0a1a;
|
|
52
|
+
}
|
|
53
|
+
.progress {
|
|
54
|
+
position: fixed;
|
|
55
|
+
bottom: 0;
|
|
56
|
+
left: 0;
|
|
57
|
+
height: 4px;
|
|
58
|
+
background: linear-gradient(90deg, #8b5cf6, #ec4899);
|
|
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: #a78bfa;
|
|
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 class="slide" id="slide8" style="display: none">
|
|
96
|
+
<iframe src="slide-08.html" width="1280" height="720" frameborder="0" style="border: none;"></iframe>
|
|
97
|
+
</div>
|
|
98
|
+
<div class="slide" id="slide9" style="display: none">
|
|
99
|
+
<iframe src="slide-09.html" width="1280" height="720" frameborder="0" style="border: none;"></iframe>
|
|
100
|
+
</div>
|
|
101
|
+
<div class="slide" id="slide10" style="display: none">
|
|
102
|
+
<iframe src="slide-10.html" width="1280" height="720" frameborder="0" style="border: none;"></iframe>
|
|
103
|
+
</div>
|
|
104
|
+
</div>
|
|
105
|
+
</div>
|
|
106
|
+
|
|
107
|
+
<div class="controls">
|
|
108
|
+
<button class="control-btn" onclick="prevSlide()">←</button>
|
|
109
|
+
<button class="control-btn" onclick="nextSlide()">→</button>
|
|
110
|
+
<button class="control-btn" onclick="toggleFullscreen()">⛶</button>
|
|
111
|
+
</div>
|
|
112
|
+
|
|
113
|
+
<div class="progress" id="progress"></div>
|
|
114
|
+
<div class="slide-counter" id="slideCounter">1 / 10</div>
|
|
115
|
+
|
|
116
|
+
<script>
|
|
117
|
+
let currentSlide = 1;
|
|
118
|
+
const totalSlides = 10;
|
|
119
|
+
|
|
120
|
+
function showSlide(n) {
|
|
121
|
+
document.querySelectorAll('.slide').forEach(s => s.style.display = 'none');
|
|
122
|
+
document.getElementById('slide' + n).style.display = 'block';
|
|
123
|
+
document.getElementById('slideCounter').textContent = n + ' / ' + totalSlides;
|
|
124
|
+
document.getElementById('progress').style.width = ((n / totalSlides) * 100) + '%';
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
function nextSlide() {
|
|
128
|
+
if (currentSlide < totalSlides) {
|
|
129
|
+
currentSlide++;
|
|
130
|
+
showSlide(currentSlide);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
function prevSlide() {
|
|
135
|
+
if (currentSlide > 1) {
|
|
136
|
+
currentSlide--;
|
|
137
|
+
showSlide(currentSlide);
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
function toggleFullscreen() {
|
|
142
|
+
if (!document.fullscreenElement) {
|
|
143
|
+
document.documentElement.requestFullscreen();
|
|
144
|
+
} else {
|
|
145
|
+
document.exitFullscreen();
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
document.addEventListener('keydown', (e) => {
|
|
150
|
+
if (e.key === 'ArrowRight' || e.key === ' ') nextSlide();
|
|
151
|
+
if (e.key === 'ArrowLeft') prevSlide();
|
|
152
|
+
if (e.key === 'f') toggleFullscreen();
|
|
153
|
+
});
|
|
154
|
+
|
|
155
|
+
// Scale to fit
|
|
156
|
+
function scalePresentation() {
|
|
157
|
+
const container = document.getElementById('slideContainer');
|
|
158
|
+
const scaleX = window.innerWidth / 1280;
|
|
159
|
+
const scaleY = window.innerHeight / 720;
|
|
160
|
+
const scale = Math.min(scaleX, scaleY) * 0.9;
|
|
161
|
+
container.style.transform = 'scale(' + scale + ')';
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
window.addEventListener('resize', scalePresentation);
|
|
165
|
+
scalePresentation();
|
|
166
|
+
</script>
|
|
167
|
+
</body>
|
|
168
|
+
</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>Stella Coder - AI Coding Agent</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: #0f0a1a;
|
|
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, #8b5cf615 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, #ec489910 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%, #a78bfa 100%);
|
|
55
|
+
-webkit-background-clip: text;
|
|
56
|
+
-webkit-text-fill-color: transparent;
|
|
57
|
+
}
|
|
58
|
+
.subtitle {
|
|
59
|
+
font-size: 28px;
|
|
60
|
+
color: #a78bfa;
|
|
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: #a78bfa;
|
|
70
|
+
}
|
|
71
|
+
.date {
|
|
72
|
+
position: absolute;
|
|
73
|
+
bottom: 60px;
|
|
74
|
+
right: 80px;
|
|
75
|
+
font-size: 16px;
|
|
76
|
+
color: #a78bfa;
|
|
77
|
+
}
|
|
78
|
+
.accent-line {
|
|
79
|
+
width: 80px;
|
|
80
|
+
height: 4px;
|
|
81
|
+
background: linear-gradient(90deg, #8b5cf6, #ec4899);
|
|
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>Stella Coder - AI Coding Agent</h1>
|
|
92
|
+
<p class="subtitle"></p>
|
|
93
|
+
</div>
|
|
94
|
+
<div class="author">Stella Development Team</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: #0f0a1a;
|
|
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: #a78bfa;
|
|
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: #1a1025;
|
|
49
|
+
border-radius: 16px;
|
|
50
|
+
border: 1px solid #a78bfa20;
|
|
51
|
+
}
|
|
52
|
+
.content-item h3 {
|
|
53
|
+
font-size: 20px;
|
|
54
|
+
font-weight: 600;
|
|
55
|
+
margin-bottom: 12px;
|
|
56
|
+
color: #8b5cf6;
|
|
57
|
+
}
|
|
58
|
+
.content-item p {
|
|
59
|
+
font-size: 16px;
|
|
60
|
+
line-height: 1.6;
|
|
61
|
+
color: #a78bfa;
|
|
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: #8b5cf6;
|
|
83
|
+
border-radius: 50%;
|
|
84
|
+
}
|
|
85
|
+
</style>
|
|
86
|
+
</head>
|
|
87
|
+
<body>
|
|
88
|
+
<div class="slide">
|
|
89
|
+
<div class="slide-number">1 / 8</div>
|
|
90
|
+
<h2>Введение</h2>
|
|
91
|
+
|
|
92
|
+
<ul class="bullet-list">
|
|
93
|
+
<li>Что такое Stella Coder - AI Coding Agent</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: #0f0a1a;
|
|
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: #a78bfa;
|
|
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: #1a1025;
|
|
49
|
+
border-radius: 16px;
|
|
50
|
+
border: 1px solid #a78bfa20;
|
|
51
|
+
}
|
|
52
|
+
.content-item h3 {
|
|
53
|
+
font-size: 20px;
|
|
54
|
+
font-weight: 600;
|
|
55
|
+
margin-bottom: 12px;
|
|
56
|
+
color: #8b5cf6;
|
|
57
|
+
}
|
|
58
|
+
.content-item p {
|
|
59
|
+
font-size: 16px;
|
|
60
|
+
line-height: 1.6;
|
|
61
|
+
color: #a78bfa;
|
|
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: #8b5cf6;
|
|
83
|
+
border-radius: 50%;
|
|
84
|
+
}
|
|
85
|
+
</style>
|
|
86
|
+
</head>
|
|
87
|
+
<body>
|
|
88
|
+
<div class="slide">
|
|
89
|
+
<div class="slide-number">2 / 8</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>
|
|
@@ -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: #0f0a1a;
|
|
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: #a78bfa;
|
|
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: #1a1025;
|
|
49
|
+
border-radius: 16px;
|
|
50
|
+
border: 1px solid #a78bfa20;
|
|
51
|
+
}
|
|
52
|
+
.content-item h3 {
|
|
53
|
+
font-size: 20px;
|
|
54
|
+
font-weight: 600;
|
|
55
|
+
margin-bottom: 12px;
|
|
56
|
+
color: #8b5cf6;
|
|
57
|
+
}
|
|
58
|
+
.content-item p {
|
|
59
|
+
font-size: 16px;
|
|
60
|
+
line-height: 1.6;
|
|
61
|
+
color: #a78bfa;
|
|
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: #8b5cf6;
|
|
83
|
+
border-radius: 50%;
|
|
84
|
+
}
|
|
85
|
+
</style>
|
|
86
|
+
</head>
|
|
87
|
+
<body>
|
|
88
|
+
<div class="slide">
|
|
89
|
+
<div class="slide-number">3 / 8</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>
|
|
@@ -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: #0f0a1a;
|
|
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: #a78bfa;
|
|
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: #1a1025;
|
|
49
|
+
border-radius: 16px;
|
|
50
|
+
border: 1px solid #a78bfa20;
|
|
51
|
+
}
|
|
52
|
+
.content-item h3 {
|
|
53
|
+
font-size: 20px;
|
|
54
|
+
font-weight: 600;
|
|
55
|
+
margin-bottom: 12px;
|
|
56
|
+
color: #8b5cf6;
|
|
57
|
+
}
|
|
58
|
+
.content-item p {
|
|
59
|
+
font-size: 16px;
|
|
60
|
+
line-height: 1.6;
|
|
61
|
+
color: #a78bfa;
|
|
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: #8b5cf6;
|
|
83
|
+
border-radius: 50%;
|
|
84
|
+
}
|
|
85
|
+
</style>
|
|
86
|
+
</head>
|
|
87
|
+
<body>
|
|
88
|
+
<div class="slide">
|
|
89
|
+
<div class="slide-number">4 / 8</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>
|