Last active
November 11, 2024 18:22
-
-
Save bsa7/e139e82323983ad7453b97578cc82fa7 to your computer and use it in GitHub Desktop.
historyable-attribute
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The public gist for https://github.com/bsa7/historyable-attribute |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<svg contentScriptType="text/ecmascript" contentStyleType="text/css" preserveAspectRatio="xMidYMid meet" version="1.0" height="20" width="120" | |
xmlns="http://www.w3.org/2000/svg" | |
xmlns:xlink="http://www.w3.org/1999/xlink"> | |
<linearGradient id="smooth" x2="0" y2="120"> | |
<stop offset="0" stop-color="#bbb" stop-opacity=".1"/> | |
<stop offset="1" stop-opacity=".1"/> | |
</linearGradient> | |
<clipPath id="round"> | |
<rect height="20" width="120" rx="3" fill="#fff"/> | |
</clipPath> | |
<g clip-path="url(#round)"> | |
<rect height="20" width="60" fill="#555"/> | |
<rect x="60" height="20" width="60" fill="#cccc00"/> | |
<rect height="20" width="120" fill="url(#smooth)"/> | |
</g> | |
<g fill="#fff" text-anchor="middle" font-family="Verdana,sans-serif" font-size="11"> | |
<text x="30" y="15" fill="#010101" fill-opacity="0.3"> | |
scov total | |
</text> | |
<text x="30" y="14"> | |
scov total | |
</text> | |
</g> | |
<g fill="#fff" text-anchor="middle" font-family="Verdana,sans-serif" font-size="11"> | |
<text x="90" y="15" fill="#010101" fill-opacity="0.3"> | |
100% | |
</text> | |
<text x="90" y="14"> | |
100% | |
</text> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment