Clean up css

This commit is contained in:
Raghavendra Kamath 2019-12-11 11:19:44 +05:30
parent c4e9a3e850
commit 4500667fca
Signed by: raghukamath
GPG Key ID: E48B3E545FEFD8BD
25 changed files with 299 additions and 982 deletions

View File

@ -43,7 +43,7 @@ disableKinds = ["taxonomyTerm"]
name = "contact"
identifier = "contact"
url = "/contact/"
weight = 3
weight = 4
[markup]
[markup.goldmark]

View File

@ -26,6 +26,7 @@ This was just a rough sketch to fine tune it I used [Krita](https://krita.org/en
<blockquote class="quote">
<b>Tip</b> - When you drag and drop an image into Krita (after version 3.0) gives you the option of inserting the image as a file layer. File layers in Krita are just links to the original image files, this comes in handy if you want to update the original image frequently, Any update to the original file will get automatically reflected in the krita document. Neat isn't it :)
</blockquote>
I used my **pack01_basic** brush from my [Brush Pack for Krita V0.2](https://raghukamath.com/journal/brush-pack-for-krita-v20). to create a finer detailed sketch in Krita. The major help here was the mirror symmetry tool in Krita. This sketch was done in almost half of the time it usually takes me to do it, as the other half of the image was completed by the symmetry tool.

View File

@ -7,9 +7,9 @@ description = "Once again I took part in the Krita sprint (convention). It was f
keywords = ["Krita sprint 2019", "Krita", "Sprint", "FOSS", "digital art software", "manual", "krita", "development", "free software"]
+++
<figure class="mh0 mt-md">
<figure class="figure">
<img src="/img/sprint-19/sprint_group.jpeg" alt="The Krita Team">
<figcaption class="italic text-center">The Krita team - Photo courtesy David Revoy/Krita Foundation - CC-BY</figcaption>
<figcaption class="fig-caption">The Krita team - Photo courtesy David Revoy/Krita Foundation - CC-BY</figcaption>
</figure>
Once again this year, I participated in Krita sprint held at an awesome historical town of [Deventer](https://en.wikipedia.org/wiki/Deventer). Thanks to [KDEeV](https://ev.kde.org/) and [Krita Foundation](https://krita.org/en/about/krita-foundation/) for sponsoring my stay and travel.
@ -71,9 +71,9 @@ We discussed some new features and some improvements on Friday. David left early
After trying photoshop after 4 years, I am of an impression that it has degraded in quality and usability compared to earlier versions. Maybe because Krita has spoiled me with its so many cool workflow optimizations.
<figure class="mh0">
<figure class="figure">
<img src="/img/sprint-19/testing_ps.jpg" alt="stress testing PS">
<figcaption class="italic text-center">Stress testing Photoshop's Magnetic Lasso tool - Photo courtesy Kuntal Majumder</figcaption>
<figcaption class="fig-caption">Stress testing Photoshop's Magnetic Lasso tool - Photo courtesy Kuntal Majumder</figcaption>
</figure>
We had some discussion about snapshots, compositions docker and session management feature in Krita. Dmitry already showed some improvements he made on the move tool performance. Scott was leaving early in the morning the next day so we said goodbye to him, it was great to meet him face to face.
@ -84,7 +84,7 @@ The sprint had already ended and people were starting to leave one by one. It wa
Thanks to Boud, Irina, and KDEeV for hosting us.
<figure class="mh0">
<figure class="figure">
<img src="/img/sprint-19/group.jpg" alt="Krita Team">
<figcaption class="italic text-center">Krita Team - clicked by Krzyś - Photo courtesy Krita Foundation</figcaption>
<figcaption class="fig-caption">Krita Team - clicked by Krzyś - Photo courtesy Krita Foundation</figcaption>
</figure>

View File

@ -31,5 +31,4 @@ All the code shared in this website is under [General Public License Version-3](
## Fonts
Fonts used in this website are -
[Libre Baskerville](https://fontlibrary.org/en/font/libre-baskerville) designed by Pablo Impallari and Rodrigo Fuenzalida and [Lato](http://www.lukaszdziedzic.eu/#Lato) designed by [Łukasz Dziedzic](http://www.lukaszdziedzic.eu). Both the fonts are licensed under [Open Font License](http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web).
Fonts used in this website is [Lato](http://www.lukaszdziedzic.eu/#Lato) designed by [Łukasz Dziedzic](http://www.lukaszdziedzic.eu), which is licensed under [Open Font License](http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web).

View File

@ -6,7 +6,7 @@ layout: static
## Some of my talks about working in creative field with FOSS tools
- [FlOSS in Art](https://raghukamath.com/talks/floss-in-art/) - ILUG - Mumbai, Maharashtra.
- [FLOSS in Art](https://raghukamath.com/talks/floss-in-art/) - ILUG - Mumbai, Maharashtra.
- [Commercial Art With Libre Software](https://raghukamath.com/talks/swatantra-17/) - Swatantra 2017 - Trivandrum, Kerala.
Please mail me at raghu at raghukamath dot com for enquiries regarding a talk of seminars.

View File

@ -1,3 +1,4 @@
mastodon = "raghukamath"
gitlab = "raghukamath"
youtube = "raghavendrakamath1"
twitter = "raghukamath"

View File

@ -0,0 +1,20 @@
@charset "utf-8";
/* font face */
@font-face {
font-family: "Lato";
src: url('../fonts/lato-regular-webfont.woff2') format('woff2'), url('../fonts/lato-regular-webfont.woff') format('woff');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Lato";
src: url('../fonts/lato-bold-webfont.woff2') format('woff2'), url('../fonts/lato-bold-webfont.woff') format('woff');
font-weight: 700;
font-style: normal;
font-display: swap;
}

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,9 @@
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{- partial "head.html" . -}}
<body class="m0auto">
<div class="wrapper">
{{- partial "header.html" . -}}
{{- block "main" . }}{{- end }}
{{- partial "footer.html" . -}}
</div>
<body>
{{- partial "header.html" . -}}
{{- block "main" . }}{{- end }}
{{- partial "footer.html" . -}}
</body>
</html>

View File

@ -1,5 +1,5 @@
{{ define "main" }}
<main class='{{ if eq .Section "works"}}grid-of-three{{else}}grid-of-two{{end}} mv-lg h-feed'>
<main class='{{ if eq .Section "works"}}grid-of-three{{else}}grid-of-two{{end}} content list single-page h-feed'>
<!-- ranges through each of the content files associated with a particular taxonomy term and renders the summary.html content view -->
{{ range .Pages }}
{{ if eq .Section "journal" }}
@ -11,7 +11,7 @@
<h2 class="p-name"><a class="u-url title-link" href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
{{- partial "meta-post.html" . -}}
</header>
<p class=" mt-xs mb0 p-summary">{{ .Description | truncate 140}}</br> <a class="link" href="{{ .RelPermalink }}">read More<span class="arrow"> &rarr;</span></a></p>
<p class="summary p-summary">{{ .Description | truncate 120}}</br> <a class="link" href="{{ .RelPermalink }}">Read More<span class="arrow"> &rarr;</span></a></p>
</article>
{{ else }}
<article class="work-post">

View File

@ -1,17 +1,18 @@
{{ define "main" }}
<main class="single-content mv-lg">
<article class="h-entry">
<header class="content-text-width m0auto">
<main class="single-content content">
<article class="h-entry content-max-width">
<header class="post-header">
<h1 class="p-name">{{ .Title }}</h1>
{{- partial "meta-post.html" . -}}
</header>
<div class="text single-post e-content">
<div class="post-text e-content">
{{ .Content }}
</div>
</article>
{{- partial "next-prev-in-section.html" . -}}
{{- partial "related-content.html" . -}}
<hr class="mv-lg divider">
{{- partial "comment.html" . -}}
{{ if eq .Section "journal" }}
{{- partial "comment.html" . -}}
{{ end }}
</main>
{{ end }}

View File

@ -1,15 +1,15 @@
{{ define "main" }}
<div class="mv-xxl text text-center">
<p class="content-text-width h-card">Hi, I am <span class="p-name">Raghavendra Kamath</span> (raghukamath), an Illustrator from <span class="p-locality">Mumbai</span> <span class="p-country">India</span>.
<div class="intro-text">
<p class="content-max-width h-card">Hi, I am <span class="p-name">Raghavendra Kamath</span> (raghukamath), an Illustrator from <span class="p-locality">Mumbai</span> <span class="p-country">India</span>.
I use only Free (libre) and Open Source tools to create illustrations, comic book pages, book covers and visual for ads &hellip;
<a href="{{ .Site.BaseURL }}about" class="mt-lg link u-url u-uid">Read more about me <span class="arrow">&rarr;</span></a>
<a href="{{ .Site.BaseURL }}about" class="link u-url u-uid">Read more about me <span class="arrow">&rarr;</span></a>
</p>
</div>
<hr class="mv-xl divider">
<hr class="divider">
{{.Content}}
<section>
<section class="content">
<h2>Portfolio</h2>
<div class="grid-of-three mv-lg">
<div class=" list grid-of-three subdiv">
{{ range first 9 (where .Site.RegularPages "Section" "works") }}
<div class="work-post">
<a class="thumb" href="{{ .RelPermalink }}">
@ -20,10 +20,10 @@
</div>
<a href="{{ .Site.BaseURL }}/works" class="link">See more of my work<span class="arrow">&rarr;</span></a>
</section>
<hr class="divider mv-xl">
<hr class="divider">
<section class="content">
<h2>Blogroll</h2>
<div class="grid-of-two mv-lg h-feed">
<div class="grid-of-two list subdiv h-feed">
{{ range where .Site.RegularPages "Section" "journal" }}
<article class="post h-entry">
<header>
@ -33,7 +33,7 @@
<h2 class="p-name"><a class=" u-url title-link" href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
{{- partial "meta-post.html" . -}}
</header>
<p class="mt-xs mb0 p-summary">{{ .Description | truncate 140 }}</br> <a class="link" href="{{ .RelPermalink }}">read more<span class="arrow"> &rarr;</span></a></p>
<p class="summary p-summary">{{ .Description | truncate 120 }}</p> <a class="link btn" href="{{ .RelPermalink }}">Read More<span class="arrow"> &rarr;</span></a>
</article>
{{ end }}
</div>

View File

@ -1,9 +1,8 @@
{{ define "main" }}
<div class="single-post text text-justify">
{{ if eq .Title "about"}}
<div class='single-page content {{ if eq .Title "about" }} about content-max-width {{end }}'>
{{ if eq .Title "about" }}
<div class="h-card">
<div class="mv-xl"><img class="dp u-photo" src="{{.Site.BaseURL}}img/dp.jpg" alt="
profile picture of Raghavendra Kamath"></div>
<div class="dp"><img class="u-photo" src="{{.Site.BaseURL}}img/dp.jpg" alt="profile picture of Raghavendra Kamath"></div>
<p class="drop-cap p-note">Hello my name is <span class="p-name">Raghavendra Kamath</span> AKA
<span class="p-nickname">'raghukamath'</span>. I am an illustrator &amp; designer living in a suburb of
<span class="p-locality">Mumbai</span> called Badlapur in <span class="p-country"> India</span>.
@ -13,8 +12,8 @@
I am a graduate from Sir J. J. Institute of Applied art. I enjoy creating realistic as well as graphic
illustrations in various medium both traditional and digital.</p><p>My areas of interest are
providing illustrations for advertising, editorials, picture books,
storyboards, and comic art. Currently I am in the process of setting up my own
<a class="link" target="_blank" href="https://emblik.studio">studio</a>
storyboards, and comic art. Currently I am in the process of setting up my own
<a class="link" target="_blank" href="https://emblik.studio">studio</a>.
</p>
<p>I am also a supporter of open source movement for the past {{ sub now.Year 2014 }} years, my workflow involves use of
opensource tools which provide robust flexibility and great output. In my free time I enjoy reading about new opensource projects and if possible I often passionately try to help them.</p>

View File

@ -1,11 +1,5 @@
<div class="comments">
{{ if eq .Section "works"}}
<p>Let me know what you think about this artwork by mailing me your feedback on
<a class="link" rel="author" href="mailto:raghu@raghukamath.com?Subject={{ .Title | urlize }}">raghu at <span class="p-author h-card">raghukamath</span> dot com <span class="arrow">&rarr;</span></a>
</p>
{{ else }}
<h2 class="mb-md">Comments</h2>
<h2>Comments</h2>
<div id="commento"></div>
<script src="https://commento.emblik.studio/js/commento.js"></script>
{{ end }}
</div>

View File

@ -1,23 +1,23 @@
<hr class="mv-xl divider">
<hr class="divider">
<footer >
<section class="tag-list mv-md">
<section class="content">
<h3>Tag List</h3>
<p class="m0">{{ range $name, $taxonomy := .Site.Taxonomies.tags }}
<p>{{ range $name, $taxonomy := .Site.Taxonomies.tags }}
{{ with $.Site.GetPage (printf "/tags/%s" $name) }}
<a class="taglink" href="{{ .Permalink }}">#{{ $name }}</a>
{{ end }}
{{ end }}
</p>
</section>
<section class="mv-md">
<section class="content">
<h3>Quick Links</h3>
<p class="m0">
<p>
<a target="_blank" href="https://www.paypal.me/raghukamath">Donate</a> &ndash;
<a href="https://box.raghukamath.com/cloud/index.php/s/2dbZ8tyaFcPqABK">Source Files</a> &ndash;
<a href="{{ .Site.BaseURL }}tutorials">Tutorials</a> &ndash;
<a href="{{ .Site.BaseURL }}talks">Talks</a> &ndash;
<a rel="me" target="_blank" href="http://mastodon.art/@{{ .Site.Data.usernames.mastodon }}">Mastodon</a> &ndash;
<a rel="me" target="_blank" href="https://dribbble.com/raghukamath">Dribble</a> &ndash;
<a rel="me" target="_blank" href="https://dribbble.com/raghukamath">Dribbble</a> &ndash;
<a rel="me" target="_blank" href="https://raghukamath.redbubble.com">Prints on Redbubble</a> &ndash;
<a rel="me" target="_blank" href="https://gitlab.com/{{ .Site.Data.usernames.gitlab }}">Gitlab</a> &ndash;
<!--<a href="{{ .Site.BaseURL }}/Shop">Shop</a>,-->
@ -27,9 +27,9 @@
<a href='{{ with .OutputFormats.Get "rss" -}}{{ .RelPermalink }}{{ end }}'>RSS Feed</a> {{ end }}
</p>
</section>
<section class="mv-md">
<section class="content">
<h3>Privacy Policy, License and Copyright</h3>
<p class="m0"> All contents © copyright 2009 -
<p> All contents © copyright 2009 -
{{ now.Year }} <a class="p-author h-card" rel="author" href="{{ .Site.BaseURL}}">Raghavendra Kamath</a> and
respective brands unless otherwise
noted. All rights reserved. <a class="link" href="{{ .Site.BaseURL }}license">Read more</a> about the licenses.
@ -38,4 +38,6 @@
</section>
<p class="to-top"><a id="js-top"><b>&uarr; go to top &uarr;</b></a></p>
</footer>
<script src="{{ .Site.BaseURL}}js/main.js"></script>
{{ with resources.Get "js/main.js" | minify }}
<script>{{ .Content | safeJS }}</script>
{{ end }}

View File

@ -33,8 +33,11 @@
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ .Site.Params.description }}{{ end }}" />
<meta name="keywords" content="{{with .Keywords}}{{ delimit . ", "}}{{ else }}{{ .Site.Params.keywords }}{{ end }}" />
<meta name="author" content="{{ .Site.Params.author }}"/>
{{ $css := resources.Get "css/main.css" }}
{{ $style := $css | resources.Minify }}
{{ with resources.Get "css/main.css" | minify }}
<style>{{ .Content | safeCSS }}</style>
{{ end }}
{{ $fonts := resources.Get "css/fonts.css" }}
{{ $style := $fonts | resources.Minify | resources.Fingerprint }}
<link rel="stylesheet" href="{{ $style.Permalink }}">
{{ if ne .Title "404 Page not found" }}
<link rel="canonical" href="{{ .Permalink }}" />

View File

@ -1,15 +1,13 @@
<header class="site-header mb-xl flex flex-wrap space-between align-item-center">
<a class="logo gray" href="{{ .Site.BaseURL }}"><img class="mr-sm" src="{{ .Site.BaseURL }}/img/logo.svg" alt="raghukamath"/>raghukamath</a>
<div id="js-button" class="hamberger">
&#9776;
</div>
<nav id="js-dropdown" class="nav hide">
<ul class="list-none mv0 menu-list">
{{ range .Site.Menus.main }}
<li class='menu-item'>
<a {{if eq .Name "contact"}}rel="me"{{end}} href="{{ .URL }}" class='menu-link gray {{ if or ($.IsMenuCurrent "main" .) ($.HasMenuCurrent "main" .) }} active {{ end }} '>{{ .Name | upper }}</a>
</li>
{{ end }}
</ul>
</nav>
<header class="site-header">
<a class="logo" href="{{ .Site.BaseURL }}">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
<path d="M 1.5784245,1.29e-5 C 0.7043502,1.29e-5 5.62e-5,0.6304957 5.53e-5,1.411756 v 5.2368184 c -0.00722,0.734249 0.699614,0.8305 0.8965527,0.7296 C 1.8825073,7.1282664 2.8802978,6.6913154 3.8599187,6.0498173 5.6943191,4.8485862 7.1384599,3.0174608 7.9364507,0.9967327 8.0722667,0.7990405 8.0132097,-0.0036492 7.2839899,1.29e-5 Z M 14.278415,0.4991697 c -0.902174,3.3100647 -3.017011,6.4521807 -6.1258333,8.7955337 -0.205474,0.129347 -0.555404,0.7420766 0.05888,1.1680776 3.5232983,1.979652 6.5489023,4.753277 8.7268293,7.869792 0.318455,0.455606 0.737799,0.335579 0.895162,0.286448 0.542041,-0.221794 0.916598,-0.708904 0.916598,-1.278922 V 1.411756 C 18.750052,0.6304957 18.047588,1.29e-5 17.173513,1.29e-5 h -2.23938 c -0.495735,0.022885 -0.64281,0.420673 -0.655722,0.4991568 z M 5.53e-5,13.595595 v 3.744504 c 0,0.781261 0.7042949,1.409913 1.5783692,1.409913 H 9.4629447 C 10.242846,18.700784 10.276682,17.872375 9.9543667,17.560986 8.7135277,16.312972 7.2834865,15.243361 5.7678772,14.447033 4.0553405,13.54724 2.3478326,13.034491 0.7538165,12.90386 0.6112358,12.886553 0.0403387,12.9628 5.53e-5,13.595595 Z"/>
</svg>raghukamath</a>
<div id="js-button" class="hamberger">
&#9776;
</div>
<nav id="js-dropdown" class="nav hide">
<ul class="menu-list">{{ range .Site.Menus.main }}<li class='menu-item'><a href="{{ .URL }}" class='nav-link {{ if or ($.Page.IsMenuCurrent "main" .) ($.Page.HasMenuCurrent "main" .) }} active {{ end }} '>{{ .Name | upper }}</a></li>{{ end }}
</ul>
</nav>
</header>

View File

@ -1,10 +1,10 @@
{{ if or .PrevInSection .NextInSection }}
<div class="mv-lg space-between pv-base italic flex bordertb-dashed">
<div class="post-nav">
{{if .PrevInSection}}
<a href="{{ .PrevInSection.Permalink }}" class="" title="{{ .PrevInSection.Title }}">&larr; Prev.</a>
<a class="nav-link" href="{{ .PrevInSection.Permalink }}" class="" title="{{ .PrevInSection.Title }}">&larr; Prev.</a>
{{end}}
{{if .NextInSection}}
<a href="{{ .NextInSection.Permalink }}" class="" title="{{ .NextInSection.Title }} ">Next &rarr;</a>
<a class="nav-link" href="{{ .NextInSection.Permalink }}" class="" title="{{ .NextInSection.Title }} ">Next &rarr;</a>
{{end}}
</div>
{{ end }}

View File

@ -1,7 +1,7 @@
<section class="related mv-lg">{{ $related := .Site.RegularPages.Related . | first 4 }}
<section class="related">{{ $related := .Site.RegularPages.Related . | first 4 }}
{{ with $related }}
<h2 class="mb-sm">Related Posts</h2>
<ul class="m0">
<h2>Related Posts</h2>
<ul>
{{ range . }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}

View File

@ -1,6 +1,6 @@
{{ define "main" }}
<h2 class="mb-md full-width">Posts tagged as {{ .Title }}</h2>
<main class="grid-of-two mb-xl h-entry">
<h2 class="tag-title">Posts tagged as {{ .Title }}</h2>
<main class="grid-of-two content list tag-list h-entry">
{{ range .Pages }}
<article class="tag post h-entry">
<a class="thumb" href="{{ .RelPermalink }}">
@ -10,7 +10,7 @@
<h2 class="p-name"><a class="title-link" href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
{{- partial "meta-post.html" . -}}
</header>
<p class="mt-xs mb0 p-summary">{{ .Description | truncate 140}} </br> <a class="link" href="{{ .RelPermalink }}">Read More<span class="arrow"> &rarr;</span></a></p>
<p class="summary p-summary">{{ .Description | truncate 120}} </br> <a class="link" href="{{ .RelPermalink }}">Read More<span class="arrow"> &rarr;</span></a></p>
</article>
{{ end }}
</main>

BIN
themes/bombil/static/favicon.ico Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,86 +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"
id="svg8"
version="1.1"
viewBox="0 0 5.2916665 5.2916668"
height="20"
width="20"
sodipodi:docname="hamberger.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1024"
id="namedview9"
showgrid="false"
inkscape:zoom="11.8"
inkscape:cx="10"
inkscape:cy="10"
inkscape:window-x="0"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<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:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-291.70832)"
id="layer1">
<path
id="path10"
d="m 0.13131,292.23749 a 0.13131,0.13131 0 1 0 0,0.26262 h 5.0185424 a 0.13131,0.13131 0 1 0 0,-0.26262 z"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26157951;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
id="path817"
d="m 0.13206402,294.22336 a 0.13130221,0.13130221 0 1 0 0,0.2626 H 5.1506064 a 0.13130221,0.13130221 0 1 0 0,-0.2626 z"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26157951;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
id="path819"
d="m 0.11538479,296.20967 a 0.13080284,0.13080284 0 0 0 0.0135167,0.26068 H 5.1474438 a 0.13080284,0.13080284 0 1 0 0,-0.26068 H 0.12890146 a 0.13080284,0.13080284 0 0 0 -0.0135167,0 z"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26157951;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.5 KiB

View File

@ -1,65 +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="5.291667mm"
height="5.2916679mm"
viewBox="0 0 18.750001 18.750004"
id="svg4143"
version="1.1"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="logo.svg">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1024"
id="namedview7"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="8.3438608"
inkscape:cx="36.34793"
inkscape:cy="-6.2191081"
inkscape:window-x="0"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs4145" />
<metadata
id="metadata4148">
<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
id="layer1"
transform="matrix(1,0,0.22033898,0.91525424,-825.33339,-397.36428)">
<path
style="fill:#444444;fill-opacity:1;stroke-width:0.99999994"
d="m 726.45548,448.75628 c 1.01143,-4.55849 13.47344,5.77621 8.14776,5.85337 -9.47695,0.1373 -9.47695,0.1373 -8.14776,-5.85337 z m 18.41163,1.53301 c -1.26089,5.72251 -6.00472,-0.55289 -7.80852,-3.02767 -2.72344,-3.73654 5.73947,-5.79502 8.07447,-12.17904 0.44432,-1.2148 3.4438,-1.62985 2.75751,1.48485 z m -17.03218,-7.79359 c 1.84117,-8.39788 1.84117,-8.39788 9.9914,-8.32701 5.38557,0.0469 -10.80828,12.05295 -9.9914,8.32701 z"
id="path4327"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssssss" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB