Advertisement
Guest User

template_sea

a guest
Mar 9th, 2011
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.37 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <svg xmlns:dc="http://purl.org/dc/elements/1.1/"
  3.     xmlns:cc="http://creativecommons.org/ns#"
  4.     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  5.     xmlns:svg="http://www.w3.org/2000/svg"
  6.     xmlns="http://www.w3.org/2000/svg"
  7.     xmlns:xlink="http://www.w3.org/1999/xlink"
  8.     width="128" height="128" version="1.1">
  9.     <title>{{TITLE}}</title>
  10.     <desc>This icon is a part of Clarity icon theme for gtk</desc>
  11.     <!--
  12.  
  13.    This icon is a part of Clarity vector icon theme for gtk
  14.  
  15.    Copyright (C) 2010 Jakub Jankiewicz <http://jcubic.pl>
  16.  
  17.    licensed under the GNU GPL Version 3 <http://www.gnu.org/licenses/>.
  18.  
  19.    -->
  20.     <metadata>
  21.         <rdf:RDF>
  22.             <cc:Work rdf:about="">
  23.                 <dc:title>{{TITLE}}</dc:title>
  24.                 <dc:description>This icon is a part of Clarity icon theme for gtk</dc:description>
  25.                 <dc:creator>
  26.                     <cc:Agent>
  27.                         <dc:title>Jakub Jankiewicz</dc:title>
  28.                     </cc:Agent>
  29.                 </dc:creator>
  30.                 <dc:rights>
  31.                     <cc:Agent>
  32.                         <dc:title>Jakub Jankiewicz</dc:title>
  33.                     </cc:Agent>
  34.                 </dc:rights>
  35.                 <dc:date>2010</dc:date>
  36.                 <dc:format>image/svg+xml</dc:format>
  37.                 <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  38.                 <cc:license rdf:resource="http://www.gnu.org/copyleft/gpl.html" />
  39.              </cc:Work>
  40.         </rdf:RDF>
  41.     </metadata>
  42.     <defs>
  43.         <linearGradient x1="0" y1="128" x2="128" y2="0" id="gradient" gradientUnits="userSpaceOnUse">
  44.             <stop id="start" style="stop-color:#5B8F76;stop-opacity:1" offset="0" />
  45.             <stop id="stop" style="stop-color:#98B1A6;stop-opacity:1" offset="1" />
  46.         </linearGradient>
  47.         <filter id="shadow">
  48.             <feMorphology operator="dilate" in="SourceGraphic" radius="3" />
  49.             <feGaussianBlur stdDeviation="1.5" />
  50.         </filter>
  51.     </defs>
  52.     <symbol id="shape">
  53.         <path d="{{PATH}}" />
  54.     </symbol>
  55.     <use style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:none" xlink:href="#shape" filter="url(#shadow)" />
  56.     <use style="fill:url(#gradient);fill-opacity:1;stroke:none" xlink:href="#shape" />
  57. </svg>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement