mirror of
https://mgit.msbls.de/m/gitea-custom.git
synced 2026-02-06 00:02:08 +00:00
- Themes now only override CSS variables (no selector overrides) - Removed duplicate styles from header.tmpl (just loads Inter font now) - Cleaned up logo SVG (simpler, no overlapping text) - Improved home page with proper hero layout and sign-in/explore buttons - Added detailed README documenting the setup, deployment, and design principles
11 lines
549 B
XML
11 lines
549 B
XML
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200">
|
|
<defs>
|
|
<linearGradient id="mgitGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" stop-color="#3b82f6"/>
|
|
<stop offset="100%" stop-color="#1e40af"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="200" height="200" fill="url(#mgitGrad)" rx="40"/>
|
|
<text x="100" y="138" font-family="Inter, -apple-system, system-ui, sans-serif" font-size="120" font-weight="700" fill="#ffffff" text-anchor="middle" letter-spacing="-6">m</text>
|
|
</svg>
|