123456789101112131415161718192021 |
- <?xml version="1.0" encoding="UTF-8"?>
- <svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="100" width="100">
- <defs>
- <mask id="mask_circle">
- <circle cx="50" cy="50" r="50" fill="white"/>
- <circle cx="50" cy="50" r="12" fill="black"/>
- </mask>
- <linearGradient x1="20" y1="60" x2="60" y2="40" id="Gradient" gradientUnits="userSpaceOnUse">
- <stop style="stop-color:#002A3D;stop-opacity:1" offset="0" />
- <stop style="stop-color:#35728E;stop-opacity:1" offset="1" />
- </linearGradient>
- </defs>
- <circle cx="50" cy="50" r="48" style="fill:#002A3D"/>
- <circle cx="50" cy="50" r="43" style="fill:url(#Gradient);stroke:#eeeeee;stroke-width:3"/>
-
- <path style="fill:#ffffff;" d="m 39,41 0,1 c 2,0 0,0 2,0 4,0 5,1 5,6 l 0,23 c 0,8 -1,9 -9,10 l 0,1 28,0 0,-1 C 57,80 57,79 57,71 l 0,-34"/>
- <ellipse cx="50" cy="25" rx="7" ry="7" style="fill:#ffffff"/>
- </svg>
|