blob: d198cee3bec1ebece9ec7c75a60e10ee1c322a6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg version="1.1" width="16" height="16" viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="shadow" color-interpolation-filters="sRGB">
<!-- I'm not sure why this works the way it does, but hey.
Neither feDropShadow nor feGaussianBlur do. -->
<feConvolveMatrix in="SourceAlpha"
kernelMatrix="1 2 1 2 4 2 1 2 1" divisor="16" />
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
<linearGradient id="gradient" x1="25%" y1="0%" x2="75%" y2="100%">
<stop offset="0%" stop-color="#fff" />
<stop offset="100%" stop-color="#eee" />
</linearGradient>
<linearGradient id="panel-bg" x1="25%" y1="0%" x2="75%" y2="100%">
<stop offset="0%" stop-color="hsl(300, 100%, 75%)" />
<stop offset="100%" stop-color="hsl(240, 100%, 75%)" />
</linearGradient>
</defs>
<g filter="url(#shadow)" fill="url(#gradient)">
<rect x="1" y="2" width="14" height="10" />
<rect x="3" y="4" width="10" height="6" fill="url(#panel-bg)" />
<rect x="5" y="13" width="6" height="2" />
</g>
</svg>
|