logo.svg 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  3. <svg width="64" height="64" version="1.1" xmlns="http://www.w3.org/2000/svg">
  4. <defs>
  5. <filter id="dropshadow">
  6. <feGaussianBlur in="SourceGraphic" stdDeviation="0.5"/>
  7. <feOffset dx="-0.3" dy="-0.3" result="offsetblur"/>
  8. <feMerge>
  9. <feMergeNode/>
  10. <feMergeNode in="SourceGraphic"/>
  11. </feMerge>
  12. </filter>
  13. <clipPath id="circlewrapper">
  14. <circle cx="32" cy="32" r="27"/>
  15. </clipPath>
  16. </defs>
  17. <style type="text/css">
  18. #background{
  19. fill:white;
  20. }
  21. #midground{
  22. fill:#8BC34A;
  23. }
  24. #shadowline{
  25. stroke:#444;
  26. stroke-width:1px;
  27. fill:transparent;
  28. }
  29. #foreground{
  30. fill:rgba(0,150,136,0.76);
  31. }
  32. #inside_g{
  33. clip-path:url(#circlewrapper);
  34. }
  35. #outside_g{
  36. fill:#e0f2f1;
  37. }
  38. #inside_layout{
  39. transform:translateY(5px);
  40. }
  41. #outside_s{
  42. filter:url(#dropshadow);
  43. fill:rgba(0,0,0,0.2);
  44. }
  45. #inside_w{
  46. filter:url(#dropshadow);
  47. }
  48. </style>
  49. <circle id="outside_s" cx="32" cy="32" r="30"/>
  50. <circle id="outside_g" cx="32" cy="32" r="30"/>
  51. <g id="inside_w">
  52. <g id="inside_g">
  53. <g id="inside_layout">
  54. <polygon id="background" points="64,4 64,62 62,64 1,64 0,63 0,40 60,3"/>
  55. <polygon id="midground" points="0,63 1,64 62,64 64,62 64,50 4,13 1,12.5 0,13"/>
  56. <polygon id="foreground" points="64,4 64,62 62,64 1,64 0,63 0,40 60,3"/>
  57. </g>
  58. </g>
  59. </g>
  60. </svg>