Files
card-forge/static/favicon.svg
Roman Krček e587d1099b
All checks were successful
Build Docker image / build (push) Successful in 1m24s
Build Docker image / verify (push) Successful in 27s
Build Docker image / deploy (push) Successful in 1m12s
Icons
2025-07-18 14:31:49 +02:00

45 lines
1.2 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- Simple ESN-style card icon no outline, larger photo box -->
<svg
xmlns="http://www.w3.org/2000/svg"
width="200"
height="120"
viewBox="0 0 200 120"
stroke-width="1"
stroke-linecap="round"
>
<!-- Rounded-rectangle clip path (matches card shape) -->
<defs>
<clipPath id="cardClip">
<rect x="0" y="0" width="200" height="120" rx="12" ry="12"/>
</clipPath>
</defs>
<!-- Everything is clipped to the card -->
<g clip-path="url(#cardClip)">
<!-- Card background -->
<rect x="0" y="0" width="200" height="120" rx="12" ry="12" fill="#ffffff"/>
<!-- Blue side strip -->
<rect x="0" y="0" width="40" height="120" fill="#0077c8"/>
<!-- Larger photo placeholder -->
<rect
x="14" y="18"
width="60" height="80"
rx="6" ry="6"
fill="#ffffff"
stroke="#bdbdbd"
/>
<!-- Four text bars (no stroke) -->
<rect x="78" y="24" width="104" height="8" rx="4" ry="4" fill="#e8f0fe"/>
<rect x="78" y="44" width="104" height="8" rx="4" ry="4" fill="#e8f0fe"/>
<rect x="78" y="64" width="104" height="8" rx="4" ry="4" fill="#e8f0fe"/>
<rect x="78" y="84" width="104" height="8" rx="4" ry="4" fill="#e8f0fe"/>
</g>
</svg>