41 lines
1.6 KiB
XML
41 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- Minimal, lightweight stone griffin icon (SVG) for PetroGlyphScout
|
|
- Purpose: decorative/iconic representation "Grifo (ser legendario)"
|
|
- File: Public/images/stone-griffin.svg
|
|
- Design goals: simple geometry, small filesize, scalable vector
|
|
-->
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" role="img" aria-label="Grifo de piedra">
|
|
<defs>
|
|
<linearGradient id="g" x1="0" x2="1" y1="0" y2="1">
|
|
<stop offset="0%" stop-color="#cfcfcf" />
|
|
<stop offset="100%" stop-color="#9b9b9b" />
|
|
</linearGradient>
|
|
<style type="text/css"><![CDATA[
|
|
.stone{fill:url(#g);stroke:#6b6b6b;stroke-width:3;stroke-linejoin:round}
|
|
.detail{fill:none;stroke:#6b6b6b;stroke-width:2;stroke-linecap:round}
|
|
]]></style>
|
|
</defs>
|
|
|
|
<!-- Body (simple blocky stone silhouette) -->
|
|
<path class="stone" d="M40 190 L60 120 L90 100 L120 96 L150 110 L170 140 L200 150 L210 170 L200 190 L160 200 L120 196 L80 200 Z"/>
|
|
|
|
<!-- Wing (stylized) -->
|
|
<path class="stone" d="M120 96 L140 60 L170 52 L150 90 Z"/>
|
|
|
|
<!-- Head & beak -->
|
|
<path class="stone" d="M40 120 L60 96 L80 86 L98 90 L108 106 L100 116 L86 122 Z"/>
|
|
<path class="detail" d="M98 90 L108 106"/>
|
|
|
|
<!-- Legs (simple pillars) -->
|
|
<rect class="stone" x="150" y="140" width="12" height="48" rx="3"/>
|
|
<rect class="stone" x="170" y="146" width="12" height="40" rx="3"/>
|
|
|
|
<!-- Stone fissure detail -->
|
|
<path class="detail" d="M60 140 q20 -10 40 -12"/>
|
|
<path class="detail" d="M130 130 q20 8 40 6"/>
|
|
|
|
<!-- Base plinth -->
|
|
<rect class="stone" x="28" y="200" width="180" height="18" rx="4"/>
|
|
|
|
</svg>
|