blob: bd164aea03436317a122c42b685b0218412efb9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#2a7a87" />
<stop offset="100%" stop-color="#0f3439" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#69a1ab" />
<stop offset="100%" stop-color="#577074" />
</linearGradient>
<linearGradient id="grad3" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#a9c9cf" />
<stop offset="100%" stop-color="#9fadaf" />
</linearGradient>
</defs>
<rect x="13" y="18" width="32" height="18" rx="3" fill="url(#grad3)"/>
<rect x="13" y="41" width="32" height="18" rx="3" fill="url(#grad2)"/>
<rect x="13" y="64" width="32" height="18" rx="3" fill="url(#grad1)"/>
<path d="M 55 20 L 85 20 L 85 50 L 55 50 L 55 80 L 85 80"
fill="none" stroke="url(#grad1)" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
|