Test:SVG: Difference between revisions

From Resonite Wiki
Created page with "<svg width="38" height="72" style="display:block;"> <polygon style="fill:lime;stroke-width:3px; stroke-linejoin: round;" points="2,2 2,70 36,36"></polygon> </svg>"
 
No edit summary
Line 1: Line 1:
<svg width="38" height="72" style="display:block;">
<svg width="38" height="72" style="display:block;">
<polygon style="fill:lime;stroke-width:3px; stroke-linejoin: round;" points="2,2 2,70 36,36"></polygon>
<polygon style="fill:lime;stroke-width:3px; stroke-linejoin: round;" points="2,2 2,70 36,36"></polygon>
</svg>
<svg height="500" width="500" xmlns="http://www.w3.org/2000/svg">
    <style type="text/css">
        text {
            font-family:Roboto;
        }
        .one {
            fill: var(--color-surface-0);
        }
    </style>
    <circle class="three" r="250" cx="250" cy="250" fill="red" />
    <text x="250" y="75" fill="white" font-size="35" text-anchor="middle">Enterprise</text>
    <circle class="two" r="200" cx="250" cy="300" fill="blue" />
    <text x="250" y="175" fill="white" font-size="35" text-anchor="middle">Universe</text>
    <circle class="one" r="150" cx="250" cy="350" fill="green" />
    <text x="250" y="270" fill="white" font-size="35" text-anchor="middle">Group</text>
    <circle class="zero" r="100" cx="250" cy="400" fill="orange" />
    <text x="250" y="410" fill="white" font-size="35" text-anchor="middle">User</text>
</svg>
</svg>

Revision as of 04:25, 21 July 2024


Enterprise Universe Group User