diff options
-rw-r--r-- | jm2l/static/img/shadow.svg | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/jm2l/static/img/shadow.svg b/jm2l/static/img/shadow.svg new file mode 100644 index 0000000..6678a20 --- /dev/null +++ b/jm2l/static/img/shadow.svg @@ -0,0 +1,24 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" + viewBox="-50 -50 200 200"> + <defs> + <filter id="dropshadow" height="130%"> + <feGaussianBlur in="SourceAlpha" stdDeviation="3"/> + <feOffset dx="2" dy="2" result="offsetblur"/> + <feComponentTransfer> + <feFuncA type="linear" slope="0.2"/> + </feComponentTransfer> + <feMerge> + <feMergeNode/> + <feMergeNode in="SourceGraphic"/> + </feMerge> + </filter> + <linearGradient id="BoxGradient" + x1="0%" y1="0%" + x2="0%" y2="100%" + spreadMethod="pad"> + + <stop offset="0%" fill-opacity="1" stop-opacity="1"/> + <stop offset="100%" stop-opacity="1"/> + </linearGradient> + </defs> +</svg>
\ No newline at end of file |