ваше сообщение коммита

This commit is contained in:
2025-08-29 19:19:26 +03:00
parent 4e4cb611a1
commit c007c0b296
10 changed files with 756 additions and 39 deletions

View File

@@ -0,0 +1,3 @@
# Это placeholder для логотипа DLE
# В реальном проекте здесь должен быть PNG файл с логотипом
# Размер рекомендуется: 200x200 пикселей

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

View File

@@ -0,0 +1,20 @@
<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#0066cc;stop-opacity:1" />
<stop offset="100%" style="stop-color:#0056b3;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Фон -->
<rect width="200" height="200" rx="20" fill="url(#grad1)"/>
<!-- Текст DLE -->
<text x="100" y="120" font-family="Arial, sans-serif" font-size="48" font-weight="bold" text-anchor="middle" fill="white">DLE</text>
<!-- Дополнительные элементы -->
<circle cx="50" cy="50" r="8" fill="rgba(255,255,255,0.3)"/>
<circle cx="150" cy="50" r="8" fill="rgba(255,255,255,0.3)"/>
<circle cx="50" cy="150" r="8" fill="rgba(255,255,255,0.3)"/>
<circle cx="150" cy="150" r="8" fill="rgba(255,255,255,0.3)"/>
</svg>

After

Width:  |  Height:  |  Size: 907 B