mirror of
https://github.com/XFox111/TabsAsideExtension.git
synced 2026-04-22 07:58:01 +03:00
34 lines
899 B
XML
34 lines
899 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE svg SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-flat-20110816.dtd">
|
|
<svg id="PagePlaceholder" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600">
|
|
<defs>
|
|
<style type="text/css">
|
|
.background {
|
|
fill: #ffffff;
|
|
}
|
|
|
|
.pageElements {
|
|
fill: #c2c2c2;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.background {
|
|
fill: #141414;
|
|
}
|
|
|
|
.pageElements {
|
|
fill: #666666;
|
|
}
|
|
}
|
|
</style>
|
|
</defs>
|
|
|
|
<rect class="background" width="800" height="600" rx="10" ry="10" />
|
|
<g class="pageElements">
|
|
<rect x="50" y="50" width="700" height="300" rx="10" ry="10" />
|
|
<rect x="50" y="370" width="220" height="180" rx="10" ry="10" />
|
|
<rect x="530" y="370" width="220" height="180" rx="10" ry="10" />
|
|
<rect x="290" y="370" width="220" height="180" rx="10" ry="10" />
|
|
</g>
|
|
</svg>
|