16 lines
1017 B
XML
16 lines
1017 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<defs>
|
|
<linearGradient id="bookGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#4facfe;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#00f2fe;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<rect x="10" y="20" width="35" height="60" rx="2" fill="#fff" stroke="#333" stroke-width="2"/>
|
|
<rect x="55" y="20" width="35" height="60" rx="2" fill="#fff" stroke="#333" stroke-width="2"/>
|
|
<path d="M45 20 L55 20 L55 80 L45 80 Z" fill="#ccc"/>
|
|
<rect x="15" y="30" width="25" height="5" rx="1" fill="#eee"/>
|
|
<rect x="15" y="40" width="25" height="5" rx="1" fill="#eee"/>
|
|
<rect x="60" y="30" width="25" height="5" rx="1" fill="url(#bookGrad)"/>
|
|
<rect x="60" y="40" width="25" height="5" rx="1" fill="url(#bookGrad)"/>
|
|
<circle cx="50" cy="50" r="40" fill="none" stroke="url(#bookGrad)" stroke-width="4" stroke-dasharray="10 5" opacity="0.5"/>
|
|
</svg> |