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 32 33 34 35
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="250" height="140" viewbox="0 0 250 140" xmlns="http://www.w3.org/2000/svg">
<g>
<rect x="5" y="5" width="200" height="50" rx="10" />
<text x="105" y="30">Re-exec'ed Manager</text>
</g>
<g>
<rect x="25" y="65" width="200" height="50" rx="10" />
<rect x="35" y="75" width="200" height="50" rx="10" />
<rect x="45" y="85" width="200" height="50" rx="10" />
<text x="145" y="110">New Workers</text>
</g>
<path d="M 15 55 V 100 H 35
m -5 -5 l 5 5 -5 5" />
<style>
<![CDATA[
rect {
fill: #edf2f7;
stroke: #2A4E68;
stroke-width: 2;
}
path {
fill: none;
stroke-width: 2;
stroke: black;
}
text {
dominant-baseline: central;
text-anchor: middle;
font: 12 sans-serif;
}
]]>
</style>
</svg>
|