2016-07-28 07:50:50 -04:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="<%= badge.width %>" height="20">
|
2016-07-27 07:08:43 -04:00
|
|
|
<linearGradient id="b" x2="0" y2="100%">
|
|
|
|
<stop offset="0" stop-color="#bbb" stop-opacity=".1"/>
|
|
|
|
<stop offset="1" stop-opacity=".1"/>
|
|
|
|
</linearGradient>
|
|
|
|
|
|
|
|
<mask id="a">
|
2016-07-28 07:50:50 -04:00
|
|
|
<rect width="<%= badge.width %>" height="20" rx="3" fill="#fff"/>
|
2016-07-27 07:08:43 -04:00
|
|
|
</mask>
|
|
|
|
|
|
|
|
<g mask="url(#a)">
|
2016-08-08 06:49:26 -04:00
|
|
|
<path fill="<%= badge.key_color %>"
|
|
|
|
d="M0 0 h<%= badge.key_width %> v20 H0 z"/>
|
|
|
|
<path fill="<%= badge.value_color %>"
|
2016-08-10 02:44:19 -04:00
|
|
|
d="M<%= badge.key_width %> 0 h<%= badge.value_width %> v20 H<%= badge.key_width %> z"/>
|
2016-08-08 06:49:26 -04:00
|
|
|
<path fill="url(#b)"
|
|
|
|
d="M0 0 h<%= badge.width %> v20 H0 z"/>
|
2016-07-27 07:08:43 -04:00
|
|
|
</g>
|
|
|
|
|
|
|
|
<g fill="#fff" text-anchor="middle">
|
|
|
|
<g font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="11">
|
2016-08-08 06:49:26 -04:00
|
|
|
<text x="<%= badge.key_text_anchor %>" y="15" fill="#010101" fill-opacity=".3">
|
|
|
|
<%= badge.key_text %>
|
|
|
|
</text>
|
|
|
|
<text x="<%= badge.key_text_anchor %>" y="14">
|
|
|
|
<%= badge.key_text %>
|
|
|
|
</text>
|
|
|
|
<text x="<%= badge.value_text_anchor %>" y="15" fill="#010101" fill-opacity=".3">
|
|
|
|
<%= badge.value_text %>
|
|
|
|
</text>
|
|
|
|
<text x="<%= badge.value_text_anchor %>" y="14">
|
|
|
|
<%= badge.value_text %>
|
|
|
|
</text>
|
2016-07-27 07:08:43 -04:00
|
|
|
</g>
|
|
|
|
</g>
|
|
|
|
</svg>
|