diff --git a/_data/metadata.js b/_data/metadata.js index 95ddec7..aeca8f6 100644 --- a/_data/metadata.js +++ b/_data/metadata.js @@ -1,9 +1,10 @@ module.exports = { title: "Nathan Upchurch", - logo: "/img/logo_favicon.svg", + logo: "/img/logo.svg", url: "https://nathanupchurch.com/", language: "en", description: "The personal website and blog of Nathan Upchurch.", + pgpkey: "", author: { name: "Nathan Upchurch", email: "blog@upchur.ch", @@ -17,7 +18,7 @@ module.exports = { title: "My Blog", linkURL: "https://nathanupchurch.com", linkDisplay: "My Blog", - iconURL: "/img/logo_favicon_dark.svg" + iconURL: "/img/logo.svg" }, { title: "Mastodon", diff --git a/_includes/layouts/base.njk b/_includes/layouts/base.njk index fa678e4..136f7bb 100644 --- a/_includes/layouts/base.njk +++ b/_includes/layouts/base.njk @@ -10,6 +10,7 @@ <link rel="alternate" href="/feed/feed.xml" type="application/atom+xml" title="{{ metadata.title }}"> <link rel="alternate" href="/feed/feed.json" type="application/json" title="{{ metadata.title }}"> + {% if metadata.pgpkey %}<link rel="pgpkey" href="{{ metadata.pgpkey | safe }}">{% endif %} <meta name="generator" content="{{ eleventy.generator }}"> {#- Bundle CSS #} @@ -56,7 +57,7 @@ <a href="#skip" class="visually-hidden">Skip to main content</a> <header> - <a href="/" class="home-link"><img src="{{ metadata.logo }}" alt="{{ metadata.title }}"></a> + <a href="/" class="home-link"><img class="logo" src="{{ metadata.logo }}" alt="{{ metadata.title }}"></a> <nav> <h2 class="visually-hidden">Top level navigation menu</h2> @@ -65,7 +66,7 @@ <a class="nav-item" href="{{ entry.url }}"{% if entry.url == page.url %} aria-current="page"{% endif %}><li {% if entry.url == page.url %} data-currentpage="true"{% endif %}>{{ entry.title }}</li></a> {%- endfor %} <a class="nav-item" href="/feed/feed.xml"> - <li subscribe"> + <li class="subscribe"> <!-- RSS Logo --> <svg class="nav-icon" viewBox="0 0 155 155" width="153.349" height="152.909" version="1.0" xmlns="http://www.w3.org/2000/svg"> <g transform="translate(-427.323 -373.814)"> @@ -93,6 +94,10 @@ <main id="skip"> {{ content | safe }} </main> - <footer>© Nathan Upchurch 2022 - 2024</footer> + <footer><p>© Nathan Upchurch 2022 - 2024<br> + <a href="https://fediring.net/previous?host=nathanupchurch.com">←</a> + <a href="https://fediring.net/">Fediring</a> + <a href="https://fediring.net/next?host=nathanupchurch.com">→</a> + </p></footer> </body> </html> diff --git a/_includes/layouts/baseBareBones.njk b/_includes/layouts/baseBareBones.njk index 6207d40..14f9af4 100644 --- a/_includes/layouts/baseBareBones.njk +++ b/_includes/layouts/baseBareBones.njk @@ -21,7 +21,7 @@ <a href="#skip" class="visually-hidden">Skip to main content</a> <header> - <a href="/" class="home-link"><img src="{{ metadata.logo }}" alt="{{ metadata.title }}"></a> + <a href="/" class="home-link"><img class="logo" src="{{ metadata.logo }}" alt="{{ metadata.title }}"></a> </header> <main id="skip"> diff --git a/_includes/layouts/links.njk b/_includes/layouts/links.njk index 7ed370e..ca7de20 100644 --- a/_includes/layouts/links.njk +++ b/_includes/layouts/links.njk @@ -8,6 +8,6 @@ layout: layouts/baseBareBones.njk <ul class="socialLinks"> {% for link in metadata.socialLinks %} - <a {% if link.customAttribute %} {{ link.customAttribute | safe }} {% endif %} href="{{ link.linkURL }}"><li><img src="{{ link.iconURL }}" />{{ link.linkDisplay }}</li></a> + <a class="icon-button" {% if link.customAttribute %} {{ link.customAttribute | safe }} {% endif %} href="{{ link.linkURL }}"><li><img src="{{ link.iconURL }}" />{{ link.linkDisplay }}</li></a> {% endfor %} </ul> diff --git a/public/css/index.css b/public/css/index.css index 85ff7ad..f21b120 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -19,6 +19,10 @@ --text-color-link: var(--text-color); --text-color-tag: var(--contrast-color); + /* Change <img> SVG color with filter */ + --logo-filter: brightness(0) saturate(100%) invert(16%) sepia(0%) saturate(1024%) hue-rotate(177deg) brightness(99%) contrast(88%); + --icon-filter: none; + /* Corners */ --corner-radius: .3rem; @@ -63,6 +67,8 @@ --text-color-link: var(--contrast-color); --background-color: #15202b; + --logo-filter: none; + --icon-filter: brightness(0) saturate(100%) invert(9%) sepia(76%) saturate(340%) hue-rotate(168deg) brightness(95%) contrast(94%); } } @@ -142,6 +148,9 @@ h3 { hr { border-top: var(--border-thin); } +.logo { + filter: var(--logo-filter); +} main { --border-nav-currentpage: 15px solid var(--contrast-color); padding: var(--single-gap); @@ -173,14 +182,14 @@ figcaption { .page-block { margin-bottom: var(--triple-gap); } -a[href] { +a[href]:not(.icon-button) { color: var(--text-color-link); } a[href]:visited { color: var(--text-color-link); } -a[href]:hover, -a[href]:active { +a[href]:hover:not(.icon-button), +a[href]:active:not(.icon-button) { color: var(--contrast-color); } .links-nextprev { diff --git a/public/css/links.css b/public/css/links.css index b25332e..60194b8 100644 --- a/public/css/links.css +++ b/public/css/links.css @@ -27,7 +27,7 @@ ul.socialLinks { } .socialLinks a { - background-color: var(--text-color); + background-color: var(--color-gray-90); border-radius: var(--corner-radius); padding: .5em; margin-bottom: 1em; @@ -39,6 +39,7 @@ ul.socialLinks { align-items: center; justify-content: center; text-decoration: none; + color: var(--background-color); } .socialLinks a:hover { @@ -46,12 +47,14 @@ ul.socialLinks { transform: scale(1.05, 1.05); } -.socialLinks a img { +.socialLinks a li img { max-width: 1em; margin-right: .5em; + filter: var(--icon-filter); +} } -.socialLinks a li { +li.iconButton { color: var(--background-color); } @@ -66,3 +69,9 @@ ul.socialLinks { } } + +@media (prefers-color-scheme: dark) { + .socialLinks a li img { + filter: auto; + } +} diff --git a/public/img/Lemmy_logo.svg b/public/img/Lemmy_logo.svg index 23f7f3f..b7df0ce 100644 --- a/public/img/Lemmy_logo.svg +++ b/public/img/Lemmy_logo.svg @@ -5,7 +5,7 @@ viewBox="0 0 951.2393 626.50705" version="1.1" id="svg8" - inkscape:version="1.3-alpha (0a19572, 2023-05-23)" + inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)" inkscape:export-xdpi="300" inkscape:export-ydpi="300" enable-background="new" @@ -26,8 +26,13 @@ inkscape:document-units="mm" inkscape:zoom="2.13089" inkscape:cx="86.58354" - inkscape:cy="71.800985" - inkscape:current-layer="layer1" /> + inkscape:cy="72.035628" + inkscape:current-layer="layer1" + inkscape:window-width="2560" + inkscape:window-height="1390" + inkscape:window-x="0" + inkscape:window-y="50" + inkscape:window-maximized="1" /> <defs id="defs2" /> <g @@ -45,7 +50,7 @@ inkscape:label="whiskers" /> <path id="path1115" - style="color:#000000;fill:#faf5f5;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + style="color:#000000;fill:#faf5f5;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;fill-opacity:1" d="m 512,691.08984 c -56.04762,0 -97.40583,43.17524 -96.13477,93.6543 1.33673,53.08647 44.39955,92.54883 96.13477,92.54883 53.28577,0 96.02265,-42.51221 96.14258,-93.05078 C 608.26099,734.34935 568.04367,691.08984 512,691.08984 Z m 0,44 c 35.68462,0 52.21056,20.40497 52.14258,49.04883 -0.0609,25.67565 -22.08252,49.1543 -52.14258,49.1543 -31.61057,0 -51.34421,-17.71731 -52.14844,-49.65625 C 459.14569,755.60387 476.31937,735.08984 512,735.08984 Z m -245.33398,-59.0664 a 22.000002,22.000002 0 0 0 -11.29688,1.42773 l -87.75586,35.82422 a 22.000002,22.000002 0 0 0 -12.05469,28.68359 22.000002,22.000002 0 0 0 28.6836,12.05274 l 87.75586,-35.82422 a 22.000002,22.000002 0 0 0 12.05273,-28.68164 22.000002,22.000002 0 0 0 -17.38476,-13.48242 z m 486.13671,0 a 22.000002,22.000002 0 0 0 -17.38671,13.48242 22.000002,22.000002 0 0 0 12.05468,28.68164 l 87.75586,35.82422 a 22.000002,22.000002 0 0 0 28.6836,-12.05274 22.000002,22.000002 0 0 0 -12.05469,-28.68359 l -87.75586,-35.82422 a 22.000002,22.000002 0 0 0 -11.29688,-1.42773 z m -410.36914,71.39062 a 22.000002,22.000002 0 0 0 -20.25976,8.57422 l -54.54492,72.22461 a 22.000002,22.000002 0 0 0 4.29687,30.81445 22.000002,22.000002 0 0 0 30.81445,-4.29687 l 54.54493,-72.22461 a 22.000002,22.000002 0 0 0 -4.29688,-30.81445 22.000002,22.000002 0 0 0 -10.55469,-4.27735 z m 339.13282,0 a 22.000002,22.000002 0 0 0 -10.55469,4.27735 22.000002,22.000002 0 0 0 -4.29688,30.81445 l 54.54493,72.22461 a 22.000002,22.000002 0 0 0 30.81445,4.29687 22.000002,22.000002 0 0 0 4.29687,-30.81445 l -54.54492,-72.22461 a 22.000002,22.000002 0 0 0 -20.25976,-8.57422 z m -341.83722,21.83264 -54.54422,72.22481 m 399.08582,-72.22481 54.54423,72.22481 M 263.68341,697.82002 175.92752,733.64353 m 579.85765,-35.82351 87.7559,35.82351 M 610.4991,644.28932 c 0,23.11196 18.70597,41.84795 41.78091,41.84795 23.07493,0 41.7809,-18.73599 41.7809,-41.84795 0,-23.11198 -18.70596,-41.84796 -41.7809,-41.84796 -23.07494,0 -41.78091,18.73598 -41.78091,41.84796 z m -280.56002,0 c 0,23.3249 18.87831,42.23352 42.16586,42.23352 23.28753,0 42.16585,-18.90862 42.16585,-42.23352 0,-23.32492 -18.87831,-42.23353 -42.16585,-42.23353 -23.28755,0 -42.16586,18.90861 -42.16586,42.23353 z m 280.56002,0 c 0,23.11198 18.70595,41.84795 41.78091,41.84795 23.07495,0 41.7809,-18.73597 41.7809,-41.84795 0,-23.112 -18.70594,-41.84796 -41.7809,-41.84796 -23.07496,0 -41.78091,18.73596 -41.78091,41.84796 z m -280.56002,0 c 0,23.32492 18.87829,42.23352 42.16586,42.23352 23.28755,0 42.16585,-18.9086 42.16585,-42.23352 0,-23.32494 -18.87829,-42.23353 -42.16585,-42.23353 -23.28757,0 -42.16586,18.90859 -42.16586,42.23353 z M 511.63821,303.38777 c -107.728,1.75894 -188.13895,28.30324 -240.81251,77.0547 -52.67355,48.75145 -74.82797,118.65539 -70.01563,197.76563 4.82669,79.34575 53.53411,146.02372 114.10938,192.58595 35.59445,27.36028 75.42318,48.04524 114.91407,60.64844 -1.9645,-3.23006 -4.08408,-6.35648 -5.65625,-9.84375 -2.51674,-5.58244 -4.5154,-11.47323 -5.92187,-17.63282 -1.40648,-6.15958 -2.22354,-12.58295 -2.39063,-19.21875 -0.0489,-1.94011 0.37762,-3.77882 0.45313,-5.69531 -25.66875,-10.88417 -51.38389,-25.30597 -74.58594,-43.14063 -53.49443,-41.11942 -93.19163,-97.64057 -97.00782,-160.37501 -4.24164,-69.72826 13.93249,-123.86897 55.99219,-162.79688 42.0597,-38.92791 110.78475,-63.70483 211.64063,-65.35156 6.28413,-0.10261 12.44607,-0.10638 18.48438,-0.008 90.57467,1.47969 153.63251,25.29817 193.28126,62.36719 42.29199,39.5403 60.54981,95.40065 55.17188,165.43751 -4.81652,62.72559 -45.13933,119.43048 -98.94532,160.6172 -22.72009,17.39148 -47.76984,31.54264 -72.80469,42.35156 0.13232,2.04549 0.60648,4.01497 0.60156,6.08594 -0.015,6.31731 -0.70024,12.50868 -1.98437,18.50781 -1.28414,5.99914 -3.17355,11.80532 -5.60157,17.35157 -1.59676,3.64743 -3.76592,6.98734 -5.8125,10.39062 38.59933,-12.70573 77.44847,-33.03881 112.34376,-59.75 60.81286,-46.55025 110.0017,-113.05421 116.07813,-192.18751 6.12477,-79.76303 -15.93875,-151.34376 -68.99219,-200.94532 -49.73761,-46.50147 -124.43161,-72.59269 -222.59376,-74.21876 -6.54415,-0.1084 -13.19294,-0.1103 -19.94532,0 z m 83.10938,527.10159 c 2.04658,-3.40328 4.21574,-6.74319 5.8125,-10.39062 2.42802,-5.54625 4.31743,-11.35243 5.60157,-17.35157 1.28413,-5.99913 1.96938,-12.1905 1.98437,-18.50781 0.005,-2.07097 -0.46924,-4.04045 -0.60156,-6.08594 -15.01475,6.48269 -29.93336,11.65834 -44.42969,15.45313 -0.001,0.005 0.001,0.0106 0,0.0156 -0.66669,3.09923 -1.65049,6.12538 -2.92188,9.03125 -1.27138,2.90588 -2.82673,5.69092 -4.64843,8.32032 -1.8217,2.62939 -3.90894,5.09741 -6.22657,7.36718 -2.31763,2.26978 -4.86582,4.34485 -7.625,6.17188 -2.75917,1.82703 -5.72866,3.40979 -8.875,4.71094 -3.14633,1.30115 -6.47401,2.31567 -9.95312,3.00781 -3.47911,0.69214 -7.10969,1.0625 -10.86719,1.0625 -3.95132,0 -7.71486,-0.28129 -11.28125,-0.82813 -3.56639,-0.54683 -6.93203,-1.35747 -10.08594,-2.4375 -3.15391,-1.08002 -6.09861,-2.42388 -8.8125,-4.02343 -2.71389,-1.59955 -5.199,-3.45708 -7.44531,-5.5625 -2.24632,-2.10543 -4.24881,-4.45705 -6,-7.05469 -1.75119,-2.59764 -3.24805,-5.43942 -4.47657,-8.51563 -1.22851,-3.0762 -2.18889,-6.38857 -2.86718,-9.92968 -0.0445,-0.23251 -0.036,-0.50771 -0.0781,-0.74219 -14.54349,-3.66716 -29.53152,-8.74512 -44.63281,-15.14844 -0.0755,1.91649 -0.50198,3.7552 -0.45313,5.69531 0.16709,6.6358 0.98415,13.05917 2.39063,19.21875 1.40647,6.15959 3.40513,12.05038 5.92187,17.63282 1.57217,3.48727 3.69175,6.61369 5.65625,9.84375 27.71543,8.84515 55.26713,13.82812 81.05469,13.82812 26.65625,0 55.19071,-5.34439 83.85938,-14.78125 z M 164.06055,262.80664 c -4.56521,0.0842 -9.09832,0.38136 -13.58789,0.89844 -35.91658,4.13664 -68.962435,23.68152 -88.833988,57.13867 -19.269712,32.44384 -24.195639,68.91192 -14.251953,102.42773 9.943686,33.51582 33.874301,63.47092 68.484371,86.88282 a 22.002202,22.002202 0 0 0 0.9668,0.61914 c 33.98007,20.48892 68.24088,33.46656 105.65039,38.50781 a 22.000002,22.000002 0 0 0 24.74219,-18.86523 22.000002,22.000002 0 0 0 -18.86524,-24.74219 C 197.37771,501.498 169.83016,491.25152 140.11328,473.41211 112.3564,454.52327 96.031191,432.53266 89.570312,410.75586 c -6.494404,-21.8898 -3.926737,-44.16632 9.898438,-67.44336 13.18247,-22.19494 31.84504,-33.10802 56.03906,-35.89453 24.19403,-2.78651 54.07361,3.93389 84.12696,21.2832 17.47404,10.08748 35.89864,27.89309 49.61914,47.06641 a 22.000002,22.000002 0 0 0 30.69336,5.08789 22.000002,22.000002 0 0 0 5.08789,-30.69336 c -16.86098,-23.5619 -38.58083,-45.2393 -63.40235,-59.56836 -32.03407,-18.49275 -65.61584,-28.37633 -97.57226,-27.78711 z m 695.8789,0 c -31.95641,-0.58922 -65.5382,9.29436 -97.57226,27.78711 -24.82153,14.32906 -46.54137,36.00646 -63.40235,59.56836 a 22.000002,22.000002 0 0 0 5.08789,30.69336 22.000002,22.000002 0 0 0 30.69336,-5.08789 c 13.7205,-19.17332 32.14509,-36.97893 49.61914,-47.06641 30.05335,-17.34931 59.93294,-24.06971 84.12696,-21.2832 24.19401,2.78651 42.85661,13.69959 56.03906,35.89453 13.82518,23.27704 16.39284,45.55356 9.89844,67.44336 -6.46087,21.7768 -22.7861,43.76741 -50.54297,62.65625 -29.71689,17.83941 -57.26443,28.08589 -88.25195,32.26172 a 22.000002,22.000002 0 0 0 -18.86524,24.74219 22.000002,22.000002 0 0 0 24.74219,18.86523 c 37.40951,-5.04125 71.67032,-18.0189 105.65039,-38.50781 a 22.002202,22.002202 0 0 0 0.9668,-0.61914 c 34.61006,-23.41191 58.53874,-53.367 68.48242,-86.88282 9.94367,-33.51581 5.01971,-69.98389 -14.25,-102.42773 -19.87153,-33.45716 -52.91742,-53.00203 -88.83399,-57.13867 -4.48957,-0.51708 -9.02268,-0.81427 -13.58789,-0.89844 z" /> </g> </svg> diff --git a/public/img/book.svg b/public/img/book.svg index f187cb2..7686e86 100644 --- a/public/img/book.svg +++ b/public/img/book.svg @@ -4,8 +4,30 @@ height="1536" version="1.1" id="svg1" + sodipodi:docname="book.svg" + inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"> + <sodipodi:namedview + id="namedview1" + pagecolor="#ffffff" + bordercolor="#000000" + borderopacity="0.25" + inkscape:showpageshadow="2" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" + inkscape:zoom="0.13684081" + inkscape:cx="-1297.1277" + inkscape:cy="1143.6647" + inkscape:window-width="2560" + inkscape:window-height="1390" + inkscape:window-x="0" + inkscape:window-y="50" + inkscape:window-maximized="1" + inkscape:current-layer="svg1" /> <defs id="defs1" /> <path diff --git a/public/img/envelope.svg b/public/img/envelope.svg index 9e57118..3d3953c 100644 --- a/public/img/envelope.svg +++ b/public/img/envelope.svg @@ -5,7 +5,7 @@ version="1.1" id="svg1" sodipodi:docname="envelope.svg" - inkscape:version="1.3-alpha (0a19572, 2023-05-23)" + inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" @@ -21,10 +21,15 @@ inkscape:pageopacity="0.0" inkscape:pagecheckerboard="0" inkscape:deskcolor="#d1d1d1" - inkscape:zoom="0.61458333" - inkscape:cx="656.54237" - inkscape:cy="1013.6949" - inkscape:current-layer="svg1" /> + inkscape:zoom="0.15364583" + inkscape:cx="-172.47458" + inkscape:cy="478.37289" + inkscape:current-layer="svg1" + inkscape:window-width="2560" + inkscape:window-height="1390" + inkscape:window-x="0" + inkscape:window-y="50" + inkscape:window-maximized="1" /> <path d="m 1467.661,572.78211 v 620.01219 c 0,68.7167 -56.2228,124.9394 -124.9395,124.9394 H 193.27845 C 124.56174,1317.7336 68.338983,1261.511 68.338983,1192.7943 V 572.78211 c 23.426151,25.76876 49.975787,48.41403 78.868037,67.93583 129.6247,88.2385 260.81114,176.477 388.09322,269.40075 65.59322,48.41399 146.80388,107.76021 231.91889,107.76021 h 1.56174 c 85.11501,0 166.32567,-59.34622 231.91893,-107.76021 127.2821,-92.14289 258.4685,-181.16225 388.874,-269.40075 28.1115,-19.5218 54.6611,-42.16707 78.0872,-67.93583 z m 0,-229.57627 c 0,87.45762 -64.8124,166.32566 -133.529,213.95883 -121.816,84.33414 -244.4128,168.66828 -365.44798,253.78329 -50.75666,35.13923 -136.65255,106.97942 -199.90315,106.97942 h -1.56174 c -63.2506,0 -149.14649,-71.84019 -199.90315,-106.97942 C 446.28087,725.83295 323.68402,641.49881 202.64891,557.16467 147.20702,519.68283 68.338983,431.44433 68.338983,360.38501 c 0,-76.52542 41.386197,-142.11864 124.939467,-142.11864 H 1342.7215 c 67.9359,0 124.9395,56.22276 124.9395,124.93947 z" id="path1" diff --git a/public/img/keyoxide.svg b/public/img/keyoxide.svg index 50c606b..d6c3186 100644 --- a/public/img/keyoxide.svg +++ b/public/img/keyoxide.svg @@ -8,11 +8,12 @@ style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2" id="svg21" sodipodi:docname="keyoxide.svg" - inkscape:version="1.3-alpha (0a19572, 2023-05-23)" + inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" - xmlns:svg="http://www.w3.org/2000/svg"> <sodipodi:namedview + xmlns:svg="http://www.w3.org/2000/svg"> + <sodipodi:namedview id="namedview23" pagecolor="#ffffff" bordercolor="#666666" @@ -23,11 +24,11 @@ showgrid="false" inkscape:zoom="0.49999998" inkscape:cx="1023" - inkscape:cy="743.00003" - inkscape:window-width="1534" - inkscape:window-height="1382" - inkscape:window-x="1008" - inkscape:window-y="40" + inkscape:cy="747.00003" + inkscape:window-width="2560" + inkscape:window-height="1390" + inkscape:window-x="0" + inkscape:window-y="50" inkscape:window-maximized="1" inkscape:current-layer="bg_color_rounded" inkscape:snap-page="true" @@ -87,19 +88,42 @@ height="1023.9998" id="page1" margin="0" - bleed="0" /></sodipodi:namedview> <defs - id="defs19"> </defs> <g + bleed="0" /></sodipodi:namedview> + + <defs + id="defs19"> + + + + + + + + + + + </defs> + + + <g inkscape:groupmode="layer" id="bg_color_rounded" inkscape:label="bg_color_rounded" style="display:inline" inkscape:highlight-color="#f37f35" - transform="translate(-1152,-2.4414063e-4)"> <path + transform="translate(-1152,-2.4414063e-4)"> + + <path id="path6" style="clip-rule:evenodd;fill:#faf5f5;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2" - d="m 1280,2.4414063e-4 c -70.9119,0 -128,57.08806985937 -128,127.99999585937 v 768.00001 c 0,70.9119 57.0881,128.00005 128,128.00005 h 768 c 70.9119,0 128,-57.08815 128,-128.00005 V 128.00024 C 2176,57.088314 2118.9119,2.4414063e-4 2048,2.4414063e-4 Z M 1627.5938,88.09399 a 15.485,15.485 0 0 1 4.0078,0.52734 15.485,15.485 0 0 1 3.7344,1.54688 15.485,15.485 0 0 1 3.207,2.46289 15.485,15.485 0 0 1 2.4609,3.20703 15.485,15.485 0 0 1 1.5469,3.73437 15.485,15.485 0 0 1 0.5273,4.00782 15.485,15.485 0 0 1 -4.5351,10.94921 15.485,15.485 0 0 1 -10.9492,4.53516 15.485,15.485 0 0 1 -10.9492,-4.53516 15.485,15.485 0 0 1 -4.5352,-10.94921 15.485,15.485 0 0 1 4.5352,-10.94922 15.485,15.485 0 0 1 10.9492,-4.53711 z m 60.3906,9.59375 a 22.177999,22.177999 0 0 1 11.0879,2.9707 22.177999,22.177999 0 0 1 8.1191,8.11914 22.177999,22.177999 0 0 1 2.9707,11.08789 22.177999,22.177999 0 0 1 -2.9707,11.08789 22.177999,22.177999 0 0 1 -8.1191,8.11914 22.177999,22.177999 0 0 1 -11.0879,2.97071 22.177999,22.177999 0 0 1 -11.0879,-2.97071 22.177999,22.177999 0 0 1 -8.1191,-8.11914 22.177999,22.177999 0 0 1 -2.9707,-11.08789 22.177999,22.177999 0 0 1 2.9707,-11.08789 22.177999,22.177999 0 0 1 8.1191,-8.11914 22.177999,22.177999 0 0 1 11.0879,-2.9707 z m -32.457,54.10351 a 33.993,33.993 0 0 1 16.9961,4.55274 33.993,33.993 0 0 1 12.4433,12.44336 33.993,33.993 0 0 1 4.5547,16.99609 33.993,33.993 0 0 1 -4.5547,16.99609 33.993,33.993 0 0 1 -12.4433,12.44336 33.993,33.993 0 0 1 -16.9961,4.55274 33.993,33.993 0 0 1 -16.9961,-4.55469 33.993,33.993 0 0 1 -12.4414,-12.44141 33.993,33.993 0 0 1 -4.5547,-16.99609 33.993,33.993 0 0 1 4.5547,-16.99609 33.993,33.993 0 0 1 12.4414,-12.44141 33.993,33.993 0 0 1 16.9961,-4.55469 z m 92.7773,24.1543 c 3.4403,-1e-4 6.7989,0.34798 10.043,1.01172 3.244,0.66373 6.3725,1.64352 9.3535,2.9043 2.981,1.26077 5.8156,2.80273 8.4668,4.59375 2.6512,1.79101 5.1204,3.83148 7.375,6.08593 2.2545,2.25446 4.2928,4.7239 6.084,7.375 1.7911,2.65111 3.3348,5.48389 4.5957,8.46485 1.2609,2.98095 2.2404,6.1095 2.9043,9.35351 0.6638,3.24401 1.0117,6.60271 1.0117,10.04297 0,2.531 -0.2194,4.5959 -0.2344,6.37695 -0.01,0.89053 0.035,1.71105 0.1836,2.48243 0.1484,0.77137 0.4018,1.49364 0.8125,2.1914 0.4114,0.69771 0.9019,1.24181 1.4649,1.66602 0.5629,0.42421 1.1984,0.7278 1.9023,0.94336 1.4077,0.43111 3.0865,0.51049 4.9941,0.49609 3.8893,-0.0299 7.7745,0.1764 11.6348,0.61719 1.1629,0.13269 2.334,0.50166 3.3262,1.07031 0.9922,0.56865 1.8055,1.33698 2.25,2.27149 0.4445,0.9345 0.534,1.84149 0.5117,2.89062 -0.022,1.04913 -0.1563,2.24042 -0.1563,3.74219 0,2.7667 0.2806,5.4673 0.8145,8.07617 0.5339,2.60887 1.3219,5.12611 2.3359,7.52344 1.0141,2.39732 2.253,4.67458 3.6934,6.80664 1.4404,2.13206 3.0814,4.11856 4.8945,5.93164 1.8131,1.81308 3.7996,3.45415 5.9317,4.89453 2.132,1.44039 4.4093,2.68134 6.8066,3.69531 2.3973,1.01398 4.9147,1.80014 7.5234,2.33399 2.6088,0.53384 5.3097,0.81445 8.0762,0.81445 2.4183,0 4.8185,-0.21831 7.1738,-0.64648 2.3554,-0.42817 4.6659,-1.06621 6.9043,-1.90625 1.6285,-0.61119 3.0976,-1.27059 4.5664,-1.61914 0.7345,-0.17428 1.4686,-0.2702 2.2227,-0.24415 0.7541,0.0261 1.5282,0.17406 2.3418,0.49024 1.6285,0.63235 2.5679,1.21728 3.2949,2.02344 0.727,0.80615 1.2417,1.83355 2.0235,3.34961 1.309,2.5385 2.4944,5.11645 3.5586,7.72461 1.0641,2.60815 2.0063,5.24592 2.8281,7.9082 0.8218,2.66228 1.5234,5.34794 2.1054,8.04883 0.582,2.70089 1.0459,5.4186 1.3907,8.14257 0.6895,5.44796 0.906,10.92587 0.6621,16.37305 -0.2439,5.44718 -0.9486,10.86331 -2.1055,16.18555 -1.1569,5.32224 -2.765,10.54992 -4.8144,15.62305 -2.0495,5.07312 -4.5415,9.99155 -7.4629,14.6914 -1.4608,2.34993 -3.0283,4.64558 -4.7032,6.87891 -1.6749,2.23332 -3.4572,4.40465 -5.3437,6.50586 -1.8865,2.1012 -3.8771,4.13237 -5.9727,6.08593 -2.0955,1.95356 -4.2956,3.82875 -6.5976,5.61915 l -182.8457,142.20897 177.1152,118.0781 c 2.7553,1.8369 5.3849,3.7914 7.8867,5.8536 2.5019,2.0621 4.8752,4.2311 7.1192,6.496 2.2439,2.265 4.3582,4.6269 6.3398,7.0723 1.9816,2.4454 3.8322,4.9746 5.5469,7.5781 1.7147,2.6036 3.2949,5.2803 4.7383,8.0196 1.4433,2.7392 2.7484,5.5419 3.916,8.3945 1.1675,2.8526 2.1967,5.7556 3.084,8.6992 0.8872,2.9436 1.6338,5.9273 2.2363,8.9395 0.6025,3.0121 1.0618,6.0529 1.375,9.1113 0.3132,3.0584 0.4805,6.1346 0.5,9.2168 0.02,3.0822 -0.11,6.1702 -0.3887,9.2539 -0.2787,3.0837 -0.7077,6.1638 -1.289,9.2266 -0.5814,3.0627 -1.3146,6.1094 -2.2032,9.1289 -0.8885,3.0194 -1.9326,6.011 -3.1328,8.9648 -1.2001,2.9538 -2.556,5.8686 -4.0722,8.7344 -1.5163,2.8657 -3.1925,5.6822 -5.0293,8.4375 -1.8369,2.7553 -3.7914,5.3848 -5.8535,7.8867 -2.0622,2.5019 -4.2312,4.8752 -6.4961,7.1191 -2.265,2.244 -4.6268,4.3583 -7.0723,6.3399 -2.4455,1.9816 -4.9745,3.8322 -7.5781,5.5469 -2.6036,1.7147 -5.2822,3.2949 -8.0215,4.7382 -2.7393,1.4434 -5.5399,2.7485 -8.3926,3.9161 -2.8527,1.1675 -5.7575,2.1967 -8.7012,3.0839 -2.9436,0.8873 -5.9272,1.6339 -8.9394,2.2364 -3.0123,0.6025 -6.0529,1.0617 -9.1114,1.375 -3.0584,0.3132 -6.1345,0.4805 -9.2167,0.5 -3.0823,0.0195 -6.1702,-0.11 -9.254,-0.3887 -3.0837,-0.2787 -6.1618,-0.7077 -9.2246,-1.2891 -3.0628,-0.5813 -6.1094,-1.3145 -9.1289,-2.2031 -3.0195,-0.8885 -6.013,-1.9326 -8.9668,-3.1328 -2.9538,-1.2002 -5.8686,-2.556 -8.7343,-4.0723 -2.8658,-1.5162 -5.6822,-3.1924 -8.4375,-5.0293 l -138.6778,-92.4511 v 12.5722 c 0,3.3163 -0.1681,6.5927 -0.4961,9.8223 -0.328,3.2296 -0.8152,6.4121 -1.455,9.5391 -0.6399,3.127 -1.4316,6.1988 -2.3672,9.207 -0.9357,3.0082 -2.0171,5.9528 -3.2325,8.8262 -1.2153,2.8734 -2.5659,5.676 -4.0449,8.3984 -1.479,2.7225 -3.086,5.3645 -4.8125,7.9199 -1.7265,2.5554 -3.5714,5.0242 -5.5293,7.3965 -1.9579,2.3723 -4.028,4.6492 -6.2011,6.8223 -2.1732,2.1731 -4.4499,4.2414 -6.8223,6.1992 -2.3724,1.9578 -4.841,3.8049 -7.3965,5.5312 -2.5555,1.7264 -5.1974,3.3337 -7.9199,4.8125 -2.7225,1.4789 -5.5251,2.8297 -8.3985,4.045 -2.8734,1.2152 -5.8179,2.2948 -8.8261,3.2304 -3.0082,0.9356 -6.0801,1.7274 -9.2071,2.3672 -3.1269,0.6398 -6.3095,1.1271 -9.539,1.4551 -3.2296,0.328 -6.5062,0.4961 -9.8223,0.4961 -3.316,0 -6.5927,-0.1681 -9.8223,-0.4961 -3.2295,-0.328 -6.4121,-0.8153 -9.539,-1.4551 -3.1269,-0.6398 -6.1989,-1.4316 -9.207,-2.3672 -3.0082,-0.9356 -5.9529,-2.0152 -8.8262,-3.2304 -2.8733,-1.2153 -5.6741,-2.5661 -8.3965,-4.045 -2.7224,-1.4788 -5.3665,-3.0861 -7.9219,-4.8125 -2.5554,-1.7263 -5.0222,-3.5734 -7.3945,-5.5312 -2.3723,-1.9578 -4.6492,-4.0261 -6.8223,-6.1992 -2.173,-2.1731 -4.2414,-4.45 -6.1992,-6.8223 -1.9578,-2.3723 -3.8049,-4.8411 -5.5312,-7.3965 -1.7264,-2.5554 -3.3337,-5.1974 -4.8125,-7.9199 -1.4789,-2.7224 -2.8297,-5.525 -4.045,-8.3984 -1.2153,-2.8734 -2.2948,-5.818 -3.2304,-8.8262 -0.9356,-3.0082 -1.7274,-6.08 -2.3672,-9.207 -0.6399,-3.127 -1.1271,-6.3095 -1.4551,-9.5391 -0.328,-3.2296 -0.4961,-6.506 -0.4961,-9.8223 v -192 c 0,-0.3886 0.062,-0.7681 0.066,-1.1562 V 336.00024 c 0,-3.3115 0.1681,-6.585 0.4961,-9.81055 0.328,-3.22555 0.8152,-6.40387 1.4551,-9.52734 0.6398,-3.12347 1.4316,-6.19201 2.3672,-9.19727 0.9355,-3.00525 2.0153,-5.94745 3.2304,-8.81836 1.2152,-2.8709 2.5664,-5.67021 4.045,-8.39062 1.4786,-2.72042 3.0846,-5.36028 4.8105,-7.91407 1.7259,-2.55378 3.5722,-5.02155 5.5293,-7.39257 1.9571,-2.37103 4.0251,-4.64624 6.1973,-6.81836 2.1721,-2.17213 4.4473,-4.24018 6.8183,-6.19727 2.3711,-1.95709 4.8388,-3.80338 7.3926,-5.5293 2.5538,-1.72591 5.1937,-3.33194 7.9141,-4.81054 2.7204,-1.47861 5.5197,-2.82977 8.3906,-4.04492 2.8709,-1.21516 5.8131,-2.2949 8.8184,-3.23047 3.0052,-0.93557 6.0738,-1.72734 9.1972,-2.36719 3.1235,-0.63985 6.3018,-1.12708 9.5274,-1.45508 3.2255,-0.32799 6.499,-0.49609 9.8105,-0.49609 3.3115,0 6.585,0.1681 9.8106,0.49609 3.2255,0.328 6.4038,0.81523 9.5273,1.45508 3.1235,0.63985 6.192,1.43162 9.1973,2.36719 3.0052,0.93557 5.9474,2.01531 8.8183,3.23047 2.8709,1.21515 5.6702,2.56631 8.3907,4.04492 2.7204,1.4786 5.3602,3.08463 7.914,4.81054 2.5538,1.72592 5.0216,3.57221 7.3926,5.5293 2.371,1.95709 4.6462,4.02514 6.8184,6.19727 2.1721,2.17212 4.2401,4.44733 6.1972,6.81836 1.9571,2.37102 3.8034,4.83879 5.5293,7.39257 1.7259,2.55379 3.332,5.19365 4.8106,7.91407 1.4786,2.72041 2.8297,5.51972 4.0449,8.39062 1.2151,2.87091 2.2949,5.81311 3.2305,8.81836 0.9355,3.00526 1.7273,6.0738 2.3671,9.19727 0.6399,3.12347 1.1271,6.30179 1.4551,9.52734 0.328,3.22555 0.4961,6.49905 0.4961,9.81055 v 27.625 l 105.2871,-81.89063 c 0,0 1.4106,-0.95504 2.7578,-2.42383 0.6736,-0.73439 1.3315,-1.59645 1.7891,-2.5332 0.4576,-0.93675 0.7149,-1.94733 0.5879,-2.97656 -0.1263,-1.02989 -0.3581,-1.82171 -0.6934,-2.4707 -0.3353,-0.649 -0.7741,-1.15517 -1.3164,-1.61524 -1.0846,-0.92014 -2.5814,-1.6544 -4.4824,-2.9707 -3.2993,-2.28652 -6.2901,-4.95004 -8.9199,-7.91992 -2.6299,-2.96989 -4.8991,-6.24623 -6.7559,-9.75586 -0.9284,-1.75482 -1.753,-3.56881 -2.4687,-5.43164 -0.7157,-1.86283 -1.3224,-3.77368 -1.8125,-5.72657 -0.4901,-1.95289 -0.8637,-3.94765 -1.1153,-5.97265 -0.2515,-2.025 -0.3808,-4.081 -0.3808,-6.16016 0,-3.44016 0.3479,-6.79904 1.0117,-10.04297 0.6638,-3.24392 1.6435,-6.37262 2.9043,-9.35351 1.2608,-2.9809 2.8027,-5.81378 4.5937,-8.46485 1.7911,-2.65107 3.8315,-5.12055 6.086,-7.375 2.2544,-2.25445 4.7239,-4.2949 7.375,-6.08593 2.6511,-1.79104 5.4839,-3.33293 8.4648,-4.59375 2.9809,-1.26083 6.1096,-2.24047 9.3535,-2.9043 3.244,-0.66383 6.6028,-1.01169 10.043,-1.01172 z m 116.6016,47.41211 a 27.167999,27.167999 0 0 1 13.584,3.64062 27.167999,27.167999 0 0 1 9.9433,9.94336 27.167999,27.167999 0 0 1 3.6406,13.58399 27.167999,27.167999 0 0 1 -3.6406,13.58398 27.167999,27.167999 0 0 1 -9.9433,9.94336 27.167999,27.167999 0 0 1 -13.584,3.64063 27.167999,27.167999 0 0 1 -13.584,-3.64063 27.167999,27.167999 0 0 1 -9.9434,-9.94336 27.167999,27.167999 0 0 1 -3.6406,-13.58398 27.167999,27.167999 0 0 1 3.6406,-13.58399 27.167999,27.167999 0 0 1 9.9434,-9.94336 27.167999,27.167999 0 0 1 13.584,-3.64062 z" /></g> <g + d="m 1280,2.4414063e-4 c -70.9119,0 -128,57.08806985937 -128,127.99999585937 v 768.00001 c 0,70.9119 57.0881,128.00005 128,128.00005 h 768 c 70.9119,0 128,-57.08815 128,-128.00005 V 128.00024 C 2176,57.088314 2118.9119,2.4414063e-4 2048,2.4414063e-4 Z M 1627.5938,88.09399 a 15.485,15.485 0 0 1 4.0078,0.52734 15.485,15.485 0 0 1 3.7344,1.54688 15.485,15.485 0 0 1 3.207,2.46289 15.485,15.485 0 0 1 2.4609,3.20703 15.485,15.485 0 0 1 1.5469,3.73437 15.485,15.485 0 0 1 0.5273,4.00782 15.485,15.485 0 0 1 -4.5351,10.94921 15.485,15.485 0 0 1 -10.9492,4.53516 15.485,15.485 0 0 1 -10.9492,-4.53516 15.485,15.485 0 0 1 -4.5352,-10.94921 15.485,15.485 0 0 1 4.5352,-10.94922 15.485,15.485 0 0 1 10.9492,-4.53711 z m 60.3906,9.59375 a 22.177999,22.177999 0 0 1 11.0879,2.9707 22.177999,22.177999 0 0 1 8.1191,8.11914 22.177999,22.177999 0 0 1 2.9707,11.08789 22.177999,22.177999 0 0 1 -2.9707,11.08789 22.177999,22.177999 0 0 1 -8.1191,8.11914 22.177999,22.177999 0 0 1 -11.0879,2.97071 22.177999,22.177999 0 0 1 -11.0879,-2.97071 22.177999,22.177999 0 0 1 -8.1191,-8.11914 22.177999,22.177999 0 0 1 -2.9707,-11.08789 22.177999,22.177999 0 0 1 2.9707,-11.08789 22.177999,22.177999 0 0 1 8.1191,-8.11914 22.177999,22.177999 0 0 1 11.0879,-2.9707 z m -32.457,54.10351 a 33.993,33.993 0 0 1 16.9961,4.55274 33.993,33.993 0 0 1 12.4433,12.44336 33.993,33.993 0 0 1 4.5547,16.99609 33.993,33.993 0 0 1 -4.5547,16.99609 33.993,33.993 0 0 1 -12.4433,12.44336 33.993,33.993 0 0 1 -16.9961,4.55274 33.993,33.993 0 0 1 -16.9961,-4.55469 33.993,33.993 0 0 1 -12.4414,-12.44141 33.993,33.993 0 0 1 -4.5547,-16.99609 33.993,33.993 0 0 1 4.5547,-16.99609 33.993,33.993 0 0 1 12.4414,-12.44141 33.993,33.993 0 0 1 16.9961,-4.55469 z m 92.7773,24.1543 c 3.4403,-1e-4 6.7989,0.34798 10.043,1.01172 3.244,0.66373 6.3725,1.64352 9.3535,2.9043 2.981,1.26077 5.8156,2.80273 8.4668,4.59375 2.6512,1.79101 5.1204,3.83148 7.375,6.08593 2.2545,2.25446 4.2928,4.7239 6.084,7.375 1.7911,2.65111 3.3348,5.48389 4.5957,8.46485 1.2609,2.98095 2.2404,6.1095 2.9043,9.35351 0.6638,3.24401 1.0117,6.60271 1.0117,10.04297 0,2.531 -0.2194,4.5959 -0.2344,6.37695 -0.01,0.89053 0.035,1.71105 0.1836,2.48243 0.1484,0.77137 0.4018,1.49364 0.8125,2.1914 0.4114,0.69771 0.9019,1.24181 1.4649,1.66602 0.5629,0.42421 1.1984,0.7278 1.9023,0.94336 1.4077,0.43111 3.0865,0.51049 4.9941,0.49609 3.8893,-0.0299 7.7745,0.1764 11.6348,0.61719 1.1629,0.13269 2.334,0.50166 3.3262,1.07031 0.9922,0.56865 1.8055,1.33698 2.25,2.27149 0.4445,0.9345 0.534,1.84149 0.5117,2.89062 -0.022,1.04913 -0.1563,2.24042 -0.1563,3.74219 0,2.7667 0.2806,5.4673 0.8145,8.07617 0.5339,2.60887 1.3219,5.12611 2.3359,7.52344 1.0141,2.39732 2.253,4.67458 3.6934,6.80664 1.4404,2.13206 3.0814,4.11856 4.8945,5.93164 1.8131,1.81308 3.7996,3.45415 5.9317,4.89453 2.132,1.44039 4.4093,2.68134 6.8066,3.69531 2.3973,1.01398 4.9147,1.80014 7.5234,2.33399 2.6088,0.53384 5.3097,0.81445 8.0762,0.81445 2.4183,0 4.8185,-0.21831 7.1738,-0.64648 2.3554,-0.42817 4.6659,-1.06621 6.9043,-1.90625 1.6285,-0.61119 3.0976,-1.27059 4.5664,-1.61914 0.7345,-0.17428 1.4686,-0.2702 2.2227,-0.24415 0.7541,0.0261 1.5282,0.17406 2.3418,0.49024 1.6285,0.63235 2.5679,1.21728 3.2949,2.02344 0.727,0.80615 1.2417,1.83355 2.0235,3.34961 1.309,2.5385 2.4944,5.11645 3.5586,7.72461 1.0641,2.60815 2.0063,5.24592 2.8281,7.9082 0.8218,2.66228 1.5234,5.34794 2.1054,8.04883 0.582,2.70089 1.0459,5.4186 1.3907,8.14257 0.6895,5.44796 0.906,10.92587 0.6621,16.37305 -0.2439,5.44718 -0.9486,10.86331 -2.1055,16.18555 -1.1569,5.32224 -2.765,10.54992 -4.8144,15.62305 -2.0495,5.07312 -4.5415,9.99155 -7.4629,14.6914 -1.4608,2.34993 -3.0283,4.64558 -4.7032,6.87891 -1.6749,2.23332 -3.4572,4.40465 -5.3437,6.50586 -1.8865,2.1012 -3.8771,4.13237 -5.9727,6.08593 -2.0955,1.95356 -4.2956,3.82875 -6.5976,5.61915 l -182.8457,142.20897 177.1152,118.0781 c 2.7553,1.8369 5.3849,3.7914 7.8867,5.8536 2.5019,2.0621 4.8752,4.2311 7.1192,6.496 2.2439,2.265 4.3582,4.6269 6.3398,7.0723 1.9816,2.4454 3.8322,4.9746 5.5469,7.5781 1.7147,2.6036 3.2949,5.2803 4.7383,8.0196 1.4433,2.7392 2.7484,5.5419 3.916,8.3945 1.1675,2.8526 2.1967,5.7556 3.084,8.6992 0.8872,2.9436 1.6338,5.9273 2.2363,8.9395 0.6025,3.0121 1.0618,6.0529 1.375,9.1113 0.3132,3.0584 0.4805,6.1346 0.5,9.2168 0.02,3.0822 -0.11,6.1702 -0.3887,9.2539 -0.2787,3.0837 -0.7077,6.1638 -1.289,9.2266 -0.5814,3.0627 -1.3146,6.1094 -2.2032,9.1289 -0.8885,3.0194 -1.9326,6.011 -3.1328,8.9648 -1.2001,2.9538 -2.556,5.8686 -4.0722,8.7344 -1.5163,2.8657 -3.1925,5.6822 -5.0293,8.4375 -1.8369,2.7553 -3.7914,5.3848 -5.8535,7.8867 -2.0622,2.5019 -4.2312,4.8752 -6.4961,7.1191 -2.265,2.244 -4.6268,4.3583 -7.0723,6.3399 -2.4455,1.9816 -4.9745,3.8322 -7.5781,5.5469 -2.6036,1.7147 -5.2822,3.2949 -8.0215,4.7382 -2.7393,1.4434 -5.5399,2.7485 -8.3926,3.9161 -2.8527,1.1675 -5.7575,2.1967 -8.7012,3.0839 -2.9436,0.8873 -5.9272,1.6339 -8.9394,2.2364 -3.0123,0.6025 -6.0529,1.0617 -9.1114,1.375 -3.0584,0.3132 -6.1345,0.4805 -9.2167,0.5 -3.0823,0.0195 -6.1702,-0.11 -9.254,-0.3887 -3.0837,-0.2787 -6.1618,-0.7077 -9.2246,-1.2891 -3.0628,-0.5813 -6.1094,-1.3145 -9.1289,-2.2031 -3.0195,-0.8885 -6.013,-1.9326 -8.9668,-3.1328 -2.9538,-1.2002 -5.8686,-2.556 -8.7343,-4.0723 -2.8658,-1.5162 -5.6822,-3.1924 -8.4375,-5.0293 l -138.6778,-92.4511 v 12.5722 c 0,3.3163 -0.1681,6.5927 -0.4961,9.8223 -0.328,3.2296 -0.8152,6.4121 -1.455,9.5391 -0.6399,3.127 -1.4316,6.1988 -2.3672,9.207 -0.9357,3.0082 -2.0171,5.9528 -3.2325,8.8262 -1.2153,2.8734 -2.5659,5.676 -4.0449,8.3984 -1.479,2.7225 -3.086,5.3645 -4.8125,7.9199 -1.7265,2.5554 -3.5714,5.0242 -5.5293,7.3965 -1.9579,2.3723 -4.028,4.6492 -6.2011,6.8223 -2.1732,2.1731 -4.4499,4.2414 -6.8223,6.1992 -2.3724,1.9578 -4.841,3.8049 -7.3965,5.5312 -2.5555,1.7264 -5.1974,3.3337 -7.9199,4.8125 -2.7225,1.4789 -5.5251,2.8297 -8.3985,4.045 -2.8734,1.2152 -5.8179,2.2948 -8.8261,3.2304 -3.0082,0.9356 -6.0801,1.7274 -9.2071,2.3672 -3.1269,0.6398 -6.3095,1.1271 -9.539,1.4551 -3.2296,0.328 -6.5062,0.4961 -9.8223,0.4961 -3.316,0 -6.5927,-0.1681 -9.8223,-0.4961 -3.2295,-0.328 -6.4121,-0.8153 -9.539,-1.4551 -3.1269,-0.6398 -6.1989,-1.4316 -9.207,-2.3672 -3.0082,-0.9356 -5.9529,-2.0152 -8.8262,-3.2304 -2.8733,-1.2153 -5.6741,-2.5661 -8.3965,-4.045 -2.7224,-1.4788 -5.3665,-3.0861 -7.9219,-4.8125 -2.5554,-1.7263 -5.0222,-3.5734 -7.3945,-5.5312 -2.3723,-1.9578 -4.6492,-4.0261 -6.8223,-6.1992 -2.173,-2.1731 -4.2414,-4.45 -6.1992,-6.8223 -1.9578,-2.3723 -3.8049,-4.8411 -5.5312,-7.3965 -1.7264,-2.5554 -3.3337,-5.1974 -4.8125,-7.9199 -1.4789,-2.7224 -2.8297,-5.525 -4.045,-8.3984 -1.2153,-2.8734 -2.2948,-5.818 -3.2304,-8.8262 -0.9356,-3.0082 -1.7274,-6.08 -2.3672,-9.207 -0.6399,-3.127 -1.1271,-6.3095 -1.4551,-9.5391 -0.328,-3.2296 -0.4961,-6.506 -0.4961,-9.8223 v -192 c 0,-0.3886 0.062,-0.7681 0.066,-1.1562 V 336.00024 c 0,-3.3115 0.1681,-6.585 0.4961,-9.81055 0.328,-3.22555 0.8152,-6.40387 1.4551,-9.52734 0.6398,-3.12347 1.4316,-6.19201 2.3672,-9.19727 0.9355,-3.00525 2.0153,-5.94745 3.2304,-8.81836 1.2152,-2.8709 2.5664,-5.67021 4.045,-8.39062 1.4786,-2.72042 3.0846,-5.36028 4.8105,-7.91407 1.7259,-2.55378 3.5722,-5.02155 5.5293,-7.39257 1.9571,-2.37103 4.0251,-4.64624 6.1973,-6.81836 2.1721,-2.17213 4.4473,-4.24018 6.8183,-6.19727 2.3711,-1.95709 4.8388,-3.80338 7.3926,-5.5293 2.5538,-1.72591 5.1937,-3.33194 7.9141,-4.81054 2.7204,-1.47861 5.5197,-2.82977 8.3906,-4.04492 2.8709,-1.21516 5.8131,-2.2949 8.8184,-3.23047 3.0052,-0.93557 6.0738,-1.72734 9.1972,-2.36719 3.1235,-0.63985 6.3018,-1.12708 9.5274,-1.45508 3.2255,-0.32799 6.499,-0.49609 9.8105,-0.49609 3.3115,0 6.585,0.1681 9.8106,0.49609 3.2255,0.328 6.4038,0.81523 9.5273,1.45508 3.1235,0.63985 6.192,1.43162 9.1973,2.36719 3.0052,0.93557 5.9474,2.01531 8.8183,3.23047 2.8709,1.21515 5.6702,2.56631 8.3907,4.04492 2.7204,1.4786 5.3602,3.08463 7.914,4.81054 2.5538,1.72592 5.0216,3.57221 7.3926,5.5293 2.371,1.95709 4.6462,4.02514 6.8184,6.19727 2.1721,2.17212 4.2401,4.44733 6.1972,6.81836 1.9571,2.37102 3.8034,4.83879 5.5293,7.39257 1.7259,2.55379 3.332,5.19365 4.8106,7.91407 1.4786,2.72041 2.8297,5.51972 4.0449,8.39062 1.2151,2.87091 2.2949,5.81311 3.2305,8.81836 0.9355,3.00526 1.7273,6.0738 2.3671,9.19727 0.6399,3.12347 1.1271,6.30179 1.4551,9.52734 0.328,3.22555 0.4961,6.49905 0.4961,9.81055 v 27.625 l 105.2871,-81.89063 c 0,0 1.4106,-0.95504 2.7578,-2.42383 0.6736,-0.73439 1.3315,-1.59645 1.7891,-2.5332 0.4576,-0.93675 0.7149,-1.94733 0.5879,-2.97656 -0.1263,-1.02989 -0.3581,-1.82171 -0.6934,-2.4707 -0.3353,-0.649 -0.7741,-1.15517 -1.3164,-1.61524 -1.0846,-0.92014 -2.5814,-1.6544 -4.4824,-2.9707 -3.2993,-2.28652 -6.2901,-4.95004 -8.9199,-7.91992 -2.6299,-2.96989 -4.8991,-6.24623 -6.7559,-9.75586 -0.9284,-1.75482 -1.753,-3.56881 -2.4687,-5.43164 -0.7157,-1.86283 -1.3224,-3.77368 -1.8125,-5.72657 -0.4901,-1.95289 -0.8637,-3.94765 -1.1153,-5.97265 -0.2515,-2.025 -0.3808,-4.081 -0.3808,-6.16016 0,-3.44016 0.3479,-6.79904 1.0117,-10.04297 0.6638,-3.24392 1.6435,-6.37262 2.9043,-9.35351 1.2608,-2.9809 2.8027,-5.81378 4.5937,-8.46485 1.7911,-2.65107 3.8315,-5.12055 6.086,-7.375 2.2544,-2.25445 4.7239,-4.2949 7.375,-6.08593 2.6511,-1.79104 5.4839,-3.33293 8.4648,-4.59375 2.9809,-1.26083 6.1096,-2.24047 9.3535,-2.9043 3.244,-0.66383 6.6028,-1.01169 10.043,-1.01172 z m 116.6016,47.41211 a 27.167999,27.167999 0 0 1 13.584,3.64062 27.167999,27.167999 0 0 1 9.9433,9.94336 27.167999,27.167999 0 0 1 3.6406,13.58399 27.167999,27.167999 0 0 1 -3.6406,13.58398 27.167999,27.167999 0 0 1 -9.9433,9.94336 27.167999,27.167999 0 0 1 -13.584,3.64063 27.167999,27.167999 0 0 1 -13.584,-3.64063 27.167999,27.167999 0 0 1 -9.9434,-9.94336 27.167999,27.167999 0 0 1 -3.6406,-13.58398 27.167999,27.167999 0 0 1 3.6406,-13.58399 27.167999,27.167999 0 0 1 9.9434,-9.94336 27.167999,27.167999 0 0 1 13.584,-3.64062 z" /></g> + + <g inkscape:groupmode="layer" id="logo_white" inkscape:label="logo_white" style="display:inline" - transform="translate(-1152,-2.4414063e-4)"> </g> </svg> + transform="translate(-1152,-2.4414063e-4)"> + + </g> +</svg> diff --git a/public/img/logo_favicon_dark.svg b/public/img/logo.svg similarity index 92% rename from public/img/logo_favicon_dark.svg rename to public/img/logo.svg index 41f6eb2..307f823 100644 --- a/public/img/logo_favicon_dark.svg +++ b/public/img/logo.svg @@ -7,8 +7,8 @@ viewBox="0 0 8.4666662 8.4666662" version="1.1" id="svg1" - sodipodi:docname="logo_favicon_dark.svg" - inkscape:version="1.3-alpha (0a19572, 2023-05-23)" + sodipodi:docname="logo.svg" + inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" @@ -25,8 +25,13 @@ inkscape:document-units="mm" inkscape:zoom="19.124999" inkscape:cx="4.6797388" - inkscape:cy="26.039217" - inkscape:current-layer="g1" /> + inkscape:cy="26.117648" + inkscape:current-layer="g1" + inkscape:window-width="2560" + inkscape:window-height="1390" + inkscape:window-x="0" + inkscape:window-y="50" + inkscape:window-maximized="1" /> <defs id="defs1" /> <g diff --git a/public/img/logo_favicon.svg b/public/img/logo_favicon.svg index 1b298d1..fce22d0 100644 --- a/public/img/logo_favicon.svg +++ b/public/img/logo_favicon.svg @@ -8,7 +8,7 @@ version="1.1" id="svg1" sodipodi:docname="logo_favicon.svg" - inkscape:version="1.3-alpha (0a19572, 2023-05-23)" + inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" @@ -23,10 +23,15 @@ inkscape:pagecheckerboard="0" inkscape:deskcolor="#d1d1d1" inkscape:document-units="mm" - inkscape:zoom="6.7617082" - inkscape:cx="12.127113" - inkscape:cy="28.986758" - inkscape:current-layer="g1" /> + inkscape:zoom="9.5624995" + inkscape:cx="25.098041" + inkscape:cy="34.19608" + inkscape:current-layer="g1" + inkscape:window-width="1337" + inkscape:window-height="1077" + inkscape:window-x="522" + inkscape:window-y="231" + inkscape:window-maximized="0" /> <defs id="defs1" /> <g @@ -34,28 +39,14 @@ transform="translate(-23.248082,-20.452073)"> <g id="g1"> - <rect - style="fill:#333333;fill-opacity:1;stroke-width:0.0580231;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers" - id="rect1" - width="8.4666672" - height="8.4666672" - x="23.248081" - y="20.452072" - ry="2.0226691" - rx="2.0226691" /> - <rect - style="fill:#333333;stroke-width:0.162218;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;fill-opacity:1" - id="rect3" - width="2.618768" - height="2.9992118" - x="23.248079" - y="20.452072" - ry="0" /> <path - d="m 28.894012,22.376224 v 0.12746 q -0.203935,0.01912 -0.312275,0.09559 -0.108341,0.0701 -0.146578,0.229426 -0.03187,0.152951 -0.03187,0.439735 V 26.9074 q -0.05736,-0.0063 -0.12746,-0.0063 -0.06373,0 -0.140205,0.0063 l -2.734,-3.715437 v 2.75312 q 0,0.305902 0.03823,0.477972 0.03824,0.165697 0.165696,0.242172 0.133833,0.0701 0.401498,0.09559 v 0.127459 q -0.121087,-0.01275 -0.312276,-0.01275 -0.191188,-0.0063 -0.363258,-0.0063 -0.152952,0 -0.312276,0.0063 -0.15295,0 -0.254918,0.01275 v -0.127459 q 0.210308,-0.02549 0.312275,-0.09559 0.10834,-0.0701 0.140205,-0.229426 0.03824,-0.159324 0.03824,-0.439735 v -2.944308 q 0,-0.2358 -0.03824,-0.344139 -0.03186,-0.114714 -0.140205,-0.152952 -0.101967,-0.04461 -0.312275,-0.05098 v -0.127459 q 0.101968,0.0063 0.254918,0.01275 0.159324,0.0063 0.312276,0.0063 0.146578,0 0.286782,-0.0063 0.140206,-0.0063 0.248546,-0.01275 l 2.389861,3.180108 v -2.236909 q 0,-0.312276 -0.03824,-0.477973 -0.03823,-0.165697 -0.165696,-0.242172 -0.127459,-0.07648 -0.401497,-0.09559 v -0.127459 q 0.121086,0.0063 0.312275,0.01275 0.197562,0.0063 0.363259,0.0063 0.159324,0 0.312275,-0.0063 0.159324,-0.0063 0.254918,-0.01275 z m 0.962308,3.670826 q 0.21668,0 0.356886,0.127459 0.140205,0.12746 0.140205,0.337768 0,0.210307 -0.140205,0.337766 -0.140206,0.12746 -0.356886,0.12746 -0.223054,0 -0.363259,-0.12746 -0.133832,-0.127459 -0.133832,-0.337766 0,-0.210308 0.133832,-0.337768 0.140205,-0.127459 0.363259,-0.127459 z" - id="text1" - style="font-weight:600;font-size:7.54899px;line-height:1;font-family:'Playfair Display';-inkscape-font-specification:'Playfair Display, Semi-Bold';letter-spacing:0px;fill:#ffffff;stroke-width:0.125453;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers" - aria-label="N." /> + d="m 24.299497,21.503489 v 1.520267 0.734109 2.589192 c 0,0.842244 0.678022,1.520267 1.520266,1.520267 h 3.323302 c 0.842243,0 1.520266,-0.678023 1.520266,-1.520267 v -3.323301 c 0,-0.842245 -0.678023,-1.520267 -1.520266,-1.520267 h -2.875068 -0.448234 z" + style="fill:#faf5f5;fill-opacity:1;stroke-width:0.121929;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers" + id="path3" /> + <path + id="path1" + style="fill:#333333;fill-opacity:1;stroke-width:0.162218;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers" + d="m 23.248081,20.452073 v 2.022616 0.976684 3.444751 c 0,1.120554 0.902061,2.022616 2.022616,2.022616 h 4.421435 c 1.120554,0 2.022616,-0.902062 2.022616,-2.022616 v -4.421435 c 0,-1.120555 -0.902062,-2.022616 -2.022616,-2.022616 h -3.825089 -0.596346 z m 1.516187,1.923914 c 0.06798,0.0042 0.152798,0.0086 0.254764,0.01292 0.106216,0.0042 0.210675,0.0062 0.312643,0.0062 0.09772,0 0.193335,-0.002 0.286804,-0.0062 0.09347,-0.0042 0.176337,-0.0086 0.248564,-0.01292 l 2.389518,3.180167 v -2.236556 c 0,-0.208184 -0.01275,-0.367542 -0.03824,-0.478007 -0.02549,-0.110464 -0.08039,-0.191379 -0.165364,-0.242362 -0.08497,-0.05099 -0.218834,-0.08286 -0.401526,-0.0956 v -0.12764 c 0.08072,0.0042 0.184666,0.0086 0.312125,0.01292 0.131708,0.0042 0.252821,0.0062 0.363286,0.0062 0.106216,0 0.210158,-0.002 0.312125,-0.0062 0.106216,-0.0042 0.191553,-0.0086 0.255282,-0.01292 v 0.12764 c -0.135957,0.01275 -0.240416,0.04462 -0.312642,0.0956 -0.07223,0.04673 -0.120753,0.123226 -0.146245,0.229443 -0.02125,0.101967 -0.03204,0.248577 -0.03204,0.439767 v 3.639054 c -0.03824,-0.0042 -0.08091,-0.0062 -0.127641,-0.0062 -0.04249,0 -0.08906,0.002 -0.140043,0.0062 l -2.7342,-3.715536 v 2.753321 c 0,0.203934 0.01275,0.363294 0.03824,0.478007 0.02549,0.110464 0.08091,0.190862 0.165882,0.241845 0.08922,0.04673 0.223083,0.07861 0.401526,0.0956 v 0.127641 c -0.08073,-0.0085 -0.184667,-0.01292 -0.312126,-0.01292 -0.127458,-0.0042 -0.248572,-0.0062 -0.363285,-0.0062 -0.101968,0 -0.206427,0.002 -0.312643,0.0062 -0.101966,0 -0.186786,0.0044 -0.254764,0.01292 v -0.127641 c 0.140205,-0.01699 0.244147,-0.04887 0.312125,-0.0956 0.07223,-0.04673 0.119317,-0.123226 0.14056,-0.229443 0.02549,-0.106216 0.03824,-0.252826 0.03824,-0.439766 v -2.944007 c 0,-0.1572 -0.01275,-0.271939 -0.03824,-0.344165 -0.02124,-0.07648 -0.06833,-0.12747 -0.14056,-0.152962 -0.06798,-0.02974 -0.17192,-0.04691 -0.312125,-0.05116 z m 5.092195,3.671093 c 0.144453,0 0.263097,0.04267 0.356568,0.127641 0.09347,0.08497 0.140559,0.197242 0.140559,0.337447 0,0.140205 -0.04709,0.252992 -0.140559,0.337964 -0.09347,0.08497 -0.212115,0.127124 -0.356568,0.127124 -0.148702,0 -0.269815,-0.04215 -0.363285,-0.127124 -0.08922,-0.08497 -0.133842,-0.197759 -0.133842,-0.337964 0,-0.140205 0.04462,-0.252474 0.133842,-0.337447 0.09347,-0.08497 0.214583,-0.127641 0.363285,-0.127641 z" /> </g> </g> </svg> diff --git a/public/img/mastodon.svg b/public/img/mastodon.svg index 97548e0..cd70e4b 100644 --- a/public/img/mastodon.svg +++ b/public/img/mastodon.svg @@ -6,7 +6,7 @@ version="1.1" id="svg1" sodipodi:docname="mastodon.svg" - inkscape:version="1.3-alpha (0a19572, 2023-05-23)" + inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" @@ -23,9 +23,14 @@ inkscape:pagecheckerboard="0" inkscape:deskcolor="#d1d1d1" inkscape:zoom="0.13169643" - inkscape:cx="-1848.9492" - inkscape:cy="896" - inkscape:current-layer="svg1" /> + inkscape:cx="-1848.9491" + inkscape:cy="899.7966" + inkscape:current-layer="svg1" + inkscape:window-width="2560" + inkscape:window-height="1390" + inkscape:window-x="0" + inkscape:window-y="50" + inkscape:window-maximized="1" /> <path d="M1503.302 1111.386c-22.579 116.159-202.224 243.284-408.55 267.921-107.588 12.837-213.519 24.636-326.476 19.455-184.728-8.463-330.494-44.092-330.494-44.092 0 17.983 1.11 35.106 3.328 51.12 24.015 182.308 180.772 193.228 329.261 198.32 149.872 5.127 283.321-36.951 283.321-36.951l6.157 135.491s-104.827 56.293-291.574 66.646c-102.974 5.66-230.836-2.59-379.759-42.009C65.529 1641.797 10.219 1297.502 1.482 948.17-1.11 844.449.485 746.646.49 664.847.5 307.631 234.539 202.924 234.539 202.924c118.011-54.199 320.512-76.99 531.033-78.71h5.173c210.52 1.721 413.152 24.511 531.157 78.71 0 0 234.04 104.706 234.04 461.923 0 0 2.935 263.556-32.64 446.539zm-243.429-418.827c0-88.4-21.711-159.35-67.71-210.618-46.63-51.972-107.687-78.613-183.47-78.613-87.699 0-154.104 33.703-198.002 101.121L768 576l-42.683-71.55c-43.907-67.42-110.313-101.124-198.003-101.124-75.792 0-136.849 26.642-183.47 78.614-45.21 51.973-67.718 122.219-67.718 210.618v432.53h171.359V705.273c0-88.498 37.234-133.415 111.713-133.415 82.35 0 123.63 53.283 123.63 158.646v229.788h170.35V730.505c0-105.363 41.272-158.646 123.62-158.646 74.478 0 111.715 44.917 111.715 133.415v419.816h171.358V692.56z" id="path1" diff --git a/public/img/matrix-org.svg b/public/img/matrix-org.svg index 3a35d87..cecb1c9 100644 --- a/public/img/matrix-org.svg +++ b/public/img/matrix-org.svg @@ -6,7 +6,7 @@ version="1.1" id="svg1" sodipodi:docname="matrix-org.svg" - inkscape:version="1.3-alpha (0a19572, 2023-05-23)" + inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" @@ -23,9 +23,14 @@ inkscape:pagecheckerboard="0" inkscape:deskcolor="#d1d1d1" inkscape:zoom="0.13169643" - inkscape:cx="-1848.9492" - inkscape:cy="896" - inkscape:current-layer="svg1" /> + inkscape:cx="-1848.9491" + inkscape:cy="899.7966" + inkscape:current-layer="svg1" + inkscape:window-width="2560" + inkscape:window-height="1390" + inkscape:window-x="0" + inkscape:window-y="50" + inkscape:window-maximized="1" /> <path d="M40.467 163.152v1465.696H145.92V1664H0V128h145.92v35.152zm450.757 464.64v74.14h2.069c19.79-28.356 43.717-50.215 71.483-65.575 27.765-15.656 59.963-23.336 96-23.336 34.56 0 66.165 6.795 94.818 20.086 28.652 13.293 50.216 37.22 65.28 70.893 16.246-23.926 38.4-45.194 66.166-63.507 27.766-18.314 60.848-27.472 98.954-27.472 28.948 0 55.828 3.545 80.64 10.635 24.812 7.088 45.785 18.314 63.508 33.968 17.722 15.656 31.31 35.742 41.354 60.85 9.747 25.107 14.768 55.236 14.768 90.683v366.573h-150.35V865.28c0-18.314-.59-35.741-2.068-51.987-1.476-16.247-5.316-30.426-11.52-42.24-6.499-12.112-15.656-21.563-28.062-28.653-12.405-7.088-29.242-10.634-50.214-10.634-21.268 0-38.4 4.135-51.397 12.112-12.997 8.27-23.336 18.608-30.72 31.901-7.386 12.997-12.407 27.765-14.77 44.602-2.363 16.542-3.84 33.379-3.84 50.216v305.133H692.971v-307.2c0-16.247-.294-32.197-1.18-48.149-.591-15.95-3.84-30.424-9.157-44.011-5.317-13.293-14.178-24.223-26.585-32.197-12.406-7.976-30.425-12.112-54.646-12.112-7.088 0-16.542 1.478-28.062 4.726-11.52 3.25-23.04 9.157-33.968 18.02-10.93 8.86-20.383 21.563-28.063 38.103-7.68 16.543-11.52 38.4-11.52 65.28v317.834H349.44V627.792zm1004.309 1001.056V163.152H1390.08V128H1536v1536h-145.92v-35.152z" id="path1" diff --git a/public/img/peertube.svg b/public/img/peertube.svg index 2f55852..62034dd 100644 --- a/public/img/peertube.svg +++ b/public/img/peertube.svg @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - inkscape:version="1.3 (0e150ed6c4, 2023-07-21)" + inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)" sodipodi:docname="peertube.svg" id="svg895" version="1.1" @@ -31,15 +31,15 @@ <sodipodi:namedview inkscape:current-layer="Group" inkscape:window-maximized="1" - inkscape:window-y="30" + inkscape:window-y="50" inkscape:window-x="0" - inkscape:cy="54.247943" - inkscape:cx="17.316052" + inkscape:cy="54.315583" + inkscape:cx="17.383692" inkscape:zoom="7.3919854" showgrid="false" id="namedview897" - inkscape:window-height="1022" - inkscape:window-width="1920" + inkscape:window-height="1390" + inkscape:window-width="2560" inkscape:pageshadow="2" inkscape:pageopacity="0" guidetolerance="10" @@ -72,13 +72,13 @@ transform="rotate(90,19,75)" fill="#737373" id="Triangle-Copy" - style="fill:#faf5f5;fill-opacity:0.848211" /> + style="fill:#faf5f5;fill-opacity:1" /> <polygon points="57,31 82,69 32,69 " transform="rotate(90,57,50)" fill="#f1680d" id="Triangle-Copy-2" - style="fill:#faf5f5;fill-opacity:0.695179" /> + style="fill:#faf5f5;fill-opacity:1" /> </g> </g> </svg> diff --git a/public/img/pixelfed.svg b/public/img/pixelfed.svg index df82edc..6d7b069 100644 --- a/public/img/pixelfed.svg +++ b/public/img/pixelfed.svg @@ -6,7 +6,7 @@ version="1.1" id="svg1" sodipodi:docname="pixelfed.svg" - inkscape:version="1.3-alpha (0a19572, 2023-05-23)" + inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" @@ -22,10 +22,15 @@ inkscape:pageopacity="0.0" inkscape:pagecheckerboard="0" inkscape:deskcolor="#d1d1d1" - inkscape:zoom="0.13169643" - inkscape:cx="-1848.9492" - inkscape:cy="896" - inkscape:current-layer="svg1" /> + inkscape:zoom="0.093123439" + inkscape:cx="2485.9477" + inkscape:cy="230.87635" + inkscape:current-layer="svg1" + inkscape:window-width="2560" + inkscape:window-height="1390" + inkscape:window-x="0" + inkscape:window-y="50" + inkscape:window-maximized="1" /> <path d="M768 1664C343.845 1664 0 1320.155 0 896s343.845-768 768-768 768 343.845 768 768-343.845 768-768 768zm-60.97-600.33h140.887c132.72 0 240.312-104.74 240.312-233.944S980.638 595.782 847.917 595.782H644.576c-76.57 0-138.642 60.427-138.642 134.968v525.312z" fill-rule="evenodd"