22 lines
805 B
XML
22 lines
805 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<defs>
|
|
<linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" stop-color="#fb7185"/>
|
|
<stop offset="100%" stop-color="#e11d48"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<circle cx="50" cy="50" r="50" fill="url(#gradient)" filter="url(#shadow)"/>
|
|
<text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" fill="white" font-size="24" font-weight="bold">A</text>
|
|
<filter id="shadow">
|
|
<feDropShadow dx="0" dy="4" stdDeviation="6" flood-color="rgba(0, 0, 0, 0.5)"/>
|
|
</filter>
|
|
<style>
|
|
svg circle {
|
|
transition: transform 0.3s ease;
|
|
}
|
|
svg circle:hover {
|
|
transform: scale(1.1);
|
|
}
|
|
</style>
|
|
</svg>
|