Workspace icon generation, add vertical and horizontal lines

This commit is contained in:
Manu Cornet 2021-12-25 06:11:27 +00:00
parent 0041a8a3c1
commit b94e62061b
225 changed files with 248 additions and 224 deletions

View File

@ -30,6 +30,28 @@ def draw_outer_rectangle(data, width, height):
data = data.replace("{{RECTANGLE_HEIGHT}}", str(height - STROKE_WIDTH)) data = data.replace("{{RECTANGLE_HEIGHT}}", str(height - STROKE_WIDTH))
return data return data
def draw_line(is_horizontal, start_x, start_y, length):
data = ""
direction = "H" if is_horizontal else "V"
data += f'<path style="fill:none;stroke:{STROKE_COLOR};'
data += f'stroke-width:{STROKE_WIDTH}" '
data += f'd="M {start_x},{start_y} {direction} {length}" />'
return data
def draw_horizontal_lines(data, n_rows, width):
row = 1
while row < n_rows:
data += draw_line(True, 0, row * WORKSPACE_HEIGHT, width)
row += 1
return data
def draw_vertical_lines(data, n_cols, height):
col = 1
while col < n_cols:
data += draw_line(False, col * WORKSPACE_WIDTH, 0, height)
col += 1
return data
def generate_icons(n_rows, n_cols): def generate_icons(n_rows, n_cols):
for i in range(1, n_rows * n_cols + 1): for i in range(1, n_rows * n_cols + 1):
filename = f"{ICON_NAME_PREFIX}_{n_rows}x{n_cols}_{i}.svg" filename = f"{ICON_NAME_PREFIX}_{n_rows}x{n_cols}_{i}.svg"
@ -38,6 +60,8 @@ def generate_icons(n_rows, n_cols):
data = TEMPLATE data = TEMPLATE
data = define_globals(data, width, height) data = define_globals(data, width, height)
data = draw_outer_rectangle(data, width, height) data = draw_outer_rectangle(data, width, height)
data = draw_horizontal_lines(data, n_rows, width)
data = draw_vertical_lines(data, n_cols, height)
data += "</svg>" data += "</svg>"
with open(filename, "w") as f: with open(filename, "w") as f:
f.write(data) f.write(data)

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 261 B

After

Width:  |  Height:  |  Size: 333 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 261 B

After

Width:  |  Height:  |  Size: 333 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 407 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 407 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 407 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 480 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 480 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 480 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 480 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 553 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 553 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 553 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 553 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 553 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /></svg>

Before

Width:  |  Height:  |  Size: 261 B

After

Width:  |  Height:  |  Size: 333 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /></svg>

Before

Width:  |  Height:  |  Size: 261 B

After

Width:  |  Height:  |  Size: 333 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 263 B

After

Width:  |  Height:  |  Size: 409 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 263 B

After

Width:  |  Height:  |  Size: 409 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 263 B

After

Width:  |  Height:  |  Size: 409 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 263 B

After

Width:  |  Height:  |  Size: 409 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 484 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 484 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 484 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 484 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 484 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 484 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 632 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 632 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 632 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 632 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 632 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 632 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 632 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 632 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 632 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 632 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 407 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 407 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 407 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 484 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 484 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 484 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 484 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 484 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 484 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 559 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 559 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 559 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 559 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 559 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 559 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 559 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 559 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 559 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 633 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 633 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 633 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 633 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 633 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 633 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 633 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 633 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 633 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 633 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 633 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 633 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 707 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 480 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 480 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 480 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 50" /></svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 480 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 200" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 200" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 200" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 200" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 200" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

View File

@ -10,4 +10,4 @@
x="2.5" x="2.5"
y="2.5" y="2.5"
ry="10" /> ry="10" />
</svg> <path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 200" /></svg>

Before

Width:  |  Height:  |  Size: 264 B

After

Width:  |  Height:  |  Size: 558 B

Some files were not shown because too many files have changed in this diff Show More