Skip to content

Instantly share code, notes, and snippets.

@webdesserts
Created December 7, 2013 21:06
Show Gist options
  • Save webdesserts/7848695 to your computer and use it in GitHub Desktop.
Save webdesserts/7848695 to your computer and use it in GitHub Desktop.
Hand written SVG by Sven_vB Original link here: http://paste.ohai.su/ptmswxggy/2iymbd
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Author: Sven_vB -->
<svg width="300px" height="200px" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<defs>
<style type="text/css">
rect, circle, path {
stroke: none;
stroke-width: 5;
fill: none;
}
</style>
</defs>
<rect x="0%" y="0%" width="50%" height="50%" style="fill: red;" />
<g transform="translate(0 0)">
<circle cx="15%" cy="15%" r="16" style="" />
<circle cx="30%" cy="15%" r="8" style="stroke: maroon;" />
<rect x="15%" y="30%" width="10" height="20" style="stroke: maroon;" />
<rect x="30%" y="30%" width="30" height="20" style="stroke: maroon;" />
</g>
<rect x="50%" y="0%" width="50%" height="50%" style="fill: yellow;" />
<g transform="translate(150 0)">
<circle cx="15%" cy="15%" r="16" style="stroke: olive;" />
<circle cx="30%" cy="15%" r="8" style="" />
<rect x="15%" y="30%" width="10" height="20" style="stroke: olive;" />
<rect x="30%" y="30%" width="30" height="20" style="stroke: olive;" />
</g>
<rect x="50%" y="50%" width="50%" height="50%" style="fill: lime;" />
<g transform="translate(150 100)">
<circle cx="15%" cy="15%" r="16" style="stroke: green;" />
<circle cx="30%" cy="15%" r="8" style="stroke: green;" />
<rect x="15%" y="30%" width="10" height="20" style="stroke: green;" />
<rect x="30%" y="30%" width="30" height="20" style="" />
</g>
<rect x="0%" y="50%" width="50%" height="50%" style="fill: cyan;" />
<g transform="translate(0 100)">
<circle cx="15%" cy="15%" r="16" style="stroke: teal;" />
<circle cx="30%" cy="15%" r="8" style="stroke: teal;" />
<rect x="15%" y="30%" width="10" height="20" style="" />
<rect x="30%" y="30%" width="30" height="20" style="stroke: teal;" />
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment