1
0

portfolio *

This commit is contained in:
Anael
2019-05-14 18:43:03 +02:00
commit 69eaaa73a8
32 changed files with 4992 additions and 0 deletions

View File

@ -0,0 +1,426 @@
/* --------------------------------
Modules - reusable parts of our design
-------------------------------- */
.cd-container {
/* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
width: 90%;
max-width: 1170px;
margin: 0 auto;
}
.cd-container::after {
/* clearfix */
content: '';
display: table;
clear: both;
}
/* --------------------------------
Main components
-------------------------------- */
#cd-timeline {
position: relative;
padding: 2em 0;
margin-top: 2em;
margin-bottom: 2em;
}
#cd-timeline::before {
/* this is the vertical line */
content: '';
position: absolute;
top: 0;
left: 18px;
height: 100%;
width: 4px;
background: #d7e4ed;
}
@media only screen and (min-width: 1170px) {
#cd-timeline {
margin-top: 3em;
margin-bottom: 3em;
}
#cd-timeline::before {
left: 50%;
margin-left: -2px;
}
}
.cd-timeline-block {
position: relative;
margin: 2em 0;
}
.cd-timeline-block:after {
content: "";
display: table;
clear: both;
}
.cd-timeline-block:first-child {
margin-top: 0;
}
.cd-timeline-block:last-child {
margin-bottom: 0;
}
@media only screen and (min-width: 1170px) {
.cd-timeline-block {
margin: 4em 0;
}
.cd-timeline-block:first-child {
margin-top: 0;
}
.cd-timeline-block:last-child {
margin-bottom: 0;
}
}
.cd-timeline-img {
position: absolute;
top: 0;
left: 0;
width: 40px;
height: 40px;
border-radius: 50%;
box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}
.cd-timeline-img img {
display: block;
width: 32px;
height: 32px;
position: relative;
left: 50%;
top: 50%;
margin-left: -16px;
margin-top: -16px;
}
.cd-timeline-img.cd-work,
.cd-timeline-img.cd-picture {
background: #75ce66;
}
.cd-timeline-img.cd-graduation,
.cd-timeline-img.cd-movie {
background: #c03b44;
}
.cd-timeline-img.cd-location {
background: #f0ca45;
}
@media only screen and (min-width: 1170px) {
.cd-timeline-img {
width: 60px;
height: 60px;
left: 50%;
margin-left: -30px;
/* Force Hardware Acceleration in WebKit */
-webkit-transform: translateZ(0);
-webkit-backface-visibility: hidden;
}
.cssanimations .cd-timeline-img.is-hidden {
visibility: hidden;
}
.cssanimations .cd-timeline-img.bounce-in {
visibility: visible;
-webkit-animation: cd-bounce-1 0.6s;
-moz-animation: cd-bounce-1 0.6s;
animation: cd-bounce-1 0.6s;
}
}
@-webkit-keyframes cd-bounce-1 {
0% {
opacity: 0;
-webkit-transform: scale(0.5);
}
60% {
opacity: 1;
-webkit-transform: scale(1.2);
}
100% {
-webkit-transform: scale(1);
}
}
@-moz-keyframes cd-bounce-1 {
0% {
opacity: 0;
-moz-transform: scale(0.5);
}
60% {
opacity: 1;
-moz-transform: scale(1.2);
}
100% {
-moz-transform: scale(1);
}
}
@keyframes cd-bounce-1 {
0% {
opacity: 0;
-webkit-transform: scale(0.5);
-moz-transform: scale(0.5);
-ms-transform: scale(0.5);
-o-transform: scale(0.5);
transform: scale(0.5);
}
60% {
opacity: 1;
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
}
100% {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
}
.cd-timeline-content {
background: rgba(0, 0, 0, 0.1) none repeat scroll 0% 0% !important;
position: relative;
margin-left: 60px;
background: white;
border-radius: 0.25em;
padding: 1em;
}
.cd-timeline-content:after {
content: "";
display: table;
clear: both;
}
.cd-timeline-content h2 {
color: #303e49;
}
.cd-timeline-content p, .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
font-size: 13px;
font-size: 0.8125rem;
}
.cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
display: inline-block;
}
.cd-timeline-content p {
margin: 1em 0;
line-height: 1.6;
}
.cd-timeline-content .cd-read-more {
float: right;
padding: .8em 1em;
background: #acb7c0;
color: white;
border-radius: 0.25em;
}
.no-touch .cd-timeline-content .cd-read-more:hover {
background-color: #bac4cb;
}
.cd-timeline-content .cd-date {
float: left;
padding: .8em 0;
opacity: .7;
}
.cd-timeline-content::before {
content: '';
position: absolute;
top: 16px;
right: 100%;
height: 0;
width: 0;
border: 7px solid transparent;
border-right: 7px solid white;
}
@media only screen and (min-width: 768px) {
.cd-timeline-content h2 {
font-size: 20px;
font-size: 1.25rem;
}
.cd-timeline-content p {
font-size: 16px;
font-size: 1rem;
}
.cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
font-size: 14px;
font-size: 0.875rem;
}
}
@media only screen and (min-width: 1170px) {
.cd-timeline-content {
margin-left: 0;
padding: 1.6em;
width: 45%;
}
.cd-timeline-content::before {
top: 24px;
left: 100%;
border-color: transparent;
border-left-color: rgba(0, 0, 0, 0.1);
}
.cd-timeline-content .cd-read-more {
float: left;
}
.cd-timeline-content .cd-date {
position: absolute;
width: 100%;
left: 122%;
top: 6px;
font-size: 16px;
font-size: 1rem;
text-align: left;
}
.cd-timeline-block:nth-child(even) .cd-timeline-content {
float: right;
}
.cd-timeline-block:nth-child(even) .cd-timeline-content::before {
top: 24px;
left: auto;
right: 100%;
border-color: transparent;
border-right-color: rgba(0, 0, 0, 0.1);
}
.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
float: right;
}
.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
left: auto;
right: 122%;
text-align: right;
}
.cssanimations .cd-timeline-content.is-hidden {
visibility: hidden;
}
.cssanimations .cd-timeline-content.bounce-in {
visibility: visible;
-webkit-animation: cd-bounce-2 0.6s;
-moz-animation: cd-bounce-2 0.6s;
animation: cd-bounce-2 0.6s;
}
}
@media only screen and (min-width: 1170px) {
/* inverse bounce effect on even content blocks */
.cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
-webkit-animation: cd-bounce-2-inverse 0.6s;
-moz-animation: cd-bounce-2-inverse 0.6s;
animation: cd-bounce-2-inverse 0.6s;
}
}
@-webkit-keyframes cd-bounce-2 {
0% {
opacity: 0;
-webkit-transform: translateX(-100px);
}
60% {
opacity: 1;
-webkit-transform: translateX(20px);
}
100% {
-webkit-transform: translateX(0);
}
}
@-moz-keyframes cd-bounce-2 {
0% {
opacity: 0;
-moz-transform: translateX(-100px);
}
60% {
opacity: 1;
-moz-transform: translateX(20px);
}
100% {
-moz-transform: translateX(0);
}
}
@keyframes cd-bounce-2 {
0% {
opacity: 0;
-webkit-transform: translateX(-100px);
-moz-transform: translateX(-100px);
-ms-transform: translateX(-100px);
-o-transform: translateX(-100px);
transform: translateX(-100px);
}
60% {
opacity: 1;
-webkit-transform: translateX(20px);
-moz-transform: translateX(20px);
-ms-transform: translateX(20px);
-o-transform: translateX(20px);
transform: translateX(20px);
}
100% {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
}
@-webkit-keyframes cd-bounce-2-inverse {
0% {
opacity: 0;
-webkit-transform: translateX(100px);
}
60% {
opacity: 1;
-webkit-transform: translateX(-20px);
}
100% {
-webkit-transform: translateX(0);
}
}
@-moz-keyframes cd-bounce-2-inverse {
0% {
opacity: 0;
-moz-transform: translateX(100px);
}
60% {
opacity: 1;
-moz-transform: translateX(-20px);
}
100% {
-moz-transform: translateX(0);
}
}
@keyframes cd-bounce-2-inverse {
0% {
opacity: 0;
-webkit-transform: translateX(100px);
-moz-transform: translateX(100px);
-ms-transform: translateX(100px);
-o-transform: translateX(100px);
transform: translateX(100px);
}
60% {
opacity: 1;
-webkit-transform: translateX(-20px);
-moz-transform: translateX(-20px);
-ms-transform: translateX(-20px);
-o-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
}

View File

@ -0,0 +1,372 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32"
height="32"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="cd-icon-graduation.svg"
inkscape:export-filename="./Chapéu de Formatura - 1.0.0.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<title
id="title3212">Chapéu de Formatura</title>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.313708"
inkscape:cx="13.931073"
inkscape:cy="1.1070481"
inkscape:document-units="px"
inkscape:current-layer="layer5"
showgrid="false"
borderlayer="true"
showborder="true"
inkscape:showpageshadow="true"
showguides="true"
inkscape:guide-bbox="true"
guidetolerance="20"
inkscape:window-width="1680"
inkscape:window-height="1020"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-maximized="0"
inkscape:snap-to-guides="true"
inkscape:snap-grids="true"
inkscape:snap-page="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-global="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox-midpoints="true"
inkscape:object-paths="true"
inkscape:object-nodes="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:snap-nodes="true">
<sodipodi:guide
orientation="2048.0,0"
position="2048,38.171683"
id="guide3022" />
<sodipodi:guide
orientation="0,2048.0"
position="5.0912943e-05,2086.1717"
id="guide3028" />
</sodipodi:namedview>
<defs
id="defs4">
<mask
maskUnits="userSpaceOnUse"
id="mask3818">
<circle
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172466)"
id="path3820"
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
cx="290.5"
cy="275.5"
r="192.5" />
</mask>
<clipPath
id="clipPath3929"
clipPathUnits="userSpaceOnUse">
<path
inkscape:connector-curvature="0"
style="fill:#ff3232;fill-opacity:1;stroke:none"
d="m 0,0 0,1024 1024,0 L 1024,0 0,0 Z m 278.4375,333.84375 119.78125,0 c 9.83697,42.31453 19.85954,84.58596 29.9375,126.84375 9.86978,-42.28798 20.05132,-84.50237 29.6875,-126.84375 l 108.90625,0 c 9.63586,42.34141 19.8178,84.55578 29.6875,126.84375 10.07827,-42.25772 20.10031,-84.52927 29.9375,-126.84375 l 119.1875,0 c -26.26221,110.73099 -52.49625,221.46929 -78.28125,332.3125 l -122.8125,0 c -10.59439,-45.55681 -21.46638,-91.04874 -32.375,-136.53125 -10.66279,45.51136 -21.5615,90.96897 -32,136.53125 l -122.8125,0 c -25.71418,-110.03502 -52.0286,-219.92873 -78.25,-329.84375 l -0.59375,-2.46875 z"
id="path3931" />
</clipPath>
<clipPath
id="clipPath3934"
clipPathUnits="userSpaceOnUse">
<path
id="path3936"
d="m 0,0 0,1024 1024,0 L 1024,0 0,0 Z m 278.4375,333.84375 119.78125,0 c 9.83697,42.31453 19.85954,84.58596 29.9375,126.84375 9.86978,-42.28798 20.05132,-84.50237 29.6875,-126.84375 l 108.90625,0 c 9.63586,42.34141 19.8178,84.55578 29.6875,126.84375 10.07827,-42.25772 20.10031,-84.52927 29.9375,-126.84375 l 119.1875,0 c -26.26221,110.73099 -52.49625,221.46929 -78.28125,332.3125 l -122.8125,0 c -10.59439,-45.55681 -21.46638,-91.04874 -32.375,-136.53125 -10.66279,45.51136 -21.5615,90.96897 -32,136.53125 l -122.8125,0 c -25.71418,-110.03502 -52.0286,-219.92873 -78.25,-329.84375 l -0.59375,-2.46875 z"
style="fill:#ff3232;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
</clipPath>
<mask
maskUnits="userSpaceOnUse"
id="mask3818-2">
<circle
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172466)"
id="path3820-2-2"
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
cx="290.5"
cy="275.5"
r="192.5" />
</mask>
<mask
maskUnits="userSpaceOnUse"
id="mask3818-0">
<circle
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172466)"
id="path3820-8"
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
cx="290.5"
cy="275.5"
r="192.5" />
</mask>
<clipPath
id="clipPath3006-9"
clipPathUnits="userSpaceOnUse">
<circle
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172465)"
id="path3008-1"
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
cx="290.5"
cy="275.5"
r="192.5" />
</clipPath>
<clipPath
id="clipPath3006"
clipPathUnits="userSpaceOnUse">
<circle
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172465)"
id="path3008"
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
cx="290.5"
cy="275.5"
r="192.5" />
</clipPath>
<mask
id="mask3818-4"
maskUnits="userSpaceOnUse">
<circle
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
id="path3820-9"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172466)"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
cx="290.5"
cy="275.5"
r="192.5" />
</mask>
<clipPath
id="clipPath3006-9-8"
clipPathUnits="userSpaceOnUse">
<circle
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172465)"
id="path3008-1-1"
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
cx="290.5"
cy="275.5"
r="192.5" />
</clipPath>
<mask
id="mask3818-1"
maskUnits="userSpaceOnUse">
<circle
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
id="path3820-5"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172466)"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
cx="290.5"
cy="275.5"
r="192.5" />
</mask>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3929-5">
<path
id="path3931-6"
d="m 0,0 0,1024 1024,0 L 1024,0 0,0 Z m 278.4375,333.84375 119.78125,0 c 9.83697,42.31453 19.85954,84.58596 29.9375,126.84375 9.86978,-42.28798 20.05132,-84.50237 29.6875,-126.84375 l 108.90625,0 c 9.63586,42.34141 19.8178,84.55578 29.6875,126.84375 10.07827,-42.25772 20.10031,-84.52927 29.9375,-126.84375 l 119.1875,0 c -26.26221,110.73099 -52.49625,221.46929 -78.28125,332.3125 l -122.8125,0 c -10.59439,-45.55681 -21.46638,-91.04874 -32.375,-136.53125 -10.66279,45.51136 -21.5615,90.96897 -32,136.53125 l -122.8125,0 c -25.71418,-110.03502 -52.0286,-219.92873 -78.25,-329.84375 l -0.59375,-2.46875 z"
style="fill:#ff3232;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3934-2">
<path
inkscape:connector-curvature="0"
style="fill:#ff3232;fill-opacity:1;stroke:none"
d="m 0,0 0,1024 1024,0 L 1024,0 0,0 Z m 278.4375,333.84375 119.78125,0 c 9.83697,42.31453 19.85954,84.58596 29.9375,126.84375 9.86978,-42.28798 20.05132,-84.50237 29.6875,-126.84375 l 108.90625,0 c 9.63586,42.34141 19.8178,84.55578 29.6875,126.84375 10.07827,-42.25772 20.10031,-84.52927 29.9375,-126.84375 l 119.1875,0 c -26.26221,110.73099 -52.49625,221.46929 -78.28125,332.3125 l -122.8125,0 c -10.59439,-45.55681 -21.46638,-91.04874 -32.375,-136.53125 -10.66279,45.51136 -21.5615,90.96897 -32,136.53125 l -122.8125,0 c -25.71418,-110.03502 -52.0286,-219.92873 -78.25,-329.84375 l -0.59375,-2.46875 z"
id="path3936-1" />
</clipPath>
<mask
id="mask3818-2-0"
maskUnits="userSpaceOnUse">
<circle
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
id="path3820-2-2-6"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172466)"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
cx="290.5"
cy="275.5"
r="192.5" />
</mask>
<mask
id="mask3818-0-4"
maskUnits="userSpaceOnUse">
<circle
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
id="path3820-8-9"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172466)"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
cx="290.5"
cy="275.5"
r="192.5" />
</mask>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3006-9-88">
<circle
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
id="path3008-1-8"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172465)"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
cx="290.5"
cy="275.5"
r="192.5" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3006-1">
<circle
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
id="path3008-4"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172465)"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
cx="290.5"
cy="275.5"
r="192.5" />
</clipPath>
<mask
maskUnits="userSpaceOnUse"
id="mask3818-4-1">
<circle
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172466)"
id="path3820-9-1"
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
cx="290.5"
cy="275.5"
r="192.5" />
</mask>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3006-9-8-9">
<circle
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
id="path3008-1-1-2"
transform="matrix(1.2020779,0,0,1.2020779,-93.20363,-75.172465)"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
cx="290.5"
cy="275.5"
r="192.5" />
</clipPath>
</defs>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Chapéu de Formatura</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Maicon Fonseca Zanco, Originuum</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>Maicon Fonseca Zanco, Originuum</dc:title>
</cc:Agent>
</dc:rights>
<dc:publisher>
<cc:Agent>
<dc:title>Maicon Fonseca Zanco, Originuum</dc:title>
</cc:Agent>
</dc:publisher>
<cc:license
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="projeto"
id="layer5"
inkscape:groupmode="layer"
transform="translate(5.0912943e-5,-1030.1717)">
<g
transform="matrix(0.01599205,0,0,0.01599205,-0.38316911,1052.038)"
id="layer1-1"
inkscape:label="Camada 1"
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1">
<path
sodipodi:nodetypes="ccccccccccccccc"
inkscape:connector-curvature="0"
id="rect4129-6"
transform="matrix(0.71413845,0,0,0.71413845,-53.906305,-1342.0921)"
d="M 1493.3125,517.65625 109.03125,1079.375 l 715.125,357.5625 0,-0.031 675.84375,337.9376 667.25,-335.2188 0,0.031 L 2911,1066 Z M 2167.25,1473.6562 1500,1808.875 824.15625,1470.9375 772.4375,1956.2812 c 524.3155,375.3838 997.2764,309.3744 1441.9687,0 z"
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" />
<g
transform="matrix(-3.2849508,0,0,2.9264738,1008.5576,-1778.8846)"
id="g4225-9"
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1">
<path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:7.4180727;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 9.40625,399.53125 c -9.99752665,0.71143 -23.130461,4.7948 -24.78125,16.25 0.388631,9.94189 12.1360547,13.02831 20.375,12.71875 10.181237,-0.96866 14.672158,-1.23801 19.727726,0.40147 C 74.943484,443.14265 175.375,471.625 175.375,471.625 l 3.78784,51.60234 c 0,0 2.66132,45.32062 -4.14265,97.11832 12.14327,2.72166 19.10917,1.61866 27.61548,-7.76317 -2.03143,-29.44877 -9.52198,-92.41054 -9.52198,-92.41054 L 196,459.25 c 0,0 -110.397207,-31.6459 -164.90625,-48.4375 -1.631183,-9.66577 -13.597304,-11.86685 -21.6875,-11.28125 z"
id="path4134-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccc" />
<path
inkscape:connector-curvature="0"
transform="matrix(-0.20367573,0,0,0.22862489,265.99656,256.42688)"
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
d="m 375.52983,1219.9203 c -33.72333,-7.2442 -56.30261,-32.9141 -56.30261,-58.5964 0,-25.6822 22.57928,-49.5123 56.30261,-54.0087 42.6084,-5.6812 86.3733,20.4226 86.3733,59.8215 0,39.3988 -43.7649,61.9366 -86.3733,52.7836 0,0 0,0 0,0"
id="path3798-9" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg2"
sodipodi:docname="cd-icon-work.svg"
viewBox="0 0 32 32"
version="1.1"
inkscape:version="0.91 r13725"
width="32"
height="32">
<defs
id="defs6" />
<sodipodi:namedview
id="namedview8"
bordercolor="#666666"
inkscape:pageshadow="2"
guidetolerance="10"
pagecolor="#ffffff"
gridtolerance="10"
inkscape:window-maximized="0"
inkscape:zoom="1.2685914"
objecttolerance="10"
borderopacity="1"
inkscape:current-layer="svg2"
inkscape:cx="47.620337"
inkscape:cy="-179.91172"
inkscape:window-y="30"
inkscape:window-x="0"
inkscape:window-width="1680"
showgrid="false"
inkscape:pageopacity="0"
inkscape:window-height="1020"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<path
id="path4"
inkscape:connector-curvature="0"
d="m 4,0.40000012 -0.4,0.79999998 4.2,2.4 c 0,2 -0.8,3.6 -2.6,4.6 l -4.2,-2.4 -0.2,0.4 c 1,3 3,4.9999999 7,4.9999999 1,0 4,3 5.6,4.6 l 3.2,-3.2 C 15,11 11.4,7.4000001 11.4,6.4000001 c 0,-3.6 -1,-5.99999998 -7.4,-5.99999998 z m 25,0.99999998 -4,2.8 -0.4,1.6 L 13,17.4 l -1.6,-1 -0.8,0.8 c 0,2.4 -2.8,3.6 -4,3.6 L 0,27.4 c 0,2 2.2,4.2 4.2,4.2 L 10.8,25 c 0,-1.2 1.2,-4 3.6,-4 l 0.8,-0.8 -1,-1.6 11.6,-11.5999999 1.6,-0.4 2.8,-4 -1.2,-1.2 z M 19,15 15.8,18.2 c 2.4,2.4 5.6,5.6 5.6,6.6 0,3.6 1,6 7.4,6 L 29.2,30 25,27.6 c 0,-2 0.8,-3.6 2.6,-4.6 L 31.8,25.4 32,25 c -1,-3 -3,-5 -7,-5 -1,0 -3.6,-2.6 -6,-5 z"
style="fill:#ffffff;fill-opacity:1" />
<metadata
id="metadata6">
<rdf:RDF>
<cc:Work>
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
<dc:publisher>
<cc:Agent
rdf:about="http://openclipart.org/">
<dc:title>Openclipart</dc:title>
</cc:Agent>
</dc:publisher>
<dc:title></dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

File diff suppressed because it is too large Load Diff