From 533a9401bbd7f007e3a313052724c4609aaf03a6 Mon Sep 17 00:00:00 2001 From: "Eduardo L. Buratti" <elburatti@inf.ufpr.br> Date: Wed, 27 Jul 2016 13:31:06 -0300 Subject: [PATCH] Fix issues with logo image (svg gaps) --- artwork/logo.svg | 45 ++++++++++++++++++++++++++------------------- 1 file changed, 26 insertions(+), 19 deletions(-) diff --git a/artwork/logo.svg b/artwork/logo.svg index 891fb33e..f28bf3e0 100644 --- a/artwork/logo.svg +++ b/artwork/logo.svg @@ -7,10 +7,13 @@ xml:space="preserve" id="blendb-logo"> <style type="text/css"> - #base #structure { + #base #structure .faces { fill: #231f20; + } + #base #structure .lines { + fill: none; stroke: #453f40; - stroke-width: 0.25; + stroke-width: 1; stroke-miterlimit: 10; } #base #text-blen { @@ -19,10 +22,21 @@ #base #text-db { fill: #ce242b; } - #glass { + #glass .bottom { + fill: #a4c3db; + opacity: 0.75; + } + #glass .sides { fill: #a4c3db; opacity: 0.5; } + #glass .line { + fill: none; + stroke: #A4C3DB; + stroke-width: 2; + stroke-miterlimit: 10; + stroke-opacity: 0.2; + } #lid { fill: #231f20; } @@ -36,9 +50,9 @@ <g> <g id="base"> <g id="structure"> - <polygon points="640.4,600.6 316.8,787.4 638.3,974.2 961.8,787.4"/> - <polygon points="639,1223.1 317.5,1036.3 316.8,787.4 638.3,974.2"/> - <polygon points="962.5,1036.3 639,1223.1 638.3,974.2 961.8,787.4"/> + <polygon class="faces" points="640,600 316,788 316,1036 640,1224 962,1036 962,788"/> + <line class="lines" x1="316" y1="788" x2="640" y2="974"/> + <line class="lines" x1="962" y1="788" x2="640" y2="974"/> </g> <g id="text-blen"> <path d="M441.5,963c8.7,5,15.1,9.2,19,12.6c4,3.4,6.8,6.3,8.5,8.7c3.8,5.4,5.7,11.5,5.7,18.3c0,5-2.7,8.2-8.1,9.6 @@ -72,21 +86,14 @@ </g> </g> <g id="glass"> - <polygon points="639.9,685.1 462.7,787.4 638.7,889.7 815.9,787.4"/> - <polygon points="352.8,266.3 638.4,432.3 638.7,889.7 462.7,787.4"/> - <polygon points="638.4,432.3 638.7,889.7 815.9,787.4 925.9,266.3"/> - <polygon points="640.3,100.4 352.8,266.3 638.4,432.3 925.9,266.3"/> - </g> - <g id="lid"> - <polygon points="640.3,93.1 340.2,266.3 638.3,439.6 938.5,266.3"/> - <polygon points="340.2,230.8 340.2,266.3 638.3,439.6 938.5,266.3 938.5,230.8 638.3,404.1"/> - <polygon points="640.3,57.5 340.2,230.8 638.3,404.1 938.5,230.8"/> + <polygon class="bottom" points="640,686 462,788 638,890 814,788"/> + <polygon class="sides" points="638,432 352,266 462,788 638,890 814,788 924,266"/> + <line class="line" x1="638" y1="432" x2="638" y2="890"/> </g> + <polygon id="lid" points="638,58 338,230 338,266 638,440 936,266 936,230"/> <g id="opening"> - <path class="side" d="M717,230.8c0-23.2-35.3-42-78.8-42c-43.5,0-78.8,18.8-78.8,42c0,23.2,35.3,42,78.8,42 - C681.8,272.8,717,254,717,230.8"/> - <path class="top" d="M717,219c0-23.2-35.3-42-78.8-42c-43.5,0-78.8,18.8-78.8,42c0,23.2,35.3,42,78.8,42 - C681.8,261,717,242.2,717,219"/> + <path class="side" d="M559.2,220v10c0,23.2,35.3,42,78.8,42c43.6,0,78.8-18.8,78.8-42v-10H559.2z"/> + <path class="top" d="M716.8,220c0-23.2-35.3-42-78.8-42s-78.8,18.8-78.8,42s35.3,42,78.8,42C681.6,262,716.8,243.2,716.8,220"/> </g> </g> </svg> -- GitLab