Added logo & frontend stuff

This commit is contained in:
kolaente 2018-10-13 20:13:37 +02:00
parent 6528f52a92
commit 7412996015
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
15 changed files with 219 additions and 164 deletions

View File

@ -1,11 +0,0 @@
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
{{- partial "header.html" . -}}
<div id="content">
{{- block "main" . }}{{- end }}
</div>
{{- partial "footer.html" . -}}
</body>
</html>

View File

@ -1,12 +0,0 @@
{{ partial "header.html" . }}
{{ partial "navbar.html" . }}
<div class="container is-centered page">
<div class=" content">
{{ .Content }}
{{ partial "disqus.html" . }}
</div>
</div>
{{ partial "footer.html" . }}

View File

@ -1,49 +0,0 @@
<footer class="footer">
<div class="container">
<div class="content has-text-centered">
<p>
Copyright &copy; {{ now.Year }} <a href="{{ .Site.Params.website }}">{{ .Site.Params.author }}</a>. All rights reserved. Made with <i class="fa fa-heart" aria-hidden="true"></i> and <a href="https://gohugo.io">Hugo</a>. Sponsored by <a href="http://inblockchain.com">INBlockchain</a>.
</p>
<p>
{{ $lang := .Lang }}{{ $base := .Site.BaseURL }}{{ range .Site.Languages }}
<a class="nav-link" href="{{ $base }}{{ .Lang }}">{{ .LanguageName }}</a>
{{ end }}
</p>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function () {
// Get all "navbar-burger" elements
var $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Check if there are any navbar burgers
if ($navbarBurgers.length > 0) {
// Add a click event on each of them
$navbarBurgers.forEach(function ($el) {
$el.addEventListener('click', function () {
// Get the target from the "data-target" attribute
var target = $el.dataset.target;
var $target = document.getElementById(target);
// Toggle the class on both the "navbar-burger" and the "navbar-menu"
$el.classList.toggle('is-active');
$target.classList.toggle('is-active');
document.getElementById('navbar-background').classList.toggle('is-active');
});
});
}
});
</script>
</body>
</html>

View File

@ -1,35 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta property="og:title" content="{{ if not .IsHome }}{{ .Title }} - {{ end }}{{ .Site.Title }}"></meta>
{{ if .IsPage }}
<meta property="og:description" content="{{ if .IsPage }}{{ .Description }}{{end}}" />
{{ end }}
<meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}"></meta>
<meta property="og:url" content="{{ .Permalink }}"></meta>
<meta property="og:image" content="https://docs.gitea.io/images/gitea.png"></meta>
{{ .Hugo.Generator }}
<title>{{ if and (not .IsHome) .Title }}{{ .Title }} - {{ end }}{{ .Site.Title }}</title>
{{ with .Params.goimport }}<meta name="go-import" content="{{ . }}">{{ end }}
{{ with .Params.gosource }}<meta name="go-source" content="{{ . }}">{{ end }}
{{ with .RSSLink }}
<link href="{{ . }}" rel="alternate" type="application/rss+xml" title="{{ $.Site.Title }}" />
<link href="{{ . }}" rel="feed" type="application/rss+xml" title="{{ $.Site.Title }}" />
{{ end }}
<link rel="canonical" href="{{ .Permalink }}">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css" />
<link rel="stylesheet" href="{{ .Site.BaseURL }}styles/main.css">
<link rel="shortcut icon" type="image/x-icon" href="{{ .Site.BaseURL }}images/favicon.png">
<link rel="icon" type="image/x-icon" href="{{ .Site.BaseURL }}images/favicon.png">
</head>
<body>

View File

@ -1,2 +0,0 @@
{{ partial "pages.html" . }}
{{ partial "toc.html" . }}

View File

@ -1,20 +0,0 @@
<nav class="navbar">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="{{ .Site.BaseURL }}">
<img src="{{ .Site.BaseURL }}images/gitea.png" alt="{{ .Site.Title }}">
</a>
<span class="navbar-burger burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
<span></span>
<span></span>
<span></span>
</span>
</div>
<div class="navbar-menu" id="navMenu">
<div class="navbar-end">
{{ partial "toplinks.html" . }}
</div>
</div>
<div class="navbar-background" id="navbar-background"></div>
</div>
</nav>

View File

@ -1,28 +0,0 @@
<aside class="menu">
{{ $currentNode := . }}{{ range .Site.Menus.sidebar }}
{{ if .HasChildren }}
<p class="menu-label">
{{ .Pre }}
{{ .Name }}
</p>
<ul class="menu-list">
{{ range .Children }}
<li>
<a href="{{ .URL | relLangURL }}" {{ if $currentNode.IsMenuCurrent "sidebar" . }}class="is-active"{{ end }}>
{{ .Pre }}
{{ .Name }}
</a>
</li>
{{ end }}
</ul>
{{ else }}
<li>
<a href="{{ .URL | relLangURL }}">
{{ .Pre }}
{{ .Name }}
</a>
</li>
{{ end }}
{{ end }}
</ul>
</aside>

View File

@ -1,7 +0,0 @@
<span class="navbar-item logo"><img src="{{ .Site.BaseURL }}images/gitea.png" alt="{{ .Site.Title }}"></span>
{{ $currentNode := . }}{{ range .Site.Menus.page }}
<a class="navbar-item" href="{{ .URL }}">
<i class="fa fa-{{ .Pre }}"></i>&nbsp;
{{ .Name }}
</a>
{{ end }}

4
src/themes/vikunja/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
/node_modules/
/dist/
/static/styles/
.yarn-cache

View File

@ -0,0 +1,44 @@
var gulp = require('gulp');
var sass = require('gulp-sass');
var sourcemaps = require('gulp-sourcemaps');
var tar = require('gulp-tar-path');
var gzip = require('gulp-gzip');
var clean = require('gulp-clean');
var sources = [
'archetypes',
'i18n',
'layouts',
'static',
'DCO',
'LICENSE',
'README.md',
'theme.toml'
];
gulp.task('default', ['build']);
gulp.task('build', ['sass']);
gulp.task('release', function () {
return gulp.src(sources)
.pipe(tar('master.tar'))
.pipe(gzip())
.pipe(gulp.dest('dist'))
});
gulp.task('sass', function () {
return gulp.src('./src/main.scss')
.pipe(sourcemaps.init())
.pipe(sass().on('error', sass.logError))
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest('./static/styles'));
});
gulp.task('clean', function () {
return gulp.src(['dist', 'static/styles'])
.pipe(clean());
});
gulp.task('watch', function () {
return gulp.watch('./src/*.scss', ['sass']);
});

View File

@ -0,0 +1,28 @@
{
"name": "vikunja-theme",
"version": "0.1.0",
"description": "A Hugo theme that gets used within all of our websites.",
"license": "GPLv3",
"author": {
"name": "The Vikunja authors",
"email": "team@vikunja.io"
},
"scripts": {
"clean": "gulp clean",
"build": "gulp build",
"release": "gulp release",
"watch": "gulp watch"
},
"dependencies": {
"bulma": "^0.7.1",
"bulmaswatch": "^0.6.2"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-gzip": "^1.4.0",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^1.9.1",
"gulp-tar-path": "^1.0.1"
}
}

View File

@ -0,0 +1,143 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg2"
xml:space="preserve"
width="872.58948"
height="256.75024"
viewBox="0 0 872.58947 256.75024"
sodipodi:docname="logo-full.svg"
inkscape:version="0.92.2 2405546, 2018-03-11"><metadata
id="metadata8"><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><defs
id="defs6" /><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="1025"
id="namedview4"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.99978818"
inkscape:cx="489.93049"
inkscape:cy="94.913088"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="text831" /><g
id="g10"
inkscape:groupmode="layer"
inkscape:label="ink_ext_XXXXXX"
transform="matrix(1.3333333,0,0,-1.3333333,-88.274885,376.11138)"><g
id="g12"
transform="matrix(0.1,0,0,0.1,9.5479652,-4.2435374)"><path
d="m 2268.2083,2512.3328 c -15.8841,19.573 -32.5119,38.571 -49.9493,56.8765 -180.6013,189.6241 -426.2447,294.0615 -691.6737,294.0615 -256.4319,0 -497.5071,-99.8619 -678.82647,-281.1776 -22.36452,-22.3682 -43.48352,-45.6558 -63.33501,-69.7604 C 643.33683,2341.0509 566.582,2128.0622 566.582,1903.2667 c 0,-256.4209 99.86117,-497.4961 281.17683,-678.8228 C 1029.0782,1043.1282 1270.1534,943.27 1526.5853,943.27 c 256.4282,0 497.5035,99.8582 678.8265,281.1739 181.3193,181.3267 281.1702,422.4019 281.1702,678.8228 0,219.209 -78.8601,437.2237 -218.3737,609.0661"
style="fill:#455486;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path44"
inkscape:connector-curvature="0" /><path
d="m 1823.7313,1648.8698 c 35.688,104.4952 94.6307,136.4873 101.9573,297.738 2.5753,56.6671 -14.6606,236.6586 -14.6606,236.6586 0,0 28.0134,72.1687 -25.8227,152.5624 -83.4759,124.6516 -255.3988,133.1267 -345.6885,133.1267 -90.2897,0 -260.2051,-8.4751 -343.6847,-133.1267 -53.8397,-80.3937 -25.8263,-152.5624 -25.8263,-152.5624 0,0 -9.5356,-92.5713 -16.7523,-174.2188 -1.6998,-19.1599 0.1575,-94.9503 2.4544,-113.2609 4.1285,-32.8119 14.4811,-65.0503 25.808,-96.432 14.3419,-39.7354 36.82,-80.0554 53.9826,-120.824 51.7992,-123.0816 8.4513,-275.5263 11.0998,-408.2522 2.2383,-94.2112 -20.0126,-189.7791 -28.7313,-281.90926 98.1291,-33.33811 202.0866,-50.72543 308.7183,-50.72543 119.8343,0 236.3057,21.89915 344.9009,63.78919 -20.3937,115.3493 -44.0916,224.7568 -47.7476,266.4997 -10.6456,126.1959 -41.3039,260.0395 -0.01,380.9371"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36700612"
id="path46"
inkscape:connector-curvature="0" /><path
d="m 1162.8843,2383.8604 c 1.1503,-18.7305 2.9966,-37.93 8.2718,-56.1586 1.6558,-5.6818 4.1029,-19.683 11.4149,-21.7637 9.0923,-2.59 25.9106,8.2571 32.2884,12.9571 12.3563,9.096 23.9251,18.4594 36.2851,27.6507 7.8835,5.8613 16.4922,10.4697 24.2108,16.4959 8.4,6.5463 14.7192,14.4737 21.7088,22.1777 8.4843,9.3597 14.8474,19.0492 21.3718,29.497 5.103,8.1545 37.0691,13.4626 42.1867,21.031 5.5866,8.2755 0.9158,18.5108 0.9158,28.6984 0,74.1638 4.4546,147.5656 6.1874,220.2897 1.7877,49.887 21.3791,109.1264 -53.4404,85.7435 -160.3139,-49.887 -158.5262,-271.2573 -151.4011,-386.6187"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path48"
inkscape:connector-curvature="0" /><path
d="m 1869.1087,2279.7014 c -1.6118,1.7511 -4.1945,3.2384 -6.2606,4.7696 -8.9788,6.649 -17.4447,13.6056 -25.156,21.4817 -9.411,9.6125 -19.192,18.9577 -28.1635,28.9292 -7.8908,8.7626 -17.3128,16.6021 -25.0058,25.5736 -5.1286,5.9602 -10.0814,12.305 -14.6093,18.562 -2.3115,3.1761 -3.5204,6.9969 -5.3374,10.3965 -2.7072,5.0114 -39.8825,10.118 -36.1899,15.0049 6.3009,8.3304 20.3277,15.3969 23.7017,24.9398 17.2432,48.6671 24.7713,244.5261 26.852,294.512 5.3521,127.8313 117.5704,-6.2386 137.1691,-57.6825 57.0085,-149.6573 23.1448,-258.78 -46.3152,-386.615"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path50"
inkscape:connector-curvature="0" /><path
d="m 1716.4731,1787.8614 c -0.081,73.8047 -9.2535,103.6644 -50.4071,139.7517 -25.7421,22.566 -55.8363,31.1748 -103.7414,29.9915 -47.9015,1.1833 -82.4245,-13.3784 -107.3167,-39.223 -37.549,-38.9923 -47.4363,-62.0529 -47.5425,-135.8577 -0.059,-39.8934 42.956,-128.1646 55.7556,-148.5363 21.2436,-35.9298 60.5619,-48.8503 99.1036,-46.1541 38.5454,-2.6962 77.8674,10.2243 99.0963,46.1541 12.8106,20.3717 55.1072,106.9541 55.0522,153.8738"
style="fill:#f1e6d3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path52"
inkscape:connector-curvature="0" /><path
d="m 1226.604,2316.0818 c -9.6162,86.0878 -38.582,239.9763 61.4887,331.2404 11.0375,10.0741 14.0012,-24.1999 15.8475,-38.0655 2.5386,-19.0383 -0.051,-73.4165 0.337,-92.5829 0.7143,-36.0873 8.2754,-54.9644 4.7513,-71.4603 -9.6272,-45.0917 -17.3531,-42.183 -26.559,-69.6029 -18.258,-54.3782 -53.2353,-83.0656 -55.8655,-59.5288"
style="fill:#f1d7d4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path54"
inkscape:connector-curvature="0" /><path
d="m 1851.7446,2333.0905 c 10.2426,-18.3312 36.9958,80.2559 45.3811,123.0727 7.8945,40.3074 17.9246,93.8687 4.059,133.9124 -7.4365,21.4816 -53.0778,84.5675 -58.4628,62.8917 -2.0991,-8.4183 -3.1834,-71.0975 -8.345,-101.0891 -6.3889,-37.1093 -17.91,-73.8047 -17.9796,-111.5442 -0.1502,-84.5676 25.3355,-88.055 35.3473,-107.2435"
style="fill:#f1d7d4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path56"
inkscape:connector-curvature="0" /><path
d="m 1522.0135,1319.745 c -2.1687,-6.583 -18.595,-11.4039 -24.764,-13.3931 -14.9097,-4.8172 -28.1452,6.9383 -36.4756,16.8439 -11.5834,13.7301 -11.2757,35.6294 -16.1259,51.6417 -2.9343,9.6822 -19.5328,10.9973 -24.5185,2.0405 -16.6278,-29.9 -81.1607,26.3649 -66.1631,45.0954 9.8872,12.3527 -13.7814,23.262 -23.5405,11.0778 -28.9475,-36.1605 48.9199,-103.4959 93.5793,-85.2452 1.9892,-9.0338 4.0736,-18.0565 7.9091,-26.636 7.5245,-16.8512 23.9801,-27.7386 41.0108,-36.8896 23.1961,-12.4369 68.2585,9.4074 75.1419,30.2553 4.7916,14.5031 -21.2802,19.6354 -26.0535,5.2093"
style="fill:#faeee0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path58"
inkscape:connector-curvature="0" /><path
d="m 1727.6279,1538.2286 c 2.3958,-10.0448 2.7731,-44.0733 -15.9354,-25.4563 -7.5904,7.5537 -22.6649,3.0954 -23.2803,-7.008 -1.4471,-23.3866 -24.8996,-23.9031 -45.1357,-16.8329 -16.0563,5.6012 -24.5332,-16.5875 -8.6051,-22.1447 29.7131,-10.3672 61.9612,-4.6231 74.7755,17.8367 10.0814,-4.744 21.4853,-6.0372 30.629,2.5679 15.9683,15.0416 18.3751,36.2265 13.7301,55.708 -3.5278,14.7632 -29.6985,10.0961 -26.1781,-4.6707"
style="fill:#faeee0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path60"
inkscape:connector-curvature="0" /><path
d="m 1775.0422,1049.246 c -7.0043,-14.3163 -19.8552,-13.4224 -33.6366,-7.4109 -10.107,4.3996 -22.6063,-2.8757 -19.5584,-13.1073 6.1361,-20.5219 -19.7855,-26.5151 -37.3145,-19.1958 -15.4262,6.4438 -28.8339,-13.79604 -13.2429,-20.31307 31.5815,-13.1806 71.7277,-1.64849 77.5524,26.13407 20.313,-3.22 39.7103,2.4837 49.3961,22.3096 6.7038,13.6825 -16.4043,25.471 -23.1961,11.5834"
style="fill:#faeee0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path62"
inkscape:connector-curvature="0" /><path
d="m 1569.7648,2153.2622 c -3.253,-20.1812 -41.0951,3.3189 -50.4915,9.6894 -8.2717,5.5976 -18.9722,2.198 -19.9833,-7.2387 -1.3518,-12.7153 -18.4814,-9.0227 -26.3099,-7.4255 -14.8071,3.0112 -27.365,12.2391 -27.7167,26.1048 -0.3443,13.4736 8.2059,27.6213 12.6641,40.2708 2.8537,8.0776 -8.7223,16.9648 -17.1846,11.5614 -15.2394,-9.7298 -88.7144,-18.4814 -59.4519,13.5469 9.3231,10.2023 -7.1325,24.797 -16.5545,14.4811 -13.5176,-14.7998 -22.6612,-48.7001 6.583,-55.8765 15.4372,-3.7842 37.7761,-3.5937 56.8143,0.7473 -7.9494,-25.4784 -9.6162,-48.799 23.1558,-65.1703 22.1447,-11.0669 52.5575,-10.99 65.4451,6.1067 27.1158,-14.5837 69.7091,-28.7314 75.5998,7.7626 2.088,12.9058 -20.4633,18.4777 -22.5697,5.44"
style="fill:#faeee0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path64"
inkscape:connector-curvature="0" /><path
d="m 1443.0252,1685.5707 c 39.3659,-3.3299 78.7465,-12.2721 118.4788,-10.8361 25.3978,0.9232 51.693,4.4803 76.7501,8.1949 18.203,2.6962 40.5199,5.8796 52.6967,19.3752 1.143,-45.0184 -92.5133,-59.1075 -128.8387,-60.0234 -42.1427,-1.066 -89.5094,17.2213 -119.0869,43.2894"
style="fill:#494949;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path66"
inkscape:connector-curvature="0" /><path
d="m 1549.4481,1779.4907 c -4.5023,-28.8962 -5.4327,-58.199 -2.7219,-87.2674 0.718,-7.5977 -1.3078,-25.7091 8.7956,-29.5227 8.1912,-3.0955 18.3166,2.7219 19.6537,10.1108 2.2603,12.4553 -3.0405,28.1635 -3.4911,40.9192 -0.5312,14.939 0,29.9 1.5789,44.7693 0.9451,8.814 5.8906,20.7051 -4.1982,26.9144 -7.4036,4.5535 -18.258,2.872 -19.617,-5.9236"
style="fill:#494949;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path68"
inkscape:connector-curvature="0" /><path
d="m 1625.9783,1849.7384 c -23.6613,-1.0221 -45.6302,-14.2613 -63.3973,-27.0243 -16.0819,10.6749 -40.432,20.4853 -60.6937,14.7742 -12.078,-3.3922 -1.11,-7.0959 3.927,-10.3159 9.3085,-6.191 16.8952,-14.1477 23.742,-22.3682 10.3891,-12.5981 19.6243,-25.8263 30.7095,-37.9776 7.6747,5.5243 15.0013,11.1035 21.6722,17.5583 3.0955,2.9929 28.4346,36.9262 32.325,42.6666 2.4838,3.656 4.9895,7.4329 7.8359,10.8727 2.8903,3.4802 11.0705,9.0154 3.8794,11.8142"
style="fill:#494949;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path70"
inkscape:connector-curvature="0" /><path
d="m 1326.5208,2010.0303 c 11.6823,30.3029 24.2402,68.3867 56.2648,62.3276 24.2438,-5.1946 56.6971,-86.1171 35.9262,-78.1238 -11.2537,4.3264 -20.2069,41.106 -41.3332,45.8757 -13.4224,3.0332 -32.032,-43.5019 -49.9932,-48.2605 -8.7077,-2.3006 -4.3264,10.3891 -0.8646,18.181"
style="fill:#2c3844;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path72"
inkscape:connector-curvature="0" /><path
d="m 1670.5938,2010.0303 c 11.686,30.3029 24.2438,68.3867 56.2685,62.3276 24.2401,-5.1946 56.6934,-86.1171 35.9224,-78.1238 -11.2537,4.3264 -20.2031,41.106 -41.3331,45.8757 -13.4224,3.0332 -32.032,-43.5019 -49.9896,-48.2605 -8.7077,-2.3006 -4.33,10.3891 -0.8682,18.181"
style="fill:#2c3844;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.36633128"
id="path74"
inkscape:connector-curvature="0" /><g
aria-label="Vikunja"
transform="scale(1,-1)"
style="font-style:normal;font-weight:normal;font-size:1163.38110352px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:29.08452606"
id="text831"><path
d="m 3302.2541,-1549.4053 c 3.4901,2.3268 8.1436,5.8169 10.4704,6.9803 1.1634,0 1.1634,0 1.1634,0 0,0 1.1633,0 1.1633,1.1634 2.3268,0 6.9803,1.1634 9.3071,2.3267 1.1634,0 2.3268,0 2.3268,0 3.4901,1.1634 8.1436,1.1634 11.6338,1.1634 3.4901,0 6.9803,0 11.6338,-1.1634 1.1634,0 2.3267,0 2.3267,0 3.4902,-1.1633 5.8169,-2.3267 9.3071,-2.3267 1.1634,-1.1634 1.1634,-1.1634 2.3268,-1.1634 0,0 0,0 0,0 3.4901,-1.1634 6.9802,-4.6535 9.307,-5.8169 2.3268,-1.1634 2.3268,-1.1634 2.3268,-1.1634 2.3267,-2.3268 4.6535,-3.4901 6.9802,-5.8169 1.1634,-1.1634 1.1634,-1.1634 2.3268,-3.4901 1.1634,-2.3268 4.6535,-4.6536 5.8169,-6.9803 1.1634,0 1.1634,0 1.1634,-1.1634 2.3268,-2.3268 3.4901,-6.9803 4.6535,-9.3071 l 287.3552,-679.4145 c 12.7971,-31.4113 -2.3268,-69.8029 -34.9015,-82.6001 -31.4113,-13.9606 -69.8028,1.1634 -83.7634,33.7381 l -226.8593,538.6454 -226.8593,-538.6454 c -13.9606,-32.5747 -51.1888,-47.6987 -82.6001,-33.7381 -33.7381,12.7972 -48.862,51.1888 -34.9014,82.6001 l 285.0283,679.4145 c 2.3268,2.3268 4.6536,6.9803 5.8169,9.3071 0,1.1634 1.1634,1.1634 1.1634,1.1634 1.1634,2.3267 3.4902,4.6535 5.8169,6.9803 0,2.3267 1.1634,2.3267 1.1634,3.4901 3.4901,2.3268 5.8169,3.4901 8.1437,5.8169 1.1634,0 1.1634,0 1.1634,0 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';stroke-width:29.08452606;fill-opacity:1;fill:#252626"
id="path834" /><path
d="m 3936.8421,-2118.2987 c -34.9014,0 -62.8226,26.7578 -62.8226,63.986 v 453.7186 c 0,34.9015 27.9212,62.8226 62.8226,62.8226 36.0648,0 62.8226,-27.9211 62.8226,-62.8226 v -453.7186 c 0,-37.2282 -26.7578,-63.986 -62.8226,-63.986 z m 62.8226,-171.017 c 0,-34.9014 -26.7578,-62.8226 -62.8226,-62.8226 -34.9014,0 -62.8226,27.9212 -62.8226,62.8226 v 24.431 c 0,34.9015 27.9212,63.986 62.8226,63.986 36.0648,0 62.8226,-29.0845 62.8226,-63.986 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';stroke-width:29.08452606;fill-opacity:1;fill:#252626"
id="path836" /><path
d="m 4264.043,-1537.7715 c 36.0648,0 65.1493,-29.0845 65.1493,-63.9859 v -102.3776 l 63.986,-63.9859 171.017,207.0818 c 11.6338,15.1239 30.2479,23.2676 48.862,23.2676 13.9606,0 29.0845,-4.6535 40.7183,-15.1239 27.9212,-22.1043 31.4113,-62.8226 9.3071,-90.7438 l -179.1607,-215.2255 174.5071,-174.5071 c 25.5944,-24.431 25.5944,-65.1494 0,-90.7438 -24.431,-24.431 -66.3127,-24.431 -90.7437,0 l -238.4931,238.4932 v -402.5299 c 0,-34.9014 -29.0845,-63.986 -65.1493,-63.986 -36.0649,0 -63.986,29.0846 -63.986,63.986 v 686.3949 c 0,34.9014 27.9211,63.9859 63.986,63.9859 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';stroke-width:29.08452606;fill-opacity:1;fill:#252626"
id="path838" /><path
d="m 5316.6484,-1779.7548 v -278.048 c 0,-32.5747 -30.2479,-61.6592 -62.8226,-61.6592 -34.9014,0 -60.4958,29.0845 -60.4958,61.6592 v 278.048 c -1.1634,66.3128 -54.6789,118.6649 -122.155,118.6649 -66.3127,0 -118.6649,-52.3521 -118.6649,-118.6649 v -278.048 c 0,-32.5747 -26.7577,-61.6592 -61.6592,-61.6592 -33.738,0 -61.6592,29.0845 -61.6592,61.6592 v 278.048 c 0,132.6255 109.3579,241.9833 241.9833,241.9833 133.7888,0 245.4734,-109.3578 245.4734,-241.9833 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';stroke-width:29.08452606;fill-opacity:1;fill:#252626"
id="path840" /><path
d="m 5769.022,-2119.462 c -45.3719,0 -88.417,13.9605 -123.3184,36.0648 -10.4705,-22.1043 -32.5747,-36.0648 -57.0057,-36.0648 -34.9015,0 -61.6592,27.9211 -61.6592,61.6592 v 180.324 c 0,0 0,0 0,0 v 278.0481 c 0,33.7381 26.7577,61.6592 61.6592,61.6592 30.2479,0 55.8423,-22.1042 61.6592,-50.0254 2.3267,-4.6535 2.3267,-8.1436 2.3267,-11.6338 v -278.0481 c 0,-65.1493 51.1888,-117.5015 116.3382,-117.5015 66.3127,0 120.9916,52.3522 120.9916,117.5015 v 278.0481 c 0,33.7381 29.0845,61.6592 61.6592,61.6592 33.738,0 60.4958,-27.9211 60.4958,-61.6592 v -278.0481 c 0,-131.462 -108.1944,-241.9832 -243.1466,-241.9832 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';stroke-width:29.08452606;fill-opacity:1;fill:#252626"
id="path842" /><path
d="m 6255.6424,-2199.7353 c 34.9014,0 62.8226,-30.2479 62.8226,-63.986 v -23.2676 c 0,-37.2282 -27.9212,-63.986 -62.8226,-63.986 -34.9015,0 -63.986,26.7578 -63.986,63.986 v 23.2676 c 0,33.7381 29.0845,63.986 63.986,63.986 z m -65.1494,867.8823 c 69.8029,0 125.6452,-57.0057 125.6452,-125.6452 v -597.9779 c 0,-36.0648 -26.7578,-63.9859 -62.8226,-63.9859 -33.738,0 -62.8226,27.9211 -62.8226,63.9859 v 597.9779 c 0,0 0,0 0,0 -37.2282,0 -63.9859,27.9212 -63.9859,61.6592 0,37.2282 26.7577,63.986 63.9859,63.986 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';stroke-width:29.08452606;fill-opacity:1;fill:#252626"
id="path844" /><path
d="m 6998.4795,-2056.6395 c 0,-34.9014 -27.9212,-62.8225 -61.6592,-62.8225 -30.248,0 -53.5156,22.1042 -60.4959,51.1887 -44.2084,-31.4113 -96.5606,-51.1887 -154.7296,-51.1887 -79.11,0 -147.7494,33.738 -197.7748,87.2535 -50.0254,52.3522 -79.11,124.4818 -79.11,204.7551 0,79.1099 29.0846,151.2396 79.11,204.7551 50.0254,52.3521 118.6648,84.9268 197.7748,84.9268 0,0 0,0 0,0 58.169,0 110.5212,-18.6141 154.7296,-50.0254 6.9803,27.9212 30.2479,50.0254 60.4959,50.0254 33.738,0 61.6592,-27.9211 61.6592,-61.6592 v -228.0227 c 0,0 0,0 0,0 0,0 0,0 0,0 z m -168.6903,349.0144 c -27.9212,29.0845 -67.4761,45.3718 -108.1944,45.3718 -41.8818,0 -81.4367,-16.2873 -108.1945,-45.3718 -27.9211,-30.2479 -44.2085,-72.1297 -44.2085,-119.8283 0,-48.862 16.2874,-90.7437 44.2085,-119.8282 26.7578,-31.4113 66.3127,-47.6987 108.1945,-47.6987 40.7183,0 80.2732,16.2874 108.1944,47.6987 27.9211,29.0845 45.3719,70.9662 45.3719,119.8282 0,47.6986 -17.4508,89.5804 -45.3719,119.8283 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Quicksand;-inkscape-font-specification:'Quicksand Bold';stroke-width:29.08452606;fill-opacity:1;fill:#252626"
id="path846" /></g>
</g></g></svg>

After

Width:  |  Height:  |  Size: 18 KiB