Pushing this mess anyway

This commit is contained in:
Wirlaburla 2023-04-26 17:57:59 -05:00
parent f59af072d9
commit bf26698b70
18 changed files with 883 additions and 2004 deletions

56
css/accform.css Executable file
View File

@ -0,0 +1,56 @@
.logincontainer {
max-width: 300px;
margin: 32px;
text-align: center;
}
.logincontainer hr {
border: 1px inset rgba(0,0,0,0.5);
}
.logincontainer .assets,
.logincontainer .accinput {
flex-grow: 1;
padding: 8px;
}
.options .option { display: flex; }
.options .option .name {
font-family: var(--spfont1);
font-size: 12px;
flex-shrink: 0; flex-grow: 1;
text-align: right;
padding: 2px;
}
.options .option input,
.options .option select,
.options .option textarea, {
flex-grow: 0;
}
.logincontainer h2 {
font-family: var(--spfont1);
}
.logincontainer .error {
color: var(--error);
}
.logincontainer .buttonbar {
display: flex;
}
img.bg-icon-overlay {
position: absolute;
bottom: 0; right: 0;
width: 50vh; height: 50vh;
/* width: 100vh; height: 100vh; */
opacity: 0.25;
z-index: -100;
}
ul.errors {
text-align: left;
color: red;
}

109
css/blog.css Normal file
View File

@ -0,0 +1,109 @@
body.blog-index .article {
background-color: var(--menu-bg, #d0d0d0);
border: var(--menu-border, 1px solid #a4a4a4);
margin: 4px;
padding: 8px;
}
body.blog-index .article p {
margin: 2px;
}
body.blog-index .article i, .article .userlink {
font-family: var(--spfont1, Pixio);
}
body.blog-index .article i { color: var(--subtitle, #525252); }
.body > img {
max-width: calc(100% - 64px);
}
.subject {
margin: 4px 0px;
}
#commentFrame {
width: calc(100% - 8px);
border: none;
}
.comment {
background-color: var(--menu-bg, #d0d0d0);
border: var(--menu-border, 1px solid #bdbdbd);
margin: 4px;
padding: 8px;
}
.comment p {
margin: 2px;
}
.comment i {
color: var(--subtitle, #525252);
}
.userlink, .userlink a {
color: var(--main-text, #000000);
text-decoration: none;
}
.userlink, .date i, .comment i, #comments {
font-family: var(--spfont1, Pixio);
}
textarea {
width: calc(100% - 8px);
}
.header-title h1, .header-title .author {
margin: 2px;
}
.header-title .author .userlink {
margin: 0px;
}
.header-title i {
color: var(--subtitle, #525252);
}
.comment {
background-color: var(--menu-bg, #d0d0d0);
border: var(--menu-border, 1px solid #bdbdbd);
margin: 4px;
padding: 8px;
}
.comment p {
margin: 2px;
}
.comment a[title="Delete"],
.userlink,
.comment i{
font-family: var(--spfont1, Pixio);
}
.comment i {
color: var(--subtitle, #525252);
}
.userlink, .userlink a {
color: var(--main-text, #000000);
text-decoration: none;
}
textarea {
width: calc(100% - 8px);
}
#header {
font-size: 24px;
vertical-align: top;
}
body#comments > .header-title {
top: -10px;
}

16
css/buttons.css Normal file
View File

@ -0,0 +1,16 @@
div.button {
display: block;
padding: 4px;
background: #D4D4D4;
border: 2px outset #B8B8B8;
}
div.button:hover {
background: #99D4AB;
border: 2px outset #77C68F;
}
div.button:active {
background: #9E9E9E;
border: 2px inset #707070;
}

67
css/creations.css Executable file
View File

@ -0,0 +1,67 @@
body.creation-page { }
body.creation-page .creation-container {
max-width: 800px;
margin: 0 auto;
}
body.creation-page .creation-container .title {
background: var(--menu-bg);
border: var(--menu-border);
border-bottom: none;
text-align: left;
font-weight: bold;
font-family: var(--spfont1);
font-size: 24px;
}
body.creation-page .creation-container .title td { padding: 8px; }
body.creation-page .creation-container .gallery-cell {
background: var(--menu-bg);
border-left: var(--menu-border);
border-right: var(--menu-border);
padding: 8px;
}
body.creation-page .creation-container .gallery {
height: 50vh;
}
body.creation-page .creation-container .gallery .gallery-pager {
width: 24px;
text-align: center;
font-size: 20px;
font-family: var(--spfont1);
color: var(--main-text);
text-decoration: none;
cursor: pointer;
}
body.creation-page .creation-container .filmstrip-cell {
background: var(--menu-bg);
border: var(--menu-border);
border-top: none;
padding: 8px;
}
body.creation-page .creation-container .info-cell {
width: 224px;
vertical-align: top;
}
body.creation-page .creation-container .info-panel {
background: var(--menu-bg);
border: var(--menu-border);
padding: 8px;
}
body.creation-page .creation-container .info-panel hr,
body.creation-page .creation-container .box[name='desc'] hr {
border: var(--menu-border);
color: var(--menu-bg);
}
body.creation-page .creation-container .tabbed-cell {
vertical-align: top;
}

View File

@ -1,15 +1,3 @@
:root {
--spfont1: Pixio;
--spfont2: TypeWriter;
--spfont3: Pixelated;
--spfont4: Joystix;
--spfont5: VCR_OSD_MONO;
--spfont6: BitPap;
--spfont7: Comicoro;
--spfont8: DOSVGA-LessPerfect;
--spfont9: DOSVGA-MorePerfect;
}
@font-face {
font-family: TypeWriter;
src: url(//assets.worlio.com/fonts/type_writer/type_writer.woff),

342
css/radio.css Normal file
View File

@ -0,0 +1,342 @@
@import url('//assets.worlio.com/style/css/theme.css');
@font-face {
font-family:Pixio;
src:url(//assets.worlio.com/fonts/Pixio/Pixio.woff2),
url(//assets.worlio.com/fonts/Pixio/Pixio.woff),
url(//assets.worlio.com/fonts/Pixio/Pixio.ttf) format("truetype");
}
@font-face {
font-family:nk57;
src:url(../fonts/nk57/nk57-monospace-cd-rg.ttf) format("truetype"),
url(../fonts/nk57/nk57-monospace-cd-bd.ttf) format("truetype"),
url(../fonts/nk57/nk57-monospace-cd-it.ttf) format("truetype"),
url(../fonts/nk57/nk57-monospace-cd-lt.ttf) format("truetype");
}
:root {
--primary: #0079b5;
--primary-border: #009ae6;
--secondary: #f3dca9;
--secondary-border: #f2e5c8;
--button: #DFDFDF;
--button-active: gray;
--monitor: #0F0F0F;
--monitor-text: #F0F0F0;
--monitor-border: gray;
--link-color: unset;
}
*:link, *:visited {
color: var(--link-color);
}
html {
height: 100%;
}
body {
background: var(--background-image) var(--main-background);
background-repeat: repeat;
height: 100%;
margin: 0;
}
body, button, fakebutton, input { font-family: Pixio; }
.container, .player-container {
background: var(--primary);
border: 2px outset var(--primary-border);
padding: 4px;
}
.container {
min-width: 320px;
min-height: 280px;
display: flex;
gap: 4px;
margin: auto;
max-width: 976px;
}
.player-container {
position: relative;
border-bottom: none;
width: 320px;
height: 78px;
margin-bottom: -2px;
z-index: 1;
}
.footer {
min-width: 320px;
max-width: 976px;
text-align: right;
margin: auto;
}
player, visualizer {
display: flex;
flex-direction: column;
background: var(--secondary);
border: 2px outset var(--secondary-border);
flex-shrink: 0;
padding: 4px;
}
.banner {
display: flex;
}
player {
width: 308px; height: 68px;
}
visualizer {
margin-bottom: 4px;
}
.vis-container {
width: 320px;
max-width: 320px;
}
button, fakebutton, slider {
border: 2px outset var(--button);
background: var(--button);
}
slider input {
background: lightgray;
-webkit-appearance: none;
appearance: none;
height: 50%;
margin: auto 4px;
width: 96px;
}
slider input::-webkit-slider-thumb,
slider input::-moz-range-thumb {
background: gray;
-webkit-appearance: none;
appearance: none;
width: 8px;
height: 100%;
border: none;
border-radius: 0;
}
select {
border: none;
background: none;
}
button:active,
button.active,
fakebutton:active,
fakebutton.active {
border: 2px inset var(--button-active);
background: var(--button-active);
}
fakebutton { display: flex; }
fakebutton img { margin: 2px; }
controls {
display: flex;
}
controls input { flex-grow: 1; }
tablist {
display: flex;
flex-shrink: 0;
}
metadata, canvas {
color: var(--monitor-text);
background: black;
border: 2px inset var(--secondary-border);
}
metadata {
padding: 4px;
display: flex;
flex-direction: column;
}
metadata station { font-weight: bold; }
panel {
display: flex;
flex-direction: column;
flex: 1;
}
stations {
display: flex;
flex-direction: column;
overflow-y: auto;
border: 2px inset var(--primary-border);
margin: 2px;
flex-grow: 1;
}
favorites, history, stats {
background: var(--monitor);
color: var(--monitor-text);
border: 2px inset var(--monitor-border);
flex-grow: 1;
display: flex;
flex-direction: column;
padding: 4px;
overflow-y: scroll;
min-height: 0;
}
tabbox {
display: none;
flex-direction: column;
flex-grow: 1;
}
tabbox.active { display: flex; }
station {
display: flex;
flex-direction: column;
cursor: pointer;
user-select: none;
padding: 4px;
margin: 2px;
border: 2px inset var(--button-active);
background: var(--button-active);
}
station.active {
background: var(--button);
border: 2px outset var(--button);
color: black;
}
station station-name { font-weight: bold; }
station track-meta {
font-size: 12px;
}
history track-container {
display: flex;
flex-direction: column;
padding: 2px;
}
history track-container track-station { font-weight: bold; }
history track-container:nth-of-type(1) {
background-color: var(--monitor-text);
color: var(--monitor);
}
canvas.vis, canvas.metadata { border-bottom: none; }
.button-row { display: flex; }
.fav-button img {
filter: contrast(0%);
}
.fav-button.fav img {
filter: none;
}
favorites .station-header,
history .station-header {
text-align: center;
margin: 4px 0;
text-decoration: underline;
margin-top: 12px;
}
favorites .track,
history .track {
display: flex;
border-bottom: 1px dashed var(--monitor-text);
margin: 2px 0;
}
favorites .track button,
history .track button {
background: none;
border: none;
cursor: pointer;
flex-shrink: 0;
flex-grow: 0;
margin: 2px;
}
favorites .track a,
history .track a {
flex-grow: 1;
}
@media only screen and (orientation: portrait) {
.container, .footer {
flex-direction: column;
width: 320px;
}
.banner { flex-direction: column-reverse; }
.banner img, .player-container {
margin: auto;
}
.banner > img { flex-shrink: 0; }
.player-container { margin-bottom: -2px; }
panel {
max-height: 480px;
}
favorites, history {
height: 240px;
}
body.old panel#favorites, body.old panel#history { display: none; }
}
@media only screen and (orientation: landscape) {
.container, .footer {
width: calc(100% - 64px);
}
body:not(.old) .container { height: calc(100% - 212px); }
.banner {
margin: auto;
min-width: 320px;
width: calc(100% - 52px);
max-width: 988px;
}
.banner > img { margin-top: 2px; }
.player-container {
margin-top: 48px;
}
/* OLD */
body.old .container, body.old .footer {
flex-direction: column;
width: 320px;
}
body.old .banner { flex-direction: column-reverse; }
body.old .banner img, body.old .player-container {
margin: auto;
}
body.old .banner > img { flex-shrink: 0; }
body.old .player-container { margin-bottom: -2px; }
body.old panel {
max-height: 480px;
}
body.old panel#favorites, body.old panel#history { display: none; }
}

116
css/settings.css Normal file
View File

@ -0,0 +1,116 @@
iframe {
width: 100%;
border: none;
min-height: 128px;
}
.box[name="profile"] img.avatar {
float: left;
margin: 2px;
}
.tabbed-container .box {
padding: 8px;
}
.tablist .tab {
cursor: pointer;
}
.box .option .title.small {
font-size: 12px;
}
.option {
margin: 8px 0px;
}
.option.disabled > *:not(.title) {
opacity: 0.2;
}
.option .title {
font-family: var(--spfont1);
font-weight: bold;
}
.option .inputtext:not(.shown) {
display: none;
}
.box hr {
border: var(--menu-border);
}
.box .buttonbar {
border-top: var(--menu-border);
padding: 4px;
display: flex;
}
.box .buttonbar .grower {
flex-grow: 1;
}
.box[name="sessions"] .session {
background: var(--mail-content-bg, #dbdbdb);
border: var(--mail-content-border, 1px outset #a8a8a8);
padding: 4px;
margin: 8px 0px;
}
.box[name="sessions"] .session .title {
background: var(--mail-subject-bg, #b7b7b7);
border: var(--mail-subject-border, 1px outset #8a8a8a);
display: flex;
padding: 4px;
margin: -8px;
margin-bottom: 4px;
font-family: var(--spfont1);
}
.box[name="sessions"] .session .title img {
height: 16px;
}
.box[name="sessions"] .session .title b {
flex-grow: 1;
}
.box[name="sessions"] .session .title .button {
margin: 0px !important;
}
.box .pager { display: flex; }
.box .userlist .user-box {
display: flex;
margin: 4px 0px;
}
.box .userlist .user-box:hover { background: #0001; }
.box .userlist .user-box hr {
margin: 4px;
}
.guestbooklist .gbmsgbox {
border: var(--menu-border);
background: var(--menu-bg);
margin: 4px;
padding: 2px;
}
.guestbooklist .gbmsgbox .name {
display: flex;
}
@media only screen and (orientation: landscape) {
.tabbed-container.primary > .box .tabbed-container.secondary {
margin: -44px -4px -8px -4px;
}
.tabbed-container.primary > .box .tabbed-container.secondary .box {
border-left: none;
border-right: none;
border-bottom: none;
}
}

View File

@ -8,11 +8,15 @@
--acc-nav-separator: 2px solid #000000;
--context-menu: #d0d0d0;
--context-menu-border: 1px outset #a4a4a4;
--context-menu-border: 2px outset #a4a4a4;
--context-menu-hover: #bfbfbf;
--menu-border: 1px outset #c8b793;
--menu-bg: #dbd1bb;
/* DEPRECATED: Use --x-container-y */
--menu-border: 2px outset #c4dbff;
--menu-bg: #a5cff9;
--primary-container-background: #a5cff9;
--primary-container-border: 2px outset #c4dbff;
--header-bg: #ffffff;
--header-text: #000000;
@ -32,12 +36,13 @@
--staff: #d500d1;
--tab-inactive: #aeafb9;
--tab-selected: #bfcfdd;
--tab-border: 2px outset #000;
--tab-inactive: #b9b3ae;
--tab-selected: #ddd0bf;
--tab-gradient: #dedede;
--popup-title-bg: #b3b3b3;
--popup-title-border: 1px outset #868686;
--popup-title-border: 2px outset #868686;
--dialog-bg: #fbebcc;
--dialog-button-hover: #f9f7dd;
@ -57,11 +62,11 @@
--success: #95ce8d;
--mail-subject-bg: #b7b7b7;
--mail-subject-border: 1px outset #8a8a8a;
--mail-subject-border: 2px outset #8a8a8a;
--mail-sub-bg: #cecece;
--mail-sub-border: 1px outset #a8a8a8;
--mail-sub-border: 2px outset #a8a8a8;
--mail-content-bg: #dbdbdb;
--mail-content-border: 1px outset #959595;
--mail-content-border: 2px outset #959595;
--mail-buttonbar: #cacaca;
--forum-header: #f3dca9;
@ -121,12 +126,6 @@
--navbar-bg: url('//assets.worlio.com/style/navbar-bg');
--navbar-gradient: url('//assets.worlio.com/style/navbar-gradient');
--rankflag0: #777;
--rankflag1: #4c3525;
--rankflag2: #3d464b;
--rankflag3: #5c4d0f;
--rankflag4: #5988a5;
--rankflag5: #319b3a;
--rankflag6: #d35ed0;
--rankflag7: #171717;
--primary-font: Pixio;
--secondary-font: TypeWriter;
}

BIN
error/401.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

View File

@ -1,335 +0,0 @@
<?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"
width="379.21594"
height="684.04822"
viewBox="0 0 100.33419 180.98776"
version="1.1"
id="svg8"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="worlioservice.svg"
inkscape:export-filename="/home/nick/Pictures/wb/worlioservice.png"
inkscape:export-xdpi="200.11066"
inkscape:export-ydpi="200.11066">
<defs
id="defs2">
<inkscape:path-effect
effect="bspline"
id="path-effect107"
is_visible="true"
lpeversion="0"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect2577"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1490"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1478"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1069" />
</marker>
<inkscape:path-effect
effect="bspline"
id="path-effect1026"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1022"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<mask
maskUnits="userSpaceOnUse"
id="mask1480">
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.280763px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 86.145266,244.86867 c -1.386747,-0.34065 -1.110824,-0.51857 -1.108505,-0.67046 0.0023,-0.1519 -0.472558,-0.14663 -0.733507,1.13811 -0.26095,1.28475 -0.307681,3.84852 0.902854,5.19046 1.210535,1.34195 3.677909,1.46219 4.930029,0.18407 1.25212,-1.27811 1.289127,-3.95471 1.040011,-5.29089 -0.249117,-1.33618 -0.784597,-1.33148 -0.802445,-1.09853 -0.01785,0.23295 0.191747,0.42625 -1.330877,0.65666 -1.522624,0.23041 -1.510813,0.23123 -2.89756,-0.10942 z"
id="path1482"
inkscape:path-effect="#path-effect1478"
inkscape:original-d="m 84.075752,244.96828 c 0.682966,-0.43995 0.958889,-0.61787 1.437976,-0.92723 -0.474639,0.006 -0.949516,0.0113 -1.424684,0.0158 -0.04647,2.56422 -0.0932,5.12799 -0.1402,7.69162 2.467785,0.12054 4.935159,0.24078 7.402407,0.36073 0.03727,-2.67646 0.07428,-5.35306 0.111027,-8.03012 -0.535244,0.005 -1.070721,0.0101 -1.606492,0.0141 0.500047,0.46122 0.709655,0.65451 1.499317,1.38277 -3.834918,-0.26721 -3.823107,-0.26638 -7.279351,-0.50767 z"
sodipodi:nodetypes="ccccccccc" />
</mask>
<mask
maskUnits="userSpaceOnUse"
id="mask1484">
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.280763px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 86.145266,244.86867 c -1.386747,-0.34065 -1.110824,-0.51857 -1.108505,-0.67046 0.0023,-0.1519 -0.472558,-0.14663 -0.733507,1.13811 -0.26095,1.28475 -0.307681,3.84852 0.902854,5.19046 1.210535,1.34195 3.677909,1.46219 4.930029,0.18407 1.25212,-1.27811 1.289127,-3.95471 1.040011,-5.29089 -0.249117,-1.33618 -0.784597,-1.33148 -0.802445,-1.09853 -0.01785,0.23295 0.191747,0.42625 -1.330877,0.65666 -1.522624,0.23041 -1.510813,0.23123 -2.89756,-0.10942 z"
id="path1486"
inkscape:path-effect="#path-effect1478"
inkscape:original-d="m 84.075752,244.96828 c 0.682966,-0.43995 0.958889,-0.61787 1.437976,-0.92723 -0.474639,0.006 -0.949516,0.0113 -1.424684,0.0158 -0.04647,2.56422 -0.0932,5.12799 -0.1402,7.69162 2.467785,0.12054 4.935159,0.24078 7.402407,0.36073 0.03727,-2.67646 0.07428,-5.35306 0.111027,-8.03012 -0.535244,0.005 -1.070721,0.0101 -1.606492,0.0141 0.500047,0.46122 0.709655,0.65451 1.499317,1.38277 -3.834918,-0.26721 -3.823107,-0.26638 -7.279351,-0.50767 z"
sodipodi:nodetypes="ccccccccc" />
</mask>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.64"
inkscape:cx="133.83238"
inkscape:cy="285.97738"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:pagecheckerboard="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-width="1920"
inkscape:window-height="1019"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
showguides="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata5">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Camada 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-98.385804,-111.41695)"
style="display:inline">
<path
style="fill:#ffb0bd;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 151.65055,123.48829 -35.52769,8.09371 c 0,0 2.78753,23.61097 5.61649,33.54106 3.95936,13.89797 3.64866,33.58373 3.63984,47.8746 -0.013,21.12129 3.6795,39.42225 -3.71189,49.99049 -2.33017,3.33169 -5.92953,-4.43992 -7.72628,-15.74788 -1.74236,-10.96569 -2.20063,-21.86864 -2.73208,-38.02578 -0.36777,-11.18088 -3.21047,-20.83735 -5.77945,-20.89704 -3.69024,-0.0857 -6.138362,6.69827 -6.07303,18.60547 0.09508,17.32816 1.08923,31.3535 2.02429,46.34316 0.92777,14.87284 3.22673,25.77204 9.53669,30.83182 6.89806,5.53137 16.06943,6.99854 20.1218,3.92614 8.92216,-6.76455 12.8749,-13.68428 15.66865,-33.11233 2.23531,-15.54458 1.66182,-36.6698 2.62004,-52.34502 0.91995,-15.0492 0.62383,-36.03492 -1.72694,-50.99472 -1.38574,-11.87227 1.43667,-17.28553 4.04956,-28.08368 z"
id="path1637"
sodipodi:nodetypes="ccsssssssssssscc" />
<path
style="opacity:0.998;fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 118.95208,153.3761 c 1.27082,2.30601 9.54587,1.50916 14.09825,1.16504 5.85063,-0.44227 14.2205,-1.07119 15.05033,-3.18844 0.50055,-1.27712 1.03699,5.58429 1.502,9.32474 0.39166,3.1504 0.76818,10.88382 1.04948,17.08207 0.26695,5.88189 0.29222,10.13793 -0.3248,9.0348 -1.53305,-2.74084 -9.26258,-1.78825 -14.17459,-1.53669 -3.90142,0.19981 -10.58536,0.95375 -11.41614,2.64969 -0.84201,1.71887 -0.6527,-2.80781 -1.20289,-8.36823 -0.30546,-3.08715 -1.53581,-7.7221 -2.51512,-12.71239 -0.98371,-5.01269 -3.50975,-16.06945 -2.06652,-13.45059 z"
id="path1639"
sodipodi:nodetypes="sssssssssss" />
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 99.049518,205.80605 c 0.698755,-2.09283 3.662782,-2.83469 7.176942,-2.79329 2.17696,0.0257 2.90458,0.1993 5.38962,2.92972 0.80196,0.88115 -1.74883,-11.02395 -2.73425,-14.07825 -1.77548,-5.50303 -6.1671,-6.34468 -8.944683,2.42835 -0.824415,2.60396 -1.717358,13.99858 -0.887629,11.51347 z"
id="path1641"
sodipodi:nodetypes="ssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 118.57589,152.97674 c 0,0 0.11711,-0.32552 0.46659,-0.2974"
id="path1647"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 148.23291,151.18438 c 0,0 -0.26795,-0.31047 -0.6259,-0.2614"
id="path1649"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 124.4002,188.27375 c 0,0 0.2807,0.21881 0.5595,0.28489"
id="path1651"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 150.50333,186.99402 c 0,0 -0.38004,0.28583 -0.64636,0.2592"
id="path1653"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 111.94006,225.44104 c -2.27206,-2.04352 -9.96179,1.31929 -11.962312,4.57428"
id="path1655"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 113.82906,245.97515 c -3.57038,-1.87471 -10.23496,0.89229 -12.41834,4.07328"
id="path1657"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 117.48389,260.42271 c -3.27415,-1.66946 -11.4767,5.9392 -12.70795,14.30335"
id="path1659"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 120.76424,263.52912 c -3.8116,6.39971 -3.27325,23.40657 8.22787,25.59893"
id="path1661"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 125.39663,254.82939 c 0.70942,4.40678 8.90501,7.69784 20.67161,4.04769"
id="path1663"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 125.85129,225.16161 c 4.99304,3.32491 16.96796,3.85675 22.74796,0.97268"
id="path1665"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 125.24594,198.4797 c 7.04067,3.42309 19.88397,3.36516 24.37247,0.2344"
id="path1667"
sodipodi:nodetypes="cc" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 113.70771,124.39403 0.30225,3.0428 -3.76485,0.19615 -0.0444,-3.11471 z"
id="path2573" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 110.28465,125.74937 c -0.83325,0.37852 -1.66662,0.7571 -1.90905,1.30305 -0.24242,0.54595 0.10605,1.25888 0.51607,1.38337 0.41002,0.12448 0.88173,-0.33916 0.6747,-0.85826 -0.20704,-0.51909 -1.09308,-1.09381 -2.00794,-0.57936 -0.91486,0.51444 -1.8581,2.11811 -1.90901,3.31775 -0.0509,1.19964 0.79024,1.995 1.43868,2.00032 0.64844,0.005 1.10446,-0.77921 0.85873,-1.35576 -0.24574,-0.57655 -1.19357,-0.94513 -2.08035,-0.10018 -0.88678,0.84494 -1.71205,2.90331 -1.64399,3.97581 0.0681,1.07251 1.02912,1.15914 1.26966,0.91578 0.24054,-0.24336 -0.23939,-0.81694 -0.73192,-0.57872 -0.49253,0.23822 -0.99728,1.28839 -0.75161,2.33905 0.24568,1.05066 1.24147,2.10157 1.85098,2.18533 0.6095,0.0838 0.83299,-0.7995 0.47814,-0.91242 -0.35485,-0.11293 -1.28811,0.5447 -1.35004,1.11504 -0.0619,0.57034 0.74718,1.05312 1.38111,1.02657 0.63394,-0.0265 1.09299,-0.56226 1.21266,-0.87267 0.11967,-0.31041 -0.10042,-0.39561 -0.16956,0.0113 -0.0692,0.40691 0.0129,1.30572 0.62931,1.62335 0.61637,0.31763 1.7668,0.0544 2.32163,-0.27346 0.55483,-0.32786 0.51416,-0.72066 0.25946,-0.84483 -0.25471,-0.12418 -0.72353,0.0206 -0.74322,0.4995 -0.0197,0.4789 0.40976,1.2915 1.0712,1.5931 0.66144,0.3016 1.5548,0.0926 2.06021,-0.34096 0.50541,-0.43352 0.62308,-1.09174 0.50685,-1.34908 -0.11623,-0.25734 -0.46652,-0.11352 -0.67878,0.33303 -0.21225,0.44655 -0.28631,1.19549 0.14135,1.54442 0.42765,0.34894 1.3567,0.29808 1.66218,-0.12634 0.30549,-0.42441 -0.0125,-1.22268 -0.33668,-1.1612 -0.32418,0.0615 -0.65436,0.98281 -0.24732,1.50675 0.40703,0.52394 1.55086,0.65052 1.99713,0.36986 0.44627,-0.28066 0.19511,-0.96881 -0.01,-1.08342 -0.20493,-0.11461 -0.36343,0.34449 -0.19087,0.76143 0.17256,0.41695 0.67583,0.79164 1.02762,0.80133 0.35179,0.01 0.55243,-0.3455 0.75312,-0.70078"
id="path2575"
inkscape:path-effect="#path-effect2577"
inkscape:original-d="m 110.28465,125.74937 c -0.83311,0.37884 -1.66648,0.75742 -2.50011,1.13573 0.34874,0.71322 0.69721,1.42615 1.04543,2.13883 0.47198,-0.4634 0.94369,-0.92704 1.41514,-1.39095 -0.88582,-0.57448 -1.77186,-1.1492 -2.65819,-1.72419 -0.94303,1.60401 -1.88628,3.20767 -2.82984,4.81114 0.84143,0.79564 1.68257,1.591 2.52346,2.3861 0.45631,-0.78429 0.91234,-1.56882 1.36811,-2.35363 -0.94761,-0.36833 -1.89544,-0.73691 -2.84359,-1.10577 -0.82504,2.05874 -1.65031,4.11711 -2.47589,6.17532 0.96137,0.0869 1.92242,0.17354 2.88325,0.25992 -0.4797,-0.57336 -0.95964,-1.14694 -1.43987,-1.72083 -0.50453,1.0505 -1.00929,2.10067 -1.51434,3.15064 0.99609,1.0512 1.99189,2.1021 2.98744,3.15275 0.22376,-0.88303 0.44725,-1.7663 0.67048,-2.64985 -0.93302,0.65793 -1.86628,1.31556 -2.79982,1.97293 0.80941,0.48308 1.61852,0.96586 2.42738,1.44839 0.45934,-0.53547 0.9184,-1.07118 1.3772,-1.60717 -0.21981,-0.0849 -0.43989,-0.17013 -0.66024,-0.25559 0.0824,0.89911 0.16443,1.79793 0.24625,2.6965 1.15076,-0.26298 2.30119,-0.52621 3.45143,-0.78972 -0.0404,-0.39255 -0.0811,-0.78534 -0.12203,-1.17842 -0.4686,0.14506 -0.93742,0.28985 -1.40654,0.43439 0.42973,0.81289 0.85919,1.62549 1.28838,2.43783 0.89366,-0.20878 1.78702,-0.41782 2.68013,-0.62713 0.11794,-0.65799 0.23561,-1.31621 0.35302,-1.97472 -0.35004,0.1441 -0.70033,0.28792 -1.05089,0.43148 -0.0738,0.74925 -0.14785,1.49819 -0.22217,2.2469 0.92936,-0.0506 1.8584,-0.10146 2.78723,-0.15258 -0.31773,-0.79804 -0.63571,-1.5963 -0.95397,-2.39487 -0.32994,0.92168 -0.66011,1.84302 -0.99057,2.76417 1.14418,0.12686 2.28801,0.25344 3.43164,0.37976 -0.25091,-0.68793 -0.50207,-1.37608 -0.75351,-2.06453 -0.15824,0.45939 -0.31675,0.91849 -0.47553,1.37735 0.50355,0.37496 1.00682,0.74965 1.50984,1.12409 0.20091,-0.35493 0.40154,-0.71011 0.60192,-1.06557"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Camada 3"
transform="translate(-98.385804,-26.083636)">
<g
id="g1002"
style="fill:#181615;fill-opacity:1">
<path
style="fill:#181615;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 158.52867,162.56028 12.02418,0.8074 1.06003,43.46766 -12.92235,-0.6542 z"
id="path155"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#181615;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 170.55285,163.36768 27.36129,-8.75304 0.67219,35.23405 -26.97345,16.98665 -1.06003,-43.46766"
id="path157" />
<path
style="fill:#181615;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 158.52867,162.56028 28.45177,-8.85631 10.9337,0.91067 -27.36129,8.75304 z"
id="path997" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Camada 2"
transform="translate(-98.385804,-26.083636)">
<path
style="display:inline;fill:#ffb0bd;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 115.58206,31.457948 c 2.71396,-3.502463 10.10272,-5.067274 16.12437,-5.041497 6.70482,0.02871 12.56132,0.989518 16.61657,4.654049 4.21731,3.810971 5.80178,7.489911 3.68002,13.239136 -3.36771,9.125283 -11.20387,16.048514 -20.99396,15.837425 -8.16183,-0.175977 -15.25222,-6.861659 -17.47762,-15.791371 -1.15065,-4.617145 -0.41433,-9.716645 2.05062,-12.897742 z"
id="path1601"
sodipodi:nodetypes="sssssss" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 123.64094,136.05804 c 3.65079,-0.28643 11.85472,0.0962 17.41237,-0.48077"
id="path1629"
sodipodi:nodetypes="cc"
transform="translate(0,-85.333316)" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 120.42504,36.462917 c 0.0686,-1.637576 2.74437,-2.294248 4.38213,-2.230287 1.44531,0.05644 3.71319,0.817441 3.70192,2.263812 -0.0124,1.591314 -2.51995,2.44378 -4.11122,2.426885 -1.55758,-0.01654 -4.03801,-0.904105 -3.97283,-2.46041 z"
id="path1687"
sodipodi:nodetypes="sssss" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 135.59983,36.55025 c 0.007,-1.381079 2.41982,-2.171372 4.05784,-2.228247 1.52232,-0.05286 4.21863,0.767332 3.98242,2.281012 -0.24535,1.572334 -2.34764,2.353271 -4.06743,2.407645 -1.55689,0.04922 -3.98053,-0.90276 -3.97283,-2.46041 z"
id="path1687-1"
sodipodi:nodetypes="sssss" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 122.3842,35.012007 -1.40266,1.603264"
id="path1704" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 122.52329,35.62627 -0.94608,1.07334"
id="path1704-2"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 137.57254,35.098901 -1.40266,1.603264"
id="path1704-7" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 137.64697,35.784376 -0.88142,1.002128"
id="path1704-2-0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.710325;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 128.22163,36.347431 c 0,0 2.37812,-1.033382 3.81499,-1.04317 1.43069,-0.0097 3.73694,1.000596 3.73694,1.000596"
id="path1739"
sodipodi:nodetypes="csc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 192.0798,153.99246 -27.69713,8.97921 0.32431,43.44395"
id="path1005" />
<path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 181.26792,156.36069 c 0,0 0.54164,1.4159 -1.0775,2.16963 -1.72767,0.80425 -5.66674,0.18582 -5.66674,0.18582"
id="path1007"
sodipodi:nodetypes="csc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 21 KiB

BIN
error/403.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

View File

@ -1,351 +0,0 @@
<?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"
width="398.62943"
height="614.0448"
viewBox="0 0 105.47083 162.46602"
version="1.1"
id="svg8"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="worliodoor.svg"
inkscape:export-filename="/home/nick/Pictures/wb/worliodoor.png"
inkscape:export-xdpi="200.11099"
inkscape:export-ydpi="200.11099">
<defs
id="defs2">
<inkscape:path-effect
effect="bspline"
id="path-effect1055"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1044"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1040"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1036"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1025"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1021"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1002"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter996"
x="-0.015583063"
width="1.0311661"
y="-0.0097505692"
height="1.0195011">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.643979"
id="feGaussianBlur998" />
</filter>
<mask
maskUnits="userSpaceOnUse"
id="mask1130">
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 128.4363,66.778669 -2.7145,1.171488 0.16927,2.701488 4.08894,-1.604579 z"
id="path1132"
sodipodi:nodetypes="ccccc" />
</mask>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.5273506"
inkscape:cx="172.76499"
inkscape:cy="260.68263"
inkscape:document-units="mm"
inkscape:current-layer="layer5"
showgrid="false"
units="px"
inkscape:pagecheckerboard="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-width="1920"
inkscape:window-height="1019"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
fit-margin-top="-1"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata5">
<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 />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="Floor"
transform="translate(-50.768534,-32.916771)">
<path
style="fill:#c5fbdb;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 57.767013,195.16024 92.802137,-0.36459 2.9302,-7.59346 0.002,-9.77492 -18.98452,-3.52434 -36.826591,1.62058 -40.165162,13.8632 z"
id="path1145" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Background"
transform="translate(-50.768534,-32.916771)">
<path
style="mix-blend-mode:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter996)"
d="M 54.921856,36.800538 152.369,35.962388 c 1.788,10.76373 0.16196,144.209992 0.16196,144.209992 l -15.61117,7.21089 -22.06247,-1.36443 -40.863848,0.53824 -20.210343,2.27357 z"
id="path842"
transform="matrix(0.98366925,0,0,0.98039902,1.2321811,1.8897908)"
sodipodi:nodetypes="cccccccc" />
</g>
<g
inkscape:label="Camada 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-50.768534,-118.25009)">
<path
style="fill:#9a8270;fill-opacity:1;stroke:#9a8270;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 58.203557,125.52962 79.266023,7.37126 -0.71248,138.89464 -78.990087,8.69804 z"
id="path834" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Camada 2"
transform="translate(-50.768534,-32.916771)">
<path
style="fill:#a69f44;fill-opacity:1;stroke:none;stroke-width:0.236739px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 134.98058,119.21661 0.13318,2.61109 c 0,0 -4.10616,0.0788 -4.48132,-0.30729 -0.24311,-0.25017 -0.21611,-0.68814 -0.22114,-1.08152 -0.006,-0.4623 -0.0125,-0.8228 0.20094,-1.11929 0.29927,-0.41577 4.36834,-0.10299 4.36834,-0.10299 z"
id="path1027"
sodipodi:nodetypes="ccsssc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 97.733758,67.706715 c 0,0 -0.222592,-1.508355 0.165715,-2.311339 1.514293,-2.558882 3.704557,-3.78508 4.648337,-3.830953 1.26581,-0.06153 4.99162,3.270897 5.30142,4.238589 0.21281,0.664754 0.23229,1.497192 0.23229,1.497192"
id="path1031"
sodipodi:nodetypes="ccssc" />
<path
style="fill:#7a7a7a;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 102.56418,61.655459 0.50483,-0.117288 0.11787,0.211265 -0.56466,-0.03558 z"
id="path1046"
sodipodi:nodetypes="ccccc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Camada 3"
style="display:inline"
transform="translate(-50.768534,-32.916771)">
<path
style="fill:#cec543;fill-opacity:1;stroke:none;stroke-width:0.25721px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 137.82464,117.49468 c -1.29802,-1.67654 -3.78739,-1.76791 -4.9946,-0.19047 -1.20722,1.57743 -1.13202,4.82328 0.16628,6.49956 1.2983,1.67628 3.81933,1.7832 5.02629,0.20603 1.20696,-1.57717 1.10005,-4.83857 -0.19797,-6.51512 z"
id="path1000-3"
inkscape:path-effect="#path-effect1021"
inkscape:original-d="m 139.01573,115.9095 c -2.48912,-0.0911 -4.97849,-0.18248 -7.46812,-0.27411 0.0754,3.24625 0.15067,6.49209 0.22561,9.73772 2.52139,0.1072 5.04242,0.2141 7.56326,0.32077 -0.1067,-3.26126 -0.21357,-6.52266 -0.32075,-9.78438 z" />
<path
style="fill:#ecece0;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 86.108957,68.032888 30.664963,-1.878298 2.80551,22.072544 -32.422834,3.816967 z"
id="path1029" />
<path
style="fill:#919191;fill-opacity:1;stroke:none;stroke-width:0.238081px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 103.1306,61.400569 c -0.10263,-0.02025 -0.21107,0.0167 -0.25476,0.109074 -0.0437,0.09238 -0.0225,0.23986 0.0527,0.310944 0.0752,0.07108 0.20428,0.06604 0.29611,0.01246 0.0918,-0.05358 0.14671,-0.155785 0.12599,-0.245417 -0.0207,-0.08963 -0.11739,-0.166811 -0.22002,-0.187065 z"
id="path1038"
inkscape:path-effect="#path-effect1040"
inkscape:original-d="m 103.13626,61.343412 c -0.10818,0.03722 -0.21662,0.07417 -0.32532,0.110863 0.0213,0.147729 0.0425,0.295209 0.0635,0.442449 0.1293,-0.0048 0.25837,-0.0098 0.3872,-0.01513 0.0551,-0.101976 0.10995,-0.204196 0.16464,-0.306647 -0.0964,-0.07692 -0.19308,-0.154092 -0.29002,-0.231535 z"
sodipodi:nodetypes="sccccs" />
<path
style="fill:none;stroke:#000000;stroke-width:0.7;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 97.256228,76.542543 c 0,0 0.797314,-7.179431 1.558126,-7.09837 0.7057,0.07519 1.646116,6.718049 2.265316,6.780075 0.64272,0.06438 0.55055,-7.046308 0.55055,-7.046308"
id="path1051"
sodipodi:nodetypes="cssc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 108.01832,70.442943 c -1.1036,-1.055683 -2.96094,-0.94775 -3.76827,0.16042 -0.80734,1.108169 -0.56446,3.216184 0.53938,4.271566 1.10383,1.055382 3.06831,1.058382 3.87543,-0.04946 0.80712,-1.107844 0.45706,-3.326841 -0.64654,-4.382524 z"
id="path1053"
inkscape:path-effect="#path-effect1055"
inkscape:original-d="m 108.77182,69.27934 c -1.85708,0.108198 -3.71442,0.216133 -5.57203,0.323802 0.24315,2.108364 0.48603,4.216379 0.72865,6.324169 1.96482,0.0033 3.9293,0.0063 5.89355,0.009 -0.34979,-2.218723 -0.69985,-4.437719 -1.05017,-6.656971 z"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.7;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 95.727241,87.440989 c 0,0 -4.476892,1.307959 -5.132607,0.801703 -0.574357,-0.443442 -1.366642,-7.889628 -1.330272,-8.561623 0.04264,-0.787921 5.542793,-0.809458 5.542793,-0.809458"
id="path1057"
sodipodi:nodetypes="cssc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.7;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 89.73491,83.783113 3.98507,-0.519096"
id="path1059"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.7;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 97.330211,87.058496 c 0,0 -2.020265,-8.44506 -1.217554,-8.585512 0.353634,-0.06188 2.851385,8.204509 3.170507,8.089911 0.414005,-0.148671 -0.606644,-8.06277 -0.606644,-8.06277"
id="path1061"
sodipodi:nodetypes="cssc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.7;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100.62426,78.27501 3.95539,-0.282872"
id="path1063" />
<path
style="fill:none;stroke:#000000;stroke-width:0.7;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 102.43917,78.154577 0.83686,8.017298"
id="path1065"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.7;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 107.45682,85.673852 -1.48325,-7.92853 c 0,0 1.56583,-0.437364 2.36956,-0.447151 0.48958,-0.006 1.04559,-0.03948 1.44957,0.237146 0.45859,0.314025 0.91933,0.88594 0.84594,1.436872 -0.0878,0.659071 -0.85174,1.06008 -1.42668,1.394037 -0.763,0.443193 -2.40973,0.75787 -2.40973,0.75787 l 3.82904,3.957156"
id="path1069"
sodipodi:nodetypes="ccsssscc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.7;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 114.79045,84.447479 -0.94447,-4.752504 1.43366,-3.612528"
id="path1071" />
<path
style="fill:none;stroke:#000000;stroke-width:0.7;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 113.84598,79.694973 -2.54511,-3.014589"
id="path1073" />
</g>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="Worlio"
transform="translate(-50.768534,-32.916771)">
<path
style="fill:#ffb0bd;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 136.51153,59.142162 c -5.32932,0.146395 -11.0674,1.153248 -15.11932,4.260958 -3.89348,2.986179 -4.54863,6.015206 -4.08281,9.082039 0.44161,2.90734 1.98212,5.15496 6.82474,6.486842 4.6103,1.26798 7.97981,0.761996 17.78473,-1.913635 0,0 1.09683,29.738044 11.73709,34.811284 2.64629,1.26176 -0.34734,-40.802041 -0.34734,-40.802041 -3.87299,-11.60133 -9.81065,-12.117372 -16.79709,-11.925447 z"
id="path1101"
sodipodi:nodetypes="sssscscs" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 117.56753,74.158993 c 0,0 3.49413,-0.399116 5.23963,-0.286189 1.4652,0.09479 2.5636,0.397879 4.33061,0.804955"
id="path1136"
sodipodi:nodetypes="csc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 141.91887,77.058366 c 2.33629,-0.589643 2.3484,-0.683328 2.3484,-0.683328"
id="path1138"
sodipodi:nodetypes="cc" />
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 142.52273,84.706349 c 0.73804,1.160268 4.46957,0.924166 6.47804,0.814244 1.86168,-0.101889 5.67067,-4.229066 5.67067,-4.229066 l 0.25283,21.996613 c 0,0 -2.96992,-0.74078 -4.34561,-0.27785 -1.25686,0.42294 -2.93981,1.88957 -3.00908,2.60243 -0.15822,1.6282 -2.97649,-6.396684 -3.64765,-9.785196 -0.72359,-3.653219 -2.44834,-12.770507 -1.3992,-11.121175 z"
id="path1140"
sodipodi:nodetypes="ssccssss" />
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 153.07182,182.39017 c 0,0 1.30599,-3.04476 -2.08875,-3.07374 -6.8296,-0.0583 -8.67582,3.83574 -8.75753,6.0862 -0.11842,3.26141 3.30598,5.64218 7.89632,5.8347 3.95462,0.16586 3.37749,-4.03514 3.37749,-4.03514 z"
id="path1142"
sodipodi:nodetypes="cssscc" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 127.89759,65.830886 c 0.18085,0.108124 0.25872,0.159208 0.35853,0.270902 0.15762,0.176393 0.3209,0.455819 0.36168,0.610585 0.058,0.220195 0.0567,0.481515 -0.0112,0.71075 -0.0951,0.320954 -0.22473,0.459347 -0.36838,0.647419 -0.1587,0.207783 -0.45822,0.327393 -0.72444,0.399058 -0.28354,0.07633 -0.6095,0.100324 -0.88068,0.01976 -0.3259,-0.09682 -0.59746,-0.344106 -0.80149,-0.610992 -0.11982,-0.156739 -0.19249,-0.353392 -0.2228,-0.548342 -0.0325,-0.20898 -0.0178,-0.427048 0.0491,-0.632569 z"
id="path1104"
sodipodi:nodetypes="csssssssscc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Camada 4"
style="display:inline"
transform="translate(-50.768534,-32.916771)">
<path
style="fill:#885833;fill-opacity:1;stroke:#885833;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.868762,280.61441 6.898251,-0.12085 0.436544,-154.96394 91.754333,-0.43224 0.61126,155.03159 5.5699,0.43601 -0.47104,-162.47816 -104.439634,1.50048 z"
id="path830"
transform="translate(0,-85.333316)" />
<path
style="fill:#6b4527;fill-opacity:1;stroke:#6b4527;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 149.95789,39.764065 v 0 l -0.83747,0.165237 V 192.81838 l 1.44873,1.97727 z"
id="path836" />
<ellipse
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.244543;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1103-6"
cx="127.12492"
cy="67.035439"
rx="0.79531783"
ry="0.79176527" />
<path
style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 125.24893,66.815111 c 0,0 0.90548,-0.30247 1.49294,-0.535598 0.7083,-0.281079 1.36923,-0.686667 1.36923,-0.686667"
id="path1134"
sodipodi:nodetypes="csc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

BIN
error/404.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

View File

@ -1,284 +0,0 @@
<?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"
width="803.73767"
height="602.31854"
viewBox="0 0 212.65554 159.36345"
version="1.1"
id="svg8"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="worliobox.svg"
inkscape:export-filename="/home/nick/Pictures/wb/worliobox.png"
inkscape:export-xdpi="200.11066"
inkscape:export-ydpi="200.11066">
<defs
id="defs2">
<inkscape:path-effect
effect="bspline"
id="path-effect1490"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1478"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1069" />
</marker>
<inkscape:path-effect
effect="bspline"
id="path-effect1026"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1022"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<mask
maskUnits="userSpaceOnUse"
id="mask1480">
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.280763px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 86.145266,244.86867 c -1.386747,-0.34065 -1.110824,-0.51857 -1.108505,-0.67046 0.0023,-0.1519 -0.472558,-0.14663 -0.733507,1.13811 -0.26095,1.28475 -0.307681,3.84852 0.902854,5.19046 1.210535,1.34195 3.677909,1.46219 4.930029,0.18407 1.25212,-1.27811 1.289127,-3.95471 1.040011,-5.29089 -0.249117,-1.33618 -0.784597,-1.33148 -0.802445,-1.09853 -0.01785,0.23295 0.191747,0.42625 -1.330877,0.65666 -1.522624,0.23041 -1.510813,0.23123 -2.89756,-0.10942 z"
id="path1482"
inkscape:path-effect="#path-effect1478"
inkscape:original-d="m 84.075752,244.96828 c 0.682966,-0.43995 0.958889,-0.61787 1.437976,-0.92723 -0.474639,0.006 -0.949516,0.0113 -1.424684,0.0158 -0.04647,2.56422 -0.0932,5.12799 -0.1402,7.69162 2.467785,0.12054 4.935159,0.24078 7.402407,0.36073 0.03727,-2.67646 0.07428,-5.35306 0.111027,-8.03012 -0.535244,0.005 -1.070721,0.0101 -1.606492,0.0141 0.500047,0.46122 0.709655,0.65451 1.499317,1.38277 -3.834918,-0.26721 -3.823107,-0.26638 -7.279351,-0.50767 z"
sodipodi:nodetypes="ccccccccc" />
</mask>
<mask
maskUnits="userSpaceOnUse"
id="mask1484">
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.280763px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 86.145266,244.86867 c -1.386747,-0.34065 -1.110824,-0.51857 -1.108505,-0.67046 0.0023,-0.1519 -0.472558,-0.14663 -0.733507,1.13811 -0.26095,1.28475 -0.307681,3.84852 0.902854,5.19046 1.210535,1.34195 3.677909,1.46219 4.930029,0.18407 1.25212,-1.27811 1.289127,-3.95471 1.040011,-5.29089 -0.249117,-1.33618 -0.784597,-1.33148 -0.802445,-1.09853 -0.01785,0.23295 0.191747,0.42625 -1.330877,0.65666 -1.522624,0.23041 -1.510813,0.23123 -2.89756,-0.10942 z"
id="path1486"
inkscape:path-effect="#path-effect1478"
inkscape:original-d="m 84.075752,244.96828 c 0.682966,-0.43995 0.958889,-0.61787 1.437976,-0.92723 -0.474639,0.006 -0.949516,0.0113 -1.424684,0.0158 -0.04647,2.56422 -0.0932,5.12799 -0.1402,7.69162 2.467785,0.12054 4.935159,0.24078 7.402407,0.36073 0.03727,-2.67646 0.07428,-5.35306 0.111027,-8.03012 -0.535244,0.005 -1.070721,0.0101 -1.606492,0.0141 0.500047,0.46122 0.709655,0.65451 1.499317,1.38277 -3.834918,-0.26721 -3.823107,-0.26638 -7.279351,-0.50767 z"
sodipodi:nodetypes="ccccccccc" />
</mask>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.90509668"
inkscape:cx="280.25836"
inkscape:cy="352.65541"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:pagecheckerboard="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-width="1920"
inkscape:window-height="1019"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
showguides="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata5">
<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 />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Camada 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-9.4918042,-118.05101)"
style="display:inline">
<path
style="display:inline;fill:#ffb0bd;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 179.3471,240.06493 c 7.8596,-5.83825 15.00043,-12.18506 19.22544,-24.92107 4.9101,-14.8012 0.13905,-28.46917 -4.65543,-42.62575 -4.25672,-12.56873 -4.36598,-20.87338 -20.1489,-23.58516 -9.37965,-1.61159 -14.14321,6.20604 -30.66799,11.13536 -29.67621,8.85238 -61.399713,13.74757 -80.228283,9.19854 -14.65744,-3.54126 -31.03289,-12.63082 -37.16226,-21.00513 -3.14543,-4.29748 3.53057,-19.40582 5.23206,-20.00675 3.42703,-1.21035 0.62047,6.9109 11.61942,11.75103 7.67929,3.37929 18.04674,11.94844 21.17003,12.06495 5.02205,0.18733 23.09805,-2.01207 31.46297,-2.61844 21.042843,-1.52541 28.132463,-4.22905 37.371123,-8.28184 7.39809,-3.24538 25.43853,-10.4841 30.51307,-11.80199 17.40921,-4.52129 31.16174,-3.40641 43.38446,13.95667 15.025,21.34389 20.01203,54.51237 10.49549,86.81255 -5.49,18.63366 -19.00981,36.68424 -40.69118,43.39899 -11.20281,3.46952 -51.76441,4.44749 -73.34042,-3.02724 -16.085263,-5.57253 -30.467333,-15.96462 -18.310553,-26.40133 11.0467,-9.4837 32.033553,-3.31177 44.747943,12.55432 28.01615,-1.78575 37.48725,-7.4341 49.98301,-16.59771 z"
id="path1432"
sodipodi:nodetypes="cssssssssssssssssscc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 80.087287,253.33209 c 6.09053,0.35879 6.95046,2.58127 6.95046,2.58127"
id="path1494"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 129.36409,256.66264 c 0.5615,0.93267 2.31982,1.89316 2.31982,1.89316"
id="path1492"
sodipodi:nodetypes="cc" />
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 146.80595,254.06503 c -1.26377,0.92024 6.11927,21.72717 7.65804,22.51257 2.6856,1.37073 18.01316,-0.18229 25.78323,-3.09127 9.57934,-3.58634 25.79466,-15.99339 24.89491,-19.1657 -3.06987,-10.82362 -16.91231,-18.36183 -22.15061,-17.82487 -3.34488,0.34287 -12.39711,7.86628 -17.57978,10.77158 -4.31405,2.41838 -16.54395,5.29633 -18.60579,6.79769 z"
id="path1512"
sodipodi:nodetypes="sssssss" />
<path
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 92.667359,245.10833 c 0,0 -0.406276,0.58584 -0.492478,0.89076 -0.157169,0.55596 -0.119669,1.15565 0.01365,1.68789 0.13408,0.53525 0.424146,0.98182 0.827899,1.33789 0.567499,0.50047 1.247074,0.80055 1.995293,0.77652 0.780628,-0.0251 1.316845,-0.40088 1.599463,-0.63401 0.469886,-0.38761 0.727252,-0.78453 0.904221,-1.1603 0.235653,-0.50038 0.278716,-1.10417 0.193327,-1.62006 -0.103349,-0.62439 -0.328152,-0.95005 -0.433968,-1.11285 -0.0385,-0.0592 -0.09187,-0.191 -0.09187,-0.191 l -1.653577,0.31355 -1.291627,-0.0931 -1.515885,-0.3724 c 0,0 -0.0274,0.12158 -0.05445,0.17711 z"
id="path875"
sodipodi:nodetypes="sssssssssccccs" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Camada 2"
transform="translate(-9.4918042,-32.717691)">
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 44.656607,59.222795 c -9.72638,3.04589 -9.60294,7.295414 -6.59586,15.119995"
id="path1518"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 83.257117,65.120156 c 4.59802,2.588326 6.40786,17.070042 1.63516,20.411532"
id="path1520"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 129.25249,57.188361 c 1.68995,8.47989 2.43293,13.910964 7.36786,19.070362"
id="path1522"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 158.42573,45.370463 c 0.95682,9.705449 3.9457,16.534063 7.3655,19.14589"
id="path1524"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 207.09881,59.342733 c -11.10597,-2.613454 -19.04094,7.94777 -19.1485,12.257196"
id="path1526"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 221.21471,99.539055 c -12.03357,-2.449137 -15.72288,0.532995 -22.26105,5.815195"
id="path1528"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 216.23562,145.85665 c -2.81954,-6.19734 -9.08827,-9.10342 -21.0512,-7.99708"
id="path1530"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
d="m 63.448187,66.725143 c -0.36068,0.940745 -0.0669,1.81377 -0.0669,1.81377"
id="path1532"
sodipodi:nodetypes="cc" />
<g
id="g1503"
style="display:inline;fill:#b09571;fill-opacity:1;stroke-width:1.2;stroke-miterlimit:4;stroke-dasharray:none"
transform="translate(7.2456163,-85.119991)">
<path
style="fill:#b09571;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 56.184143,125.91215 -0.03842,65.43757 85.062327,-8.89142 -6.24526,-62.08664 z"
id="path1434" />
<path
style="fill:#b09571;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 56.145723,191.34972 -33.207568,-8.80466 1.204221,-59.73904 32.041767,3.10613 z"
id="path1436" />
<path
style="fill:#b09571;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 22.938155,182.54506 3.5047224,194.22296 39.392809,211.63504 56.145723,191.34972 Z"
id="path1438" />
<path
style="fill:#b09571;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 141.20805,182.4583 16.00173,10.19451 -41.56651,-5.42454 -3.50086,-1.76802 z"
id="path1440"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#b09571;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 24.142376,122.80602 77.375084,-4.36736 33.44533,1.933 -78.778647,5.54049 z"
id="path1442" />
</g>
<path
style="display:inline;fill:#ffb0bd;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 31.224817,41.015459 c 0,0 -3.82333,3.39811 -5.32154,5.9846 -2.27883,3.93414 -2.85604,8.44055 -2.70591,13.01042 0.5756,6.41784 3.05126,8.31869 7.496,10.53123 4.19572,2.08859 13.90269,5.0461 23.831,6.65111 3.4911,0.56437 10.79867,1.62629 16.16279,1.01966 5.73161,-0.64819 14.3284,-3.06993 15.25448,-6.78262 0.70073,-2.80929 0.21333,-6.23939 -2.44697,-8.43108 -1.24557,-1.02615 -9.66618,-3.01895 -13.59181,-3.08053 -7.03332,-0.11034 -17.49516,-1.92384 -23.23335,-3.56259 -5.29674,-1.51268 -12.35411,-5.8963 -14.49233,-9.11139 -1.14419,-1.72045 -0.95236,-6.22881 -0.95236,-6.22881 z"
id="path1550"
sodipodi:nodetypes="cscssssssssc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 37.247057,51.638789 c -8.48199,4.971791 -8.10932,13.176612 -4.85187,19.443866"
id="path1553"
sodipodi:nodetypes="cc" />
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.465;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 64.382897,58.983534 c 2.13441,2.130875 1.13122,8.195929 1.10561,11.209413 -0.0317,3.732048 -0.31629,7.137201 -2.12954,8.435826 -1.14413,0.819405 6.22013,0.619946 9.10874,0.174165 4.73712,-0.731051 11.42189,-2.828541 12.9345,-4.903227 1.58721,-2.177029 2.20273,-6.226199 0.6254,-9.053045 -2.24865,-4.029973 -7.44758,-4.398116 -10.69527,-4.784866 -3.03368,-0.361263 -11.75127,-1.878764 -10.94944,-1.078266 z"
id="path1555"
sodipodi:nodetypes="ssssssss" />
<path
style="fill:none;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
d="m 64.382897,58.983534 c 0,0 -0.0384,0.02605 -0.12052,0.659637"
id="path1557"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.465;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 63.337047,78.901731 c -0.33515,-0.105818 -0.28299,-0.654275 -0.28299,-0.654275"
id="path1559"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 92.721807,244.93122 c 1.44135,0.45754 2.27081,0.64551 4.46109,0.15194"
id="path1496"
sodipodi:nodetypes="cc"
transform="translate(-1.1666666e-7,-85.33332)" />
<path
style="display:inline;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 95.189258,245.48929 c 0,0 0.193394,0.26107 0.329566,0.71659 0.1426,0.47703 0.01241,0.86144 -0.201459,1.27032 -0.139089,0.26592 -0.351425,0.32543 -0.686281,0.50551 -0.182301,0.098 -0.919704,0.0524 -1.151715,-0.10845 -0.084,-0.0608 -0.297368,-0.23637 -0.433502,-0.43717 -0.144158,-0.21264 -0.408955,-0.6395 -0.223877,-1.26134 0.155549,-0.52263 0.597425,-0.88607 0.597425,-0.88607 l 0.888161,0.22987 z"
id="path873"
sodipodi:nodetypes="cssscssccc"
transform="translate(-1.1666666e-7,-85.33332)" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 17 KiB

View File

@ -1,488 +0,0 @@
<?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"
width="450.26691"
height="679.88403"
viewBox="0 0 119.13309 179.88598"
version="1.1"
id="svg8"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="worliojudge.svg"
inkscape:export-filename="/home/nick/Pictures/wb/worliojudge.png"
inkscape:export-xdpi="200.11066"
inkscape:export-ydpi="200.11066">
<defs
id="defs2">
<inkscape:path-effect
effect="bspline"
id="path-effect1088"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1086"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1084"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1050"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1038"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1015"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1005"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1001"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect997"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect993"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect989"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect985"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect981"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect977"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect973"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1490"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1478"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1069" />
</marker>
<inkscape:path-effect
effect="bspline"
id="path-effect1026"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1022"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<mask
maskUnits="userSpaceOnUse"
id="mask1480">
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.280763px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 86.145266,244.86867 c -1.386747,-0.34065 -1.110824,-0.51857 -1.108505,-0.67046 0.0023,-0.1519 -0.472558,-0.14663 -0.733507,1.13811 -0.26095,1.28475 -0.307681,3.84852 0.902854,5.19046 1.210535,1.34195 3.677909,1.46219 4.930029,0.18407 1.25212,-1.27811 1.289127,-3.95471 1.040011,-5.29089 -0.249117,-1.33618 -0.784597,-1.33148 -0.802445,-1.09853 -0.01785,0.23295 0.191747,0.42625 -1.330877,0.65666 -1.522624,0.23041 -1.510813,0.23123 -2.89756,-0.10942 z"
id="path1482"
inkscape:path-effect="#path-effect1478"
inkscape:original-d="m 84.075752,244.96828 c 0.682966,-0.43995 0.958889,-0.61787 1.437976,-0.92723 -0.474639,0.006 -0.949516,0.0113 -1.424684,0.0158 -0.04647,2.56422 -0.0932,5.12799 -0.1402,7.69162 2.467785,0.12054 4.935159,0.24078 7.402407,0.36073 0.03727,-2.67646 0.07428,-5.35306 0.111027,-8.03012 -0.535244,0.005 -1.070721,0.0101 -1.606492,0.0141 0.500047,0.46122 0.709655,0.65451 1.499317,1.38277 -3.834918,-0.26721 -3.823107,-0.26638 -7.279351,-0.50767 z"
sodipodi:nodetypes="ccccccccc" />
</mask>
<mask
maskUnits="userSpaceOnUse"
id="mask1484">
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.280763px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 86.145266,244.86867 c -1.386747,-0.34065 -1.110824,-0.51857 -1.108505,-0.67046 0.0023,-0.1519 -0.472558,-0.14663 -0.733507,1.13811 -0.26095,1.28475 -0.307681,3.84852 0.902854,5.19046 1.210535,1.34195 3.677909,1.46219 4.930029,0.18407 1.25212,-1.27811 1.289127,-3.95471 1.040011,-5.29089 -0.249117,-1.33618 -0.784597,-1.33148 -0.802445,-1.09853 -0.01785,0.23295 0.191747,0.42625 -1.330877,0.65666 -1.522624,0.23041 -1.510813,0.23123 -2.89756,-0.10942 z"
id="path1486"
inkscape:path-effect="#path-effect1478"
inkscape:original-d="m 84.075752,244.96828 c 0.682966,-0.43995 0.958889,-0.61787 1.437976,-0.92723 -0.474639,0.006 -0.949516,0.0113 -1.424684,0.0158 -0.04647,2.56422 -0.0932,5.12799 -0.1402,7.69162 2.467785,0.12054 4.935159,0.24078 7.402407,0.36073 0.03727,-2.67646 0.07428,-5.35306 0.111027,-8.03012 -0.535244,0.005 -1.070721,0.0101 -1.606492,0.0141 0.500047,0.46122 0.709655,0.65451 1.499317,1.38277 -3.834918,-0.26721 -3.823107,-0.26638 -7.279351,-0.50767 z"
sodipodi:nodetypes="ccccccccc" />
</mask>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1135">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 168.64604,119.95653 0.72347,2.53214 1.70532,3.87574 c 0,0 -4.36666,0.82682 -4.47001,0.77514 -0.10336,-0.0517 -4.59921,-5.19348 -4.59921,-5.19348 l 5.40019,-3.22978 z"
id="path1137" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1139">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 168.64604,119.95653 0.72347,2.53214 1.70532,3.87574 c 0,0 -4.36666,0.82682 -4.47001,0.77514 -0.10336,-0.0517 -4.59921,-5.19348 -4.59921,-5.19348 l 5.40019,-3.22978 z"
id="path1141" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.90509668"
inkscape:cx="23.707994"
inkscape:cy="427.796"
inkscape:document-units="mm"
inkscape:current-layer="layer5"
showgrid="false"
units="px"
inkscape:pagecheckerboard="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-width="1920"
inkscape:window-height="1019"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
showguides="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata5">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Camada 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-62.516932,-108.24581)"
style="display:inline">
<path
style="fill:none;stroke:#000000;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 134.56543,134.94269 c 0,0 -0.9212,-2.09515 -0.6801,-4.6277"
id="path1123"
sodipodi:nodetypes="cc" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Camada 5"
transform="translate(-62.516932,-22.912494)">
<path
style="display:inline;fill:#ffb0bd;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 110.99271,125.44556 c -5.44441,10.10509 -6.47263,21.52005 -7.12957,32.97966 -0.6006,10.47695 -0.8904,31.01164 -0.8904,31.01164 l 28.07869,0.90297 c 0,0 -3.41747,-29.81319 -0.10335,-44.7518 0.76749,-3.45948 3.61735,-10.64534 3.61735,-10.64534 11.16955,2.40055 23.02979,4.40566 28.47144,1.24543 4.98693,-2.89614 4.97966,-11.76537 -0.59274,-17.7408 -4.4608,-4.78343 -13.33272,-7.44602 -20.70981,-7.24977 -5.04158,0.13411 -14.66455,0.82484 -19.49915,3.56904 -5.89674,3.34709 -9.60537,7.64046 -11.24246,10.67897 z"
id="path1121"
sodipodi:nodetypes="ssccscsssss"
transform="translate(0,-85.333316)" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 165.76205,132.86184 c 0,0 -5.222,-0.45712 -11.00645,-1.72762"
id="path1131"
sodipodi:nodetypes="cc"
transform="translate(0,-85.333316)" />
<ellipse
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.264999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path1145"
cx="157.66479"
cy="119.95653"
rx="2.6871746"
ry="2.4804688"
transform="translate(0,-85.333316)" />
<ellipse
style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.441911;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path1147"
cx="157.62047"
cy="34.546452"
rx="1.2919109"
ry="1.2919108" />
<path
style="display:inline;fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 92.764076,186.10839 c -1.117504,-0.29752 -5.905177,3.98281 -8.009847,6.92464 -1.939359,2.71077 -4.589869,7.94302 -3.565674,9.14672 1.366693,1.60624 -9.162974,-3.92793 -12.815756,-7.28637 -1.910081,-1.75616 -3.885668,-3.50145 -4.650878,-6.04614 -0.645163,-2.14547 -1.482202,-4.47205 -0.206706,-6.66626 0.836314,-1.43869 2.041799,-2.6133 3.772379,-3.04891 3.276662,-0.82479 6.355039,-0.4633 9.818522,0.4651 5.370422,1.43955 16.845837,6.82747 15.65796,6.51122 z"
id="path1151"
sodipodi:nodetypes="sssssssss" />
<path
style="fill:#4c381d;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 149.89018,99.390855 2.63093,-2.33861 h 15.27404 l 1.75395,1.753957"
id="path1202" />
<path
style="display:inline;fill:#e34f44;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 103.65577,67.025043 c 0,0 -0.14246,-0.398684 0.20539,-0.88376 0.20086,-0.280089 0.57146,0.244337 1.01728,0.415907 1.20238,0.462728 1.66245,0.812406 2.65035,1.126838 1.54467,0.491642 3.19426,0.81296 4.76655,1.20745 1.56443,0.392518 3.17109,0.316175 4.77051,0.52447 0.78164,0.101795 2.36321,0.08486 2.36321,0.08486 l 0.31561,0.533692 -0.12654,0.301661 -6.95289,-0.217977 -5.04287,-1.599365 -3.31996,-1.07824 z"
id="path911"
sodipodi:nodetypes="csssssccccccc" />
<path
style="fill:#e34f44;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 130.17952,68.784258 c 0,0 0.16525,-0.786684 -0.19257,-0.58107 -0.51501,0.295941 -1.12992,0.516537 -1.58153,0.639272 -0.60206,0.163629 -1.55021,0.2616 -1.55021,0.2616 l -0.11619,0.576175 -0.0787,0.266563 0.93483,-0.145767 1.42878,-0.311621 0.92216,-0.381735 z"
id="path919"
sodipodi:nodetypes="cssccccccc" />
</g>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="Camada 7"
transform="translate(-57.572425)">
<path
style="display:inline;fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 103.72423,152.14258 c 0.21516,1.00284 7.60505,3.31747 11.65303,3.43648 4.97817,0.14636 14.08296,0.23243 14.70195,-1.36943 0.49022,-1.26863 -0.14384,9.68509 0.0775,14.62443 0.32403,7.2304 1.44693,21.88497 1.44693,21.88497 l -30.33558,0.86444 c 0,0 0.16465,-14.71046 0.38314,-20.49413 0.796,-3.37167 1.70634,-20.65584 2.07303,-18.94676 z"
id="path1149"
sodipodi:nodetypes="sssscccs"
transform="translate(-4.9445069,-108.24581)" />
</g>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="Camada 6"
transform="translate(-57.572425)">
<path
style="fill:#e34f44;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 114.49851,46.318632 c -0.37087,0.654797 2.32025,2.633684 2.78856,3.127942 0.34242,0.361393 -0.0315,24.107075 -0.0315,24.107075 l 2.1407,2.044834 1.68654,-2.294737 c 0,0 -1.2659,-23.286677 -0.97292,-23.90207 0.37845,-0.794928 2.05784,-2.831064 1.77858,-3.268868 -0.108,-0.169323 -7.30615,0.03785 -7.38996,0.185824 z"
id="path890"
sodipodi:nodetypes="sscccsss" />
<path
style="fill:#765933;fill-opacity:1;stroke:#000000;stroke-width:0.186763px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 104.44959,89.603192 c 0,0 11.43039,-1.011 15.90724,0.364048 0.79254,0.243426 1.28994,0.776508 1.72695,1.421526 0.52523,0.77521 0.8949,1.98291 0.88268,2.808376 -0.0181,1.225434 0.19825,2.793017 -0.24945,3.900522 -0.37938,0.93851 -1.86128,1.889588 -1.86128,1.889588 l -16.46371,0.277368"
id="path1197"
sodipodi:nodetypes="csssscc"
transform="translate(-4.9445069,-22.912494)" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Camada 3"
transform="translate(-62.516932,-22.912494)">
<path
style="fill:#765933;fill-opacity:1;stroke:#000000;stroke-width:0.445857px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 108.53291,97.853431 c -1.04313,-1.864557 -0.80881,-2.999788 -0.80881,-2.999788 l -17.101336,7.828017 c -0.70844,1.20405 -0.420595,1.10752 -0.231658,2.27815 0.194046,1.20231 0.245997,2.09145 1.259064,1.57077 z"
id="path1195"
sodipodi:nodetypes="cccssc"
inkscape:transform-center-x="-0.75734139"
inkscape:transform-center-y="-0.27855906" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Camada 4"
transform="translate(-62.516932,-22.912494)">
<g
id="g1191"
transform="translate(-6.4315189,2.3403305)">
<path
style="display:inline;fill:#e7e7e7;fill-opacity:1;stroke:#000000;stroke-width:0.81401;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 135.2346,21.88665 c 1.84737,-1.0873 7.6448,-0.950282 11.84484,-0.821536 4.72253,0.144803 10.26197,0.591604 12.3538,1.426913 4.55341,1.818264 -0.39557,1.716332 -1.8045,3.372681 -2.3389,2.749636 -3.91741,6.115134 -4.67315,9.555962 -0.68223,3.106149 0.21271,6.348048 0,9.512724 -0.21635,3.21873 -0.26377,8.944088 -1.29553,9.599189 -1.61352,1.024488 -7.89591,-0.47107 -11.84483,-0.691832 -4.31776,-0.241386 -10.6459,-0.110877 -12.95529,-0.691831 -1.43775,-0.361684 -3.25822,-1.29805 -3.42389,-2.680861 -0.19836,-1.655864 1.76663,-3.038143 3.23882,-3.978047 0.55627,-0.35514 1.94329,-0.518877 1.94329,-0.518877 0,0 1.46165,-5.712542 1.94329,-8.129048 0.31894,-1.600153 1.35107,-7.538663 2.49852,-11.501741 0.61046,-2.108427 1.05248,-3.793235 2.17463,-4.453696 z"
id="path1153"
sodipodi:nodetypes="ssssssssssscsss" />
<path
style="display:inline;fill:none;stroke:#000000;stroke-width:0.691602;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 128.61816,45.971112 21.14857,1.371013"
id="path1155"
sodipodi:nodetypes="cc" />
<path
style="fill:#e7e7e7;fill-opacity:1;stroke:#000000;stroke-width:0.81401;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 152.1604,52.837545 c 0.78054,-1.818035 0.71861,-4.411459 0.88336,-6.634781 0.20799,-2.806478 0.15379,-6.141442 0.13088,-8.43871 -0.0265,-2.662722 0.59317,-5.078424 1.79942,-7.490883 0.80939,-1.61877 2.13859,-4.146934 3.4353,-4.708557 0.90047,-0.390009 1.71787,-0.308801 2.68279,-0.09173 0.95801,0.215518 2.61736,1.284152 2.61736,1.284152 0,0 -0.42559,-1.151285 -0.78521,-1.651052 -0.43901,-0.610097 -0.94193,-1.24349 -1.63585,-1.589903 -0.71325,-0.356063 -1.70815,-0.490311 -2.38834,-0.397479 -0.85312,0.116427 -1.31012,0.765063 -1.99574,1.253578 -1.38787,0.988875 -2.10108,2.622154 -2.91182,4.066479 -0.93699,1.669261 -1.70674,3.437135 -2.22476,5.258907 -0.37351,1.313581 -0.55692,2.678083 -0.62162,4.035904 -0.14375,3.018153 0.55007,6.029172 0.52348,9.05021 -0.0153,1.736838 0.0736,4.283813 -0.39261,5.197757 -0.26874,0.526897 -1.48247,1.403317 -2.09389,1.284151 -0.6044,-0.1178 -1.55399,-1.262277 -1.76672,-1.803927 -0.26337,-0.670622 0.35422,-1.68871 0.85064,-2.231976 0.36172,-0.395893 1.07599,-0.851289 1.57043,-0.611502 0.55412,0.268734 0.27422,1.006478 -0.35989,1.223006 -0.46038,0.157204 -0.91251,0.276553 -0.88336,0.733802 0.0133,0.209735 -0.0382,0.927195 0.22902,1.070124 0.36277,0.194046 0.99732,0.221798 1.34139,0 0.53019,-0.341771 0.76958,-1.329098 0.85064,-1.926226 0.0975,-0.718497 0.23097,-1.546753 -0.29445,-2.079103 -0.22733,-0.230318 -0.61885,-0.30142 -0.95412,-0.29766 -1.18057,0.01324 -1.92017,0.252056 -2.64476,1.123186 -0.48416,0.582089 -1.09873,1.556084 -1.07965,2.293129 0.0219,0.844371 0.19014,1.754215 0.75248,2.415427 0.67037,0.788227 1.68633,1.711302 2.61737,1.681627 0.99256,-0.03163 2.31441,-1.007502 2.74823,-2.01795 z"
id="path1180"
sodipodi:nodetypes="sssssssssssssssscsssssssssssssss" />
</g>
<ellipse
style="fill:#765933;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.364714;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1193"
cx="104.80707"
cy="95.146225"
rx="5.1288185"
ry="5.4671397" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Camada 2"
transform="translate(-62.516932,-22.912494)">
<g
id="g1115"
style="display:inline"
transform="translate(0,-85.333316)">
<path
style="fill:#8a7244;fill-opacity:1;stroke:#000000;stroke-width:1.32292;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 180.94982,192.9093 -10.09921,17.49234 H 80.681988 L 64.491891,192.9713 Z"
id="path965"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#8a7244;fill-opacity:1;stroke:#000000;stroke-width:1.32292;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 64.49189,192.9713 v -8.41923 h 116.4967 l -0.0388,8.35723 z"
id="path967"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#8a7244;fill-opacity:1;stroke:#000000;stroke-width:1.32292;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 76.142827,196.70954 h 95.634193 v 90.36857 H 76.093545 Z"
id="path969"
sodipodi:nodetypes="ccccc" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 23 KiB

BIN
error/500.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

View File

@ -1,341 +0,0 @@
<?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"
width="766.90509"
height="371.59338"
viewBox="0 0 202.91025 98.317418"
version="1.1"
id="svg8"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="worliohurt.svg"
inkscape:export-filename="/home/nick/Pictures/wb/worliopolice.png"
inkscape:export-xdpi="200.11066"
inkscape:export-ydpi="200.11066">
<defs
id="defs2">
<inkscape:path-effect
effect="bspline"
id="path-effect1769"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1765"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1490"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1478"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1069" />
</marker>
<inkscape:path-effect
effect="bspline"
id="path-effect1026"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<inkscape:path-effect
effect="bspline"
id="path-effect1022"
is_visible="true"
lpeversion="1"
weight="33.333333"
steps="2"
helper_size="0"
apply_no_weight="true"
apply_with_weight="true"
only_selected="false" />
<mask
maskUnits="userSpaceOnUse"
id="mask1480">
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.280763px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 86.145266,244.86867 c -1.386747,-0.34065 -1.110824,-0.51857 -1.108505,-0.67046 0.0023,-0.1519 -0.472558,-0.14663 -0.733507,1.13811 -0.26095,1.28475 -0.307681,3.84852 0.902854,5.19046 1.210535,1.34195 3.677909,1.46219 4.930029,0.18407 1.25212,-1.27811 1.289127,-3.95471 1.040011,-5.29089 -0.249117,-1.33618 -0.784597,-1.33148 -0.802445,-1.09853 -0.01785,0.23295 0.191747,0.42625 -1.330877,0.65666 -1.522624,0.23041 -1.510813,0.23123 -2.89756,-0.10942 z"
id="path1482"
inkscape:path-effect="#path-effect1478"
inkscape:original-d="m 84.075752,244.96828 c 0.682966,-0.43995 0.958889,-0.61787 1.437976,-0.92723 -0.474639,0.006 -0.949516,0.0113 -1.424684,0.0158 -0.04647,2.56422 -0.0932,5.12799 -0.1402,7.69162 2.467785,0.12054 4.935159,0.24078 7.402407,0.36073 0.03727,-2.67646 0.07428,-5.35306 0.111027,-8.03012 -0.535244,0.005 -1.070721,0.0101 -1.606492,0.0141 0.500047,0.46122 0.709655,0.65451 1.499317,1.38277 -3.834918,-0.26721 -3.823107,-0.26638 -7.279351,-0.50767 z"
sodipodi:nodetypes="ccccccccc" />
</mask>
<mask
maskUnits="userSpaceOnUse"
id="mask1484">
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.280763px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 86.145266,244.86867 c -1.386747,-0.34065 -1.110824,-0.51857 -1.108505,-0.67046 0.0023,-0.1519 -0.472558,-0.14663 -0.733507,1.13811 -0.26095,1.28475 -0.307681,3.84852 0.902854,5.19046 1.210535,1.34195 3.677909,1.46219 4.930029,0.18407 1.25212,-1.27811 1.289127,-3.95471 1.040011,-5.29089 -0.249117,-1.33618 -0.784597,-1.33148 -0.802445,-1.09853 -0.01785,0.23295 0.191747,0.42625 -1.330877,0.65666 -1.522624,0.23041 -1.510813,0.23123 -2.89756,-0.10942 z"
id="path1486"
inkscape:path-effect="#path-effect1478"
inkscape:original-d="m 84.075752,244.96828 c 0.682966,-0.43995 0.958889,-0.61787 1.437976,-0.92723 -0.474639,0.006 -0.949516,0.0113 -1.424684,0.0158 -0.04647,2.56422 -0.0932,5.12799 -0.1402,7.69162 2.467785,0.12054 4.935159,0.24078 7.402407,0.36073 0.03727,-2.67646 0.07428,-5.35306 0.111027,-8.03012 -0.535244,0.005 -1.070721,0.0101 -1.606492,0.0141 0.500047,0.46122 0.709655,0.65451 1.499317,1.38277 -3.834918,-0.26721 -3.823107,-0.26638 -7.279351,-0.50767 z"
sodipodi:nodetypes="ccccccccc" />
</mask>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.50954463"
inkscape:cx="462.06036"
inkscape:cy="-0.84770864"
inkscape:document-units="mm"
inkscape:current-layer="layer4"
showgrid="false"
units="px"
inkscape:pagecheckerboard="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-width="1920"
inkscape:window-height="1019"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
showguides="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata5">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="Camada 3"
transform="translate(-2.4805923,-108.06491)">
<path
style="fill:#ffb0bd;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 111.70362,134.81993 -12.583839,3.72943 c 0,0 -1.218447,8.57103 -3.019835,12.43883 -4.309178,9.25234 -13.669375,12.89572 -15.632667,22.91172 -1.425214,7.27092 -2.15149,17.35617 2.927675,23.32176 6.157351,7.23194 17.870686,7.33363 27.344476,8.01283 16.66941,1.19507 42.80087,2.14578 54.66618,-5.30964 7.93783,-4.98763 3.04826,-14.6426 8.56286,-19.5539 3.25205,-2.89627 7.22127,-3.11818 11.64146,-4.26213 5.16004,-1.33543 15.13003,1.24207 18.16673,-3.13832 2.62152,-3.78151 -1.871,-4.0014 -7.19732,-6.47406 -2.74789,-1.27567 -10.33629,-1.13276 -14.76866,-0.93927 -7.05817,0.30811 -15.06763,2.15091 -21.02611,7.79108 -3.5289,3.34037 0.40691,8.08182 -3.00322,11.54335 -5.41934,5.50103 -13.85963,7.3231 -21.94448,7.42395 -11.14481,0.13901 -23.3381,-2.41145 -28.46432,-11.67166 -2.34824,-4.24196 -1.28583,-10.2983 1.66873,-13.38917 3.57225,-3.73705 14.58473,-11.46697 17.5509,-19.76309 2.22771,-6.23071 -1.01875,-12.44098 -1.01875,-12.44098 z"
id="path2005"
sodipodi:nodetypes="ccsssssssssssssssscc" />
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 184.69078,165.024 c 1.06362,1.0373 3.26789,3.17151 3.53856,5.29191 0.27379,2.14481 -0.87585,5.31098 -2.1072,6.13484 -0.72643,0.48603 6.80941,-0.26685 10.17287,-0.24817 2.52685,0.014 5.31264,0.11444 7.35844,-1.78427 1.86466,-1.73059 2.13787,-4.34484 -0.81348,-6.58374 -3.15241,-1.43035 -5.87343,-2.52858 -8.01983,-2.80904 -5.75853,-0.70498 -11.00693,-0.85739 -10.12936,-0.002 z"
id="path2016"
sodipodi:nodetypes="sssssccs" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 130.3576,191.96497 c 1.43713,3.70844 2.65856,9.54442 -2.62356,14.07734"
id="path2022"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 144.94374,191.4417 c 7.60286,2.48386 10.09036,6.27098 7.63306,12.97276"
id="path2024"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 159.26454,177.86417 c 5.95492,-2.51759 10.43672,5.98971 10.85576,13.84594"
id="path2026"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 171.1601,167.35395 c 6.99426,1.39288 7.68611,6.52415 5.87146,10.87571"
id="path2028"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 79.810005,179.124 c 9.925588,6.6581 21.198675,3.25605 26.195505,-2.62364"
id="path2030"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 109.6387,184.18657 c -3.5286,8.08361 -15.349145,14.2746 -26.036048,12.96558"
id="path2032"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 118.65247,190.02174 c 1.74539,7.24534 -1.08798,12.38445 -10.39759,14.92989"
id="path2034"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 184.61993,164.74459 c 0,0 -0.35742,0.10213 -0.34143,0.69557"
id="path2036"
sodipodi:nodetypes="cc" />
<path
style="fill:#ba5e53;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 106.97287,119.13244 4.65287,1.20412 4.13384,-1.62163 c 0,0 -1.11913,-0.77003 -1.28364,-2.29507 -0.16035,-1.48642 -0.39492,-3.14837 -0.67863,-4.41394 -0.42893,-1.91334 -0.0836,-3.08676 -1.51513,-3.61192 -0.98465,-0.13442 -2.05766,-0.0901 -3.02648,0.0807 -1.05249,0.16021 -1.66968,0.82809 -1.8727,1.93303 -0.38873,2.10621 0.40512,4.50836 0.37983,6.62739 -0.0117,0.97947 -0.78996,2.09728 -0.78996,2.09728 z"
id="path2038"
sodipodi:nodetypes="cccsscccsc" />
</g>
<g
inkscape:label="Camada 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-2.4805923,-193.39823)"
style="display:inline" />
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Camada 2"
transform="translate(-2.4805923,-108.06491)">
<path
style="fill:#ffb0bd;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 101.21982,120.26931 c 5.13698,-3.58424 13.84373,-4.45125 19.89717,-1.35149 4.11272,2.10599 8.12407,6.99367 8.31374,12.09763 0.19496,5.2467 -3.60286,10.52409 -7.59353,13.20408 -5.42005,3.63992 -13.17748,4.75785 -18.85129,1.65241 -4.050085,-2.21672 -7.180583,-6.81691 -7.537299,-12.66996 -0.354467,-5.81614 2.618755,-10.68637 5.771209,-12.93267 z"
id="path1972"
sodipodi:nodetypes="caaaasc" />
<path
style="fill:#c41c38;fill-opacity:1;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 103.57339,138.03732 c 1.73768,0.50804 16.13473,-1.99569 16.13473,-1.99569 0,0 0.66823,2.66969 0.24706,3.90359 -0.2452,0.71836 -0.83873,1.34372 -1.50336,1.71037 -1.15675,0.63813 -1.71094,-0.12834 -2.6697,-1.03722 -1.35316,-1.28275 -0.71055,-3.77794 -0.71055,-3.77794 0,0 -8.58899,1.69714 -11.49818,1.19689 z"
id="path2001"
sodipodi:nodetypes="ccssscc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
d="m 117.6462,139.12465 -0.21745,-2.80276"
id="path2003" />
<ellipse
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="path1048-5-5"
cx="120.36648"
cy="127.33302"
rx="2.8627608"
ry="2.9166341" />
<ellipse
style="display:inline;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.339273;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="path1050-6-6"
cx="120.99659"
cy="128.10626"
rx="1.3533955"
ry="1.4496796" />
<ellipse
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="path1048-2-2"
cx="102.4771"
cy="127.07406"
rx="2.8627608"
ry="2.9166341" />
<ellipse
style="display:inline;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.339273;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="path1050-9-9"
cx="101.8131"
cy="126.56033"
rx="1.3533955"
ry="1.4496796" />
<path
style="fill:#cbd9f0;fill-opacity:1;stroke:#000000;stroke-width:0.665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 97.057329,148.25861 c 0.191662,1.23204 5.340881,2.39339 8.171171,3.06635 5.81756,1.38325 17.22488,2.1941 17.83498,1.93138 2.28595,-0.98434 -3.94953,6.10512 -6.48379,8.51857 -3.29601,3.1389 -8.86532,10.87635 -9.53652,9.44898 -0.87182,-1.854 -6.10701,-3.53547 -10.194002,-4.06 -4.631594,-0.59443 -11.420395,-0.31991 -13.978096,0.92626 -2.619865,1.27645 7.354848,-10.72544 9.826659,-14.15694 2.298027,-3.19025 4.109921,-7.27957 4.359598,-5.6746 z"
id="path2014"
sodipodi:nodetypes="sssssssss" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Camada 4"
transform="translate(-2.4805923,-108.06491)">
<path
style="fill:#999999;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8.0696918,205.59511 75.0387682,-1.3701 -11.034167,-9.27301 4.15199,-13.46955 -14.228397,-7.04789 -11.348019,-6.66028 -35.953963,7.61072 -0.575112,4.85591 2.206356,12.16516 -4.561558,2.27561 -8.7850262,5.79581 z"
id="path1950" />
<path
style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 28.728368,172.54025 1.077176,2.63752"
id="path1952"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.327148,192.40607 5.011173,-9.66738"
id="path1954"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 40.013265,191.80402 7.262873,-2.23909 2.98059,0.92742"
id="path1956" />
<path
style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 76.226283,181.48245 -8.663107,3.43986"
id="path1958" />
<path
style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 61.997886,174.43456 -1.140592,5.45818"
id="path1960"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.649867,167.77428 -3.976799,4.26418"
id="path1962"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 83.108458,204.22501 62.903393,197.85654"
id="path1964" />
<path
style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 72.074293,194.952 -9.1709,2.90454"
id="path1966" />
<path
style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8.0696918,205.59511 3.3407722,-7.03568"
id="path1968"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#808080;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 49.635528,204.81132 7.511758,-7.01605"
id="path1970"
sodipodi:nodetypes="cc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

337
style.css
View File

@ -1,13 +1,3 @@
/*
* | | |
* | | | {}
* | | ___ .__ | ___ __ ___ . .
* | /\ | / \ | \ | || / \ / \ / \ |\ /|
* | / \ | || || | | || || || || || || | \/ |
* |/ \| \___/ | | || \___/ () \__/ \___/ | |
* GLOBAL SITE STYLESHEET
* 07/20/2022
*/
@import url('//assets.worlio.com/style/css/theme.css');
.pixel, nav, nav.top, .button, .centerdiv, .heading {
@ -31,7 +21,7 @@ nav.top::-webkit-scrollbar {
body.home .home-container {}
body.home .home-container img.logo { max-height: 256px; max-width: 100%; }
body.home .home-container .slogan {
font-family: var(--spfont1);
font-family: var(--primary-font);
font-weight: bold;
font-size: 24px;
text-align: center;
@ -60,7 +50,7 @@ body.home .home-container .blog-contents {
}
body.home .home-container .blog-contents .title {
border-bottom: 1px solid black;
font-family: var(--spfont1);
font-family: var(--primary-font);
font-weight: bold;
font-size: 16px;
padding: 2px;
@ -75,9 +65,9 @@ body.home .home-container .blog-contents .blog-item i { text-align: right; }
nav.top {
display: flex;
background-image: var(--navbar-top, url('//assets.worlio.com/style/navbar-top'));
background-image: var(--navbar-top);
background-position: 0px 100%;
background-color: var(--acc-nav, #f3dca9);
background-color: var(--acc-nav);
background-repeat: repeat-x;
background-size: auto 64px;
position: fixed;
@ -87,11 +77,16 @@ nav.top {
white-space: nowrap;
}
nav.top .navbutton-bar {
padding-left: 4px;
overflow-x: scroll;
}
nav.top div.slideout {
position: relative;
height: 32px;
z-index: 3;
margin: 2px 4px;
margin: 2px;
transition-duration: 0.05s;
flex-shrink: 0;
}
@ -104,35 +99,17 @@ nav.top div.slideout.active {
width: 264px;
}
nav.top div.slideout .upbutton {
width: 32px;
height: 16px;
margin: 0 auto;
background: var(--navbar-bg), rgb(196, 187, 166);
border: 1px outset black;
display: none;
opacity: 0;
transition-duration: 0.05s;
}
nav.top div.slideout.active .upbutton {
display: block;
opacity: 1;
}
nav.top div.slideout .upbutton img { margin: 4px 8px; }
nav.top div.slideout.account .dropdown { margin: -2px -4px; }
nav.top div.slideout .dropdown {
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
background: var(--navbar-bg), linear-gradient(0deg, rgba(162,147,112,1) 0%, rgba(243,220,169,1) 8px);
background-position: 0 0, 0px 100%;
background-color: var(--acc-nav, #f3dca9);
background-color: var(--acc-nav);
background-repeat: repeat, repeat-x;
background-size: auto auto, auto 64px;
border-right: var(--acc-nav-separator, 2px solid #000000);
border-bottom: var(--acc-nav-separator, 2px solid #000000);
border: var(--acc-nav-separator);
border-top: none;
overflow: hidden;
width: 100%;
height: 32px;
@ -142,18 +119,40 @@ nav.top div.slideout .dropdown {
white-space: nowrap;
transition-duration: 0.05s;
}
nav.top div.slideout.account .dropdown {
margin: -2px -4px;
}
nav.top div.slideout:not(.active):hover .dropdown {
background: var(--navbar-bg), linear-gradient(0deg, rgba(243,220,169,1) 0%, rgba(210,190,143,1) 8px);
}
nav.top div.slideout.account.active .dropdown { height: 112px; }
nav.top div.slideout .dropdown .clicker {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
nav.top div.slideout.account .upane {
display: flex;
}
nav.top div.slideout.account .upane .avatar {
flex-shrink: 0;
background: var(--menu-bg);
border: var(--menu-border);
}
nav.top div.slideout.account .upane .ninfo {
flex-grow: 1;
}
nav.top div.slideout.account.active .dropdown { height: 212px; }
nav.top.guest div.slideout.account.active .dropdown { height: 112px; }
nav.top div.slideout.mail.active .dropdown,
nav.top div.slideout.alerts.active .dropdown { height: 352px; }
nav.top div.slideout .dropdown .right {
pointer-events: none;
display: none;
@ -185,7 +184,7 @@ nav.top div.slideout.mail .dropdown .mail {
nav.top div.slideout.alerts .dropdown .alerts .alert,
nav.top div.slideout.mail .dropdown .mail .message {
margin: 4px;
font-family: var(--spfont1);
font-family: var(--primary-font);
background-color: var(--menu-bg);
border: var(--menu-border);
padding: 4px;
@ -231,38 +230,25 @@ nav.top div.slideout.mail .counter.new,nav.top div.slideout.alerts .counter.new
nav.top div.slideout.account .username {
display: block;
width: 132px;
height: 38px;
margin: -1px;
}
nav.top div.slideout .dropdown .username .counters {
display: flex;
nav.top div.slideout.account .dropdown .mycon {
margin-right: 4px;
}
nav.top div.slideout .dropdown .username .counter {
flex-grow: 1;
nav.top div.slideout.account .dropdown .username .currency {
height: 16px;
}
nav.top div.slideout .dropdown .username .counter a {
color: var(--inactive, #6e6e6e);
vertical-align: top;
font-size: 14px;
}
nav.top div.slideout .dropdown .username .counter img {
nav.top div.slideout.account .dropdown .username .currency img {
height: 100%;
margin: 0px 1px;
padding: 0px 2px;
vertical-align: center;
}
nav.top div.slideout .dropdown .username .counter.alert a {
color: var(--alert, #ce0000);
}
nav.top div.slideout .dropdown .username .counter.currency a {
color: var(--currency, #89541A);
nav.top div.slideout.account .dropdown .username .currency a {
color: var(--currency);
}
nav.top div.slideout .dropdown .username .userlink {
@ -302,7 +288,7 @@ nav.top p {
}
nav.top.alert {
background-color: var(--dialog-bg, #fbebcc);
background-color: var(--dialog-bg);
height: unset;
min-height: 28px;
max-height: 64px;
@ -328,7 +314,7 @@ nav.top.alert p {
}
nav {
background-color: var(--main-nav, dodgerblue);
background-color: var(--main-nav);
position: fixed;
top: 0px;
left: 0px;
@ -348,7 +334,7 @@ nav .logo {
}
.button, nav {
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
}
.button {
@ -415,7 +401,7 @@ nav .logo {
.longbutton.txt a {
display: inline-block !important;
width: 100%; height: 100%;
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
text-decoration: none;
text-align: center;
color: var(--main-text, #000000);
@ -428,7 +414,7 @@ nav .logo {
}
.longbutton > a, .smallbutton > a {
color: var(--main-text, #000000);
color: var(--main-text);
text-decoration: none;
display: flex !important;
align-items: center;
@ -464,12 +450,12 @@ body {
.header > .gap { flex-grow: 1;}
.header > .title {
border: var(--menu-border, 1px solid #bdbdbd);
border: var(--menu-border);
border-top: none;
flex-shrink: 0; flex-grow: 0;
background-color: var(--menu-bg, #d0d0d0);
background-color: var(--menu-bg);
padding: 8px;
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
font-weight: bold;
margin: -8px 4px 8px 4px;
}
@ -511,7 +497,7 @@ body {
nav {
width: 60px;
padding: 0px 2px;
background-image: var(--navbar-left, url('//assets.worlio.com/style/navbar-left'));
background-image: var(--navbar-left);
background-repeat: repeat-y;
background-size: 100%;
height: 100%;
@ -564,7 +550,7 @@ body {
}
.popbutton > a {
color: var(--main-text, #000000);
color: var(--main-text);
text-decoration: none;
display: flex;
align-items: center;
@ -628,7 +614,7 @@ body {
}
nav {
background-image: var(--navbar-top, url('//assets.worlio.com/style/navbar-top'));
background-image: var(--navbar-top);
background-repeat: repeat-x;
background-size: 64px;
width: 100%;
@ -642,8 +628,8 @@ body {
}
nav.top {
overflow-y: unset;
overflow-x: unset;
overflow-y: unset;
}
nav hr {
@ -728,11 +714,15 @@ body {
.forum .thread .post .bottombar .buttons {
flex-direction: row;
}
nav.top div.slideout.account { width: 32px; }
nav.top div.slideout.account:not(.active) .dropdown .username *:not(.mycon) { display: none; }
nav.top div.slideout.account:not(.active) .dropdown .username .mycon { margin: 2px; }
}
body {
background-color: var(--main-background, #d3d3d3);
background-image: var(--background-image, url('//assets.worlio.com/style/background'));
background-color: var(--main-background);
background-image: var(--background-image);
color: var(--main-text, #000000);
}
@ -776,7 +766,7 @@ table {
overflow-x: auto;
white-space: nowrap;
border: none;
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
}
.heading.main {
@ -786,8 +776,8 @@ table {
}
.heading {
background-color: var(--header-bg, #ffffff);;
background-image: var(--navbar-top, url('//assets.worlio.com/style/navbar-top'));
background-color: var(--header-bg);
background-image: var(--navbar-top);
}
.heading.sub,
@ -802,8 +792,8 @@ table {
.heading.section {
background-size: 32px;
background-image: var(--nav-db, url('//assets.worlio.com/style/navbar-db'));;
background-color: var(--header-bg, #ffffff);;
background-image: var(--nav-db);
background-color: var(--header-bg);
font-size: 1.5em;
}
@ -844,7 +834,7 @@ table {
.heading hr {
margin: 0px 8px;
border: none;
border-left: var(--header-line, 2px solid #000000);
border-left: var(--header-line);
width: 0px;
display: inline-block;
height: 75%;
@ -865,7 +855,7 @@ hr.arrow.up { background-position: 0 100%; }
hr.arrow.down { background-position: 100% 100%; }
c, code, .codeblock:not(.title) {
background-color: var(--code-bg, #ffffff63);
background: var(--code-bg);
color: var(--code-text, #000000);
display: inline-block;
max-width: calc(100% - 4px);
@ -1002,27 +992,27 @@ input[type="time"],
input[type="url"],
input[type="week"],
textarea {
background-color: var(--input-bg, #ffffff);
color: var(--input-text, #000);
background-color: var(--input-bg);
color: var(--input-text);
}
input[type="file"] {
color: var(--input-text, #000);
color: var(--input-text);
}
.styled-table > tbody > tr {
border-bottom: 1px dashed var(--border-line, #000000);
border-bottom: 1px dashed var(--border-line);
}
.styled-table > tbody > tr th {
background-color: rgba(255,255,255,0.4);
border-bottom: 1px solid var(--border-header, #ffffff);
border-bottom: 1px solid var(--border-header);
}
.styled-table > tbody > tr td { border: 1px dotted var(--border-line, #000000); }
.styled-table > tbody > tr td { border: 1px dotted var(--border-line); }
.status.success, .output .success {color: var(--status-success, #458e1c);}
.status.error, .output .error {color: var(--status-error, #ff0000);}
.status.success, .output .success {color: var(--status-success);}
.status.error, .output .error {color: var(--status-error);}
heading .button {
display: inline-block !important;
@ -1030,11 +1020,11 @@ heading .button {
.file-table {
width: calc(100% - 8px);
border: 1px dotted var(--border-line, #000000);
border: 1px dotted var(--border-line);
}
.file-table tr {
border-bottom: 1px dotted var(--border-line, #000000);
border-bottom: 1px dotted var(--border-line);
}
.userlink {
@ -1043,7 +1033,7 @@ heading .button {
}
.userlink a {
color: var(--main-text, #000000);
color: var(--main-text);
text-decoration: none;
}
@ -1053,8 +1043,8 @@ heading .button {
}
.message-container {
background-color: var(--main-background, #d3d3d3);
border: var(--menu-border, 1px solid #bdbdbd);
background-color: var(--main-background);
border: var(--menu-border);
display: block;
padding: 4px;
margin-right: 8px;
@ -1071,8 +1061,8 @@ heading .button {
}
.message-container .body {
background-color: var(--menu-bg, #d0d0d0);
border: var(--menu-border, 1px solid #bdbdbd);
background-color: var(--menu-bg);
border: var(--menu-border);
padding: 8px;
margin: 4px;
}
@ -1093,13 +1083,13 @@ heading .button {
.formbutton button {
background: none;
color: var(--main-text, #000000);
color: var(--main-text);
text-decoration: none;
display: flex;
align-items: center;
width: 100%;
height: 100%;
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
border: none;
box-sizing: content-box;
padding: 0px;
@ -1134,11 +1124,11 @@ textarea {
}
.dropdown .menu {
background-image: var(--background-image, url('//assets.worlio.com/style/background'));
background-image: var(--background-image);
display: none;
position: relative;
background-color: var(--menu-bg, #d0d0d0);
border: var(--menu-border, 1px solid #bdbdbd);
background-color: var(--menu-bg);
border: var(--menu-border);
padding: 4px;
right: 152px;
width: 140px;
@ -1188,15 +1178,12 @@ table {
}
.form-container {
background-color: var(--menu-bg, #d0d0d0);
border: var(--menu-border, 1px solid #bdbdbd);
background-color: var(--menu-bg);
border: var(--menu-border);
padding: 8px;
margin: 4px;
}
.tabbed-container {
}
.tabbed-container .tablist .tab,
.tabbed-container .tablist .faketab {
cursor: pointer;
@ -1206,7 +1193,7 @@ table {
.mailbox a:link, .mailbox a:visited,
.tablist a,
.tablist a:link, .tablist a:visited {
color: var(--main-text, #000000);
color: var(--main-text);
text-decoration: none;
}
@ -1217,7 +1204,7 @@ table {
.tabbed-container .tablist {
position: relative;
bottom: -1px;
bottom: -2px;
display: flex;
flex-direction: row;
flex-shrink: 0;
@ -1227,15 +1214,15 @@ table {
.tabbed-container .tablist .tab,
.tabbed-container .tablist .faketab {
background-color: var(--tab-inactive, #bdbdbd);
border: var(--menu-border, 1px solid #bdbdbd);
background-color: var(--tab-inactive);
border: var(--tab-border);
display: inline-block;
padding: 8px;
position: relative;
margin: 0px 2px;
bottom: -1px;
text-align: center;
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
}
.tabbed-container .tablist .tab *:not(.userlink) img,
@ -1246,17 +1233,17 @@ table {
.tabbed-container .tablist .tab.selected,
.tabbed-container .tablist .faketab.selected {
background: var(--tab-selected, #d3d3d3);
background: -moz-linear-gradient(0deg, var(--tab-selected, #d3d3d3) 50%, var(--tab-gradient, #dedede) 100%);
background: -webkit-linear-gradient(0deg, var(--tab-selected, #d3d3d3) 50%, var(--tab-gradient, #dedede) 100%);
background: linear-gradient(0deg, var(--tab-selected, #d3d3d3) 50%, var(--tab-gradient, #dedede) 100%);
background: -moz-linear-gradient(0deg, var(--tab-selected) 50%, var(--tab-gradient) 100%);
background: -webkit-linear-gradient(0deg, var(--tab-selected) 50%, var(--tab-gradient) 100%);
background: linear-gradient(0deg, var(--tab-selected) 50%, var(--tab-gradient) 100%);
bottom: -2px;
/*border-bottom: none;*/
}
.tabbed-container .box,
.tabbed-container .dropdown {
background-color: var(--tab-selected, #d3d3d3);
border: var(--menu-border, 1px solid #bdbdbd);
background-color: var(--tab-selected);
border: var(--tab-border);
padding: 4px;
display: block;
flex: auto;
@ -1270,8 +1257,8 @@ table {
.mailbox .message,
.userbox .member {
background-color: var(--menu-bg, #d0d0d0);
border: var(--menu-border, 1px solid #bdbdbd);
background-color: var(--menu-bg);
border: var(--menu-border);
margin: 4px;
padding: 8px;
}
@ -1296,7 +1283,7 @@ table {
.overlay .box,
.overlay .attachment {
background: var(--main-background, #d3d3d3);
background: var(--main-background);
border: 2px inset gray;
padding: 8px;
@ -1319,7 +1306,7 @@ table {
cursor: pointer;
border: 1px solid transparent;
height: 30px;
font-family: var(--spfont1);
font-family: var(--primary-font);
}
.overlay .popup.box .embedder .embed-item img {
@ -1329,8 +1316,8 @@ table {
}
.overlay .popup.box .embedder .embed-item:hover {
border: var(--menu-border, 1px solid #bdbdbd);
background: var(--menu-bg, #d0d0d0);
border: var(--menu-border);
background: var(--menu-bg);
}
.overlay .popup.box .embedder .embed-item.selected {
@ -1341,7 +1328,7 @@ table {
.dragbox {
position: absolute;
z-index: 10;
background: var(--main-background, #d3d3d3);
background: var(--main-background);
border: var(--menu-border);
padding: 8px;
box-shadow: #0005 5px 5px 4px;
@ -1363,7 +1350,7 @@ table {
padding: 4px;
background: var(--popup-title-bg);
border-bottom: var(--popup-title-border);
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
}
.overlay .popup .titlebar .title,
@ -1446,10 +1433,10 @@ table {
.tabbed-container.vertical > .tablist .tab.selected,
.tabbed-container.vertical > .tablist .faketab.selected {
background: var(--tab-selected, #d3d3d3);
background: -moz-linear-gradient(-90deg, var(--tab-selected, #d3d3d3) 25%, var(--tab-gradient, #dedede) 100%);
background: -webkit-linear-gradient(-90deg, var(--tab-selected, #d3d3d3) 25%, var(--tab-gradient, #dedede) 100%);
background: linear-gradient(-90deg, var(--tab-selected, #d3d3d3) 25%, var(--tab-gradient, #dedede) 100%);
border: var(--menu-border, 1px solid #bdbdbd);
background: -moz-linear-gradient(-90deg, var(--tab-selected) 25%, var(--tab-gradient) 100%);
background: -webkit-linear-gradient(-90deg, var(--tab-selected) 25%, var(--tab-gradient) 100%);
background: linear-gradient(-90deg, var(--tab-selected) 25%, var(--tab-gradient) 100%);
border: var(--tab-border);
}
.forum .thread .threadsub {
@ -1489,7 +1476,7 @@ table {
}
/* FORUM */
table.board { font-family: var(--spfont1, Pixio); }
table.board { font-family: var(--primary-font); }
table.board th {
text-align: left;
@ -1497,7 +1484,7 @@ table.board th {
background-color: var(--forum-header, #f3dca9);
}
body.forum_board table.board tr:nth-child(0) { border: var(--forum-header-border, 1px solid #a89b7f); }
body.forum_board table.board tr:nth-child(0) { border: var(--forum-header-border); }
body.forum_board table.board tr:not(.subboard) td:nth-child(4),
body.forum_board table.board tr:not(.subboard) th:nth-child(3) { text-align: right; }
@ -1507,14 +1494,14 @@ body.forum table.board td:nth-child(3) * { vertical-align: middle; }
body.forum table.board th {
cursor: pointer;
user-select: none;
border: var(--forum-header-border, 1px solid #a89b7f);
border: var(--forum-header-border);
}
table.board tr {
text-align: left;
padding: 4px;
background-color: var(--forum-content, #d9d4c9);
border: var(--forum-content-border, 1px solid #a29c8d);
background-color: var(--forum-content);
border: var(--forum-content-border);
}
body.forum_board table.board th {
@ -1530,7 +1517,7 @@ body.forum table.board.collapsed td { display: none; }
body.forum_board table.board col:nth-child(4),
body.forum_watched table.board td:nth-child(4),
body.forum_watched table.board col:nth-child(4) { display: none; }
table.board td:nth-child(3) { border-right: var(--forum-content-border, 1px solid #a29c8d); }
table.board td:nth-child(3) { border-right: var(--forum-content-border); }
}
table.board .status {
@ -1541,7 +1528,7 @@ table.board .status {
}
.forum .category {
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
}
.forum > .category,
@ -1562,9 +1549,9 @@ table.board .status {
.forum .category name,
.forum .thread name {
display: flex;
background-color: var(--forum-header, #f3dca9);
border: var(--forum-header-border, 1px solid #a89b7f);
font-family: var(--spfont1, Pixio);
background-color: var(--forum-header);
border: var(--forum-header-border);
font-family: var(--primary-font);
padding: 4px;
}
@ -1584,7 +1571,7 @@ table.board .status {
.forum .category name .info i,
.forum .thread name .info i {
font-size: 12px;
color: var(--subtitle, #525252);
color: var(--subtitle);
}
.forum .board name .buttons,
@ -1608,8 +1595,8 @@ table.board .status {
.forum .category .board {
display: flex;
background-color: var(--forum-content, #d9d4c9);
border: var(--forum-content-border, 1px solid #a29c8d);
background-color: var(--forum-content);
border: var(--forum-content-border);
padding: 8px;
margin-left: 8px;
margin-bottom: -1px;
@ -1631,13 +1618,13 @@ table.board .status {
.forum .board .thread {
display: flex;
background-color: var(--forum-content, #d9d4c9);
border: var(--forum-content-border, 1px solid #a29c8d);
background-color: var(--forum-content);
border: var(--forum-content-border);
border-top: none;
margin-left: 8px;
margin-right: 8px;
padding: 8px;
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
}
.forum .board .thread .userlink {
@ -1649,7 +1636,7 @@ table.board .status {
}
.forum .board .thread .details1 .post-count {
color: var(--subtitle, #525252);
color: var(--subtitle);
}
.forum .board .thread .details2 {
@ -1664,14 +1651,14 @@ table.board .status {
}
.forum .board .thread .time {
color: var(--subtitle, #525252);
color: var(--subtitle);
}
.forum .thread .post .post-content,
.forum .thread .reply,
.forum .errors {
background-color: var(--post, #d9d9d9);
border: var(--post-border, 1px solid #bfb9a9);
background-color: var(--post);
border: var(--post-border);
padding: 4px;
}
@ -1690,7 +1677,7 @@ table.board .status {
.forum .thread .reply .title,
.forum .errors .title {
display: flex;
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
padding: 4px;
margin: -8px;
margin-bottom: 8px;
@ -1705,8 +1692,8 @@ table.board .status {
}
.forum .thread .post .authorbar {
background-color: var(--post-author, #b4b6b7);
border: var(--post-author-border, 1px solid #84775a);
background-color: var(--post-author);
border: var(--post-author-border);
display: flex;
min-height: 64px;
padding: 2px;
@ -1718,10 +1705,8 @@ table.board .status {
flex-direction: column;
}
/*.forum .thread .post .authorbar .userlink { text-align: center: }*/
.forum .thread .post .authorbar .user-stat {
font-family: var(--spfont1);
font-family: var(--primary-font);
color: var(--subtitle);
display: flex;
}
@ -1745,7 +1730,7 @@ table.board .status {
display: flex;
padding: 2px;
margin: 0px 16px;
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
z-index: 5;
}
@ -1766,7 +1751,7 @@ table.board .status {
background-color: var(--post-bottombar, #d2d2d2);
padding: 4px;
display: flex;
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
margin: -4px; margin-bottom: 4px;
}
@ -1796,7 +1781,7 @@ table.board .status {
background-color: var(--post-bottombar, #d2d2d2);
display: flex;
margin: -4px; margin-top: 8px;
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
}
.forum .thread .post .buttonbar a {
@ -1804,7 +1789,7 @@ table.board .status {
}
.forum .thread .options .option .name {
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
}
.forum .thread name .thricon {
@ -1847,7 +1832,7 @@ div.page-buttons .button#last-page div a {
display: block;
}
.userlink { font-family: var(--spfont1, Pixio); }
.userlink { font-family: var(--primary-font); }
.posteditor .editor-buttons .button a > input,
.posteditor .editor-buttons .button a > select {
@ -1855,7 +1840,7 @@ div.page-buttons .button#last-page div a {
border: none;
height: 100%;
width: 100%;
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
}
.posteditor .editbox {
@ -1894,7 +1879,7 @@ div.emotebox .emote-container:hover {
}
.mailcontainer .subject {
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
margin: 2px 2px 0px 2px;
background: var(--mail-subject-bg, #b7b7b7);
border: var(--mail-subject-border, 1px solid #8a8a8a);
@ -1931,7 +1916,7 @@ div.emotebox .emote-container:hover {
.mailcontainer .buttonbar .date {
flex-grow: 1;
font-family: var(--spfont1, Pixio);
font-family: var(--primary-font);
padding: 4px;
color: var(--subtitle, #525252);
}
@ -2013,15 +1998,15 @@ body.forum .sidebar .box .content {
border-top: 0;
}
body.forum .sidebar .box .content .subject {font-family: var(--spfont1);}
body.forum .sidebar .box .content .subject {font-family: var(--primary-font);}
body.forum .sidebar .box name {
background: var(--post-author);
border: var(--post-author-border);
font-family: var(--spfont1);
font-family: var(--primary-font);
font-weight: bold;
padding: 4px;
}
body.forum .sidebar .box .thread .info {font-family: var(--spfont1);}
body.forum .sidebar .box .thread .info {font-family: var(--primary-font);}
body.forum .sidebar .box .thread .info .loc {font-size: 12px;}
body.forum .sidebar .box .thread .info .timestamp {color: var(--subtitle);}
@ -2072,7 +2057,7 @@ body.dashboard .dash-container .mainbox {
}
body.dashboard .profile-tag {
font-family: var(--spfont1);
font-family: var(--primary-font);
display: flex;
}
@ -2097,7 +2082,7 @@ body.dashboard .dash-title {
display: inline-block;
padding: 8px;
font-weight: bold;
font-family: var(--spfont1);
font-family: var(--primary-font);
margin-bottom: -1px;
}
@ -2124,7 +2109,7 @@ body.dashboard .dash-container .sidebar .userlink.invisible {
}
body.dashboard .stats {
font-family: var(--spfont1);
font-family: var(--primary-font);
font-size: 20px;
}
@ -2151,7 +2136,7 @@ body.dashboard .stats .unread { color: var(--alert); }
.dash-container .primary .mainbox .alert .info {
text-align: right;
color: var(--subtitle);
font-family: var(--spfont1);
font-family: var(--primary-font);
}
.dash-container .blogpost {
@ -2160,13 +2145,13 @@ body.dashboard .stats .unread { color: var(--alert); }
.dash-container .blogpost .info {
color: var(--subtitle);
font-family: var(--spfont1);
font-family: var(--primary-font);
}
.dash-container .sidebar .container div.filespace meter { flex-grow: 1; margin: 0px 4px;}
.dash-container .sidebar .container div.filespace b { margin-right: 4px;}
.dash-container .sidebar .container div.filespace { display: flex; }
.dash-container .sidebar .container div.filespace a { font-family: var(--spfont1); margin: 0px 2px; }
.dash-container .sidebar .container div.filespace a { font-family: var(--primary-font); margin: 0px 2px; }
/* USER PROFILE PAGE */
body.user-profile .user-infobox {
@ -2208,9 +2193,9 @@ body.user-profile .tabbed-container {
body.user-profile .tabbed-container .tablist {white-space: nowrap;}
body.user-profile .tabbed-container .box[name='stats'] .stat.role-stat,
body.user-profile .tabbed-container .box[name='stats'] .stat.plan-stat { font-family: var(--spfont1); }
body.user-profile .tabbed-container .box[name='stats'] .stat.plan-stat { font-family: var(--primary-font); }
body.user-profile .tabbed-container .stat b {
font-family: var(--spfont1);
font-family: var(--primary-font);
font-size: 12px;
}
@ -2227,7 +2212,7 @@ a.thumbnail-box {
width: 150px;
height: 150px;
color: var(--main-text);
font-family: var(--spfont1);
font-family: var(--primary-font);
text-decoration: none;
margin: 2px;
}
@ -2248,7 +2233,7 @@ button.user-input {
width: 180px;
height: 24px;
text-align: left;
font-family: var(--spfont1);
font-family: var(--primary-font);
font-size: 14px;
vertical-align: middle;
cursor: pointer;