Initial commit
This commit is contained in:
parent
c9eb6509f5
commit
9482360c01
BIN
sagou.in/.custom_portal.css.swp
Normal file
BIN
sagou.in/.custom_portal.css.swp
Normal file
Binary file not shown.
BIN
sagou.in/bg.jpg
Normal file
BIN
sagou.in/bg.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 315 KiB |
26
sagou.in/custom_overlay.css
Normal file
26
sagou.in/custom_overlay.css
Normal file
@ -0,0 +1,26 @@
|
||||
/*
|
||||
===============================================================================
|
||||
This file may contain extra CSS rules loaded on all apps page (*if* the app
|
||||
nginx's conf does include the appropriate snippet) for the small YunoHost
|
||||
button in bottom-right corner + portal overlay.
|
||||
|
||||
The yunohost button corresponds to : #ynh-overlay-switch
|
||||
The yunohost portal overlay / iframe corresponds to : #ynh-overlay
|
||||
|
||||
BE CAREFUL that you should *not* add too-general rules that apply to
|
||||
non-yunohost elements (for instance all 'a' or 'p' elements...) as it will
|
||||
likely break app's rendering
|
||||
===============================================================================
|
||||
*/
|
||||
|
||||
#ynh-overlay-switch {
|
||||
/* FIXME : idk if this is an issue or not to have /yunohost/sso hard-coded here */
|
||||
/*background-image: url("/yunohost/sso/assets/img/logo-ynh.svg");
|
||||
border-color: #eee;
|
||||
background-color: #eee;*/
|
||||
}
|
||||
|
||||
#ynh-overlay-switch:hover {
|
||||
/*border-color: #ccc;
|
||||
background-color: #ccc;*/
|
||||
}
|
180
sagou.in/custom_portal.css
Normal file
180
sagou.in/custom_portal.css
Normal file
@ -0,0 +1,180 @@
|
||||
/*
|
||||
===============================================================================
|
||||
This file contain extra CSS rules to customize the YunoHost user portal and
|
||||
can be used to customize app tiles, buttons, etc...
|
||||
===============================================================================
|
||||
*/
|
||||
|
||||
body {
|
||||
background: url(bg.jpg) no-repeat center center fixed;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
#ynh-logo {
|
||||
background-image: url("logo-sagou.in.svg");
|
||||
}
|
||||
|
||||
.login-form .form-group {
|
||||
border: 1px solid #bbb;
|
||||
}
|
||||
|
||||
.user-container,
|
||||
.user-menu a,
|
||||
.link-btn,
|
||||
.footer a {
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.user-menu a:hover,
|
||||
.footer a:hover {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.form-text:disabled:hover {
|
||||
background: #797b83;
|
||||
}
|
||||
|
||||
.link-btn,
|
||||
.link-btn:hover {
|
||||
background: none;
|
||||
}
|
||||
|
||||
|
||||
.bluebg {
|
||||
background: #3498DB!important;
|
||||
}
|
||||
.bluebg:hover:after,
|
||||
.bluebg:focus:after,
|
||||
.bluebg:hover:before,
|
||||
.bluebg:focus:before {
|
||||
background: #16527A!important;
|
||||
}
|
||||
|
||||
.purplebg {
|
||||
background: #9B59B6!important;
|
||||
}
|
||||
.purplebg:hover:after,
|
||||
.purplebg:focus:after,
|
||||
.purplebg:hover:before,
|
||||
.purplebg:focus:before {
|
||||
background: #532C64!important;
|
||||
}
|
||||
|
||||
.redbg {
|
||||
background: #E74C3C!important;
|
||||
}
|
||||
.redbg:hover:after,
|
||||
.redbg:focus:after,
|
||||
.redbg:hover:before,
|
||||
.redbg:focus:before {
|
||||
background: #921E12!important;
|
||||
}
|
||||
|
||||
.orangebg {
|
||||
background: #F39C12!important;
|
||||
}
|
||||
.orangebg:hover:after,
|
||||
.orangebg:focus:after,
|
||||
.orangebg:hover:before,
|
||||
.orangebg:focus:before {
|
||||
background: #7F5006!important;
|
||||
}
|
||||
|
||||
.greenbg {
|
||||
background: #2ECC71!important;
|
||||
}
|
||||
.greenbg:hover:after,
|
||||
.greenbg:focus:after,
|
||||
.greenbg:hover:before,
|
||||
.greenbg:focus:before {
|
||||
background: #176437!important;
|
||||
}
|
||||
|
||||
.darkbluebg {
|
||||
background: #34495E!important;
|
||||
}
|
||||
.darkbluebg:hover:after,
|
||||
.darkbluebg:focus:after,
|
||||
.darkbluebg:hover:before,
|
||||
.darkbluebg:focus:before {
|
||||
background: #07090C!important;
|
||||
}
|
||||
|
||||
.lightbluebg {
|
||||
background: #6A93D4!important;
|
||||
}
|
||||
.lightbluebg:hover:after,
|
||||
.lightbluebg:focus:after,
|
||||
.lightbluebg:hover:before,
|
||||
.lightbluebg:focus:before {
|
||||
background: #2B5394!important;
|
||||
}
|
||||
|
||||
.yellowbg {
|
||||
background: #F1C40F!important;
|
||||
}
|
||||
.yellowbg:hover:after,
|
||||
.yellowbg:focus:after,
|
||||
.yellowbg:hover:before,
|
||||
.yellowbg:focus:before {
|
||||
background: #796307!important;
|
||||
}
|
||||
|
||||
|
||||
.lightpinkbg {
|
||||
background: #F76F87!important;
|
||||
}
|
||||
.lightpinkbg:hover:after,
|
||||
.lightpinkbg:focus:after,
|
||||
.lightpinkbg:hover:before,
|
||||
.lightpinkbg:focus:before {
|
||||
background: #DA0C31!important;
|
||||
}
|
||||
|
||||
/* Following colors are not used yet */
|
||||
.pinkbg {
|
||||
background: #D66D92!important;
|
||||
}
|
||||
.pinkbg:hover:after,
|
||||
.pinkbg:focus:after,
|
||||
.pinkbg:hover:before,
|
||||
.pinkbg:focus:before {
|
||||
background: #992B52!important;
|
||||
}
|
||||
|
||||
.turquoisebg {
|
||||
background: #1ABC9C!important;
|
||||
}
|
||||
.turquoisebg:hover:after,
|
||||
.turquoisebg:focus:after,
|
||||
.turquoisebg:hover:before,
|
||||
.turquoisebg:focus:before {
|
||||
background: #0B4C3F!important;
|
||||
}
|
||||
.lightyellow {
|
||||
background: #FFC973!important;
|
||||
}
|
||||
.lightyellow:hover:after,
|
||||
.lightyellow:focus:after,
|
||||
.lightyellow:hover:before,
|
||||
.lightyellow:focus:before {
|
||||
background: #F39500!important;
|
||||
}
|
||||
.lightgreen {
|
||||
background: #B5F36D!important;
|
||||
}
|
||||
.lightgreen:hover:after,
|
||||
.lightgreen:focus:after,
|
||||
.lightgreen:hover:before,
|
||||
.lightgreen:focus:before {
|
||||
background: #77CF11!important;
|
||||
}
|
||||
.purpledarkbg {
|
||||
background: #8E44AD!important;
|
||||
}
|
||||
.purpledarkbg:hover:after,
|
||||
.purpledarkbg:focus:after,
|
||||
.purpledarkbg:hover:before,
|
||||
.purpledarkbg:focus:before {
|
||||
background: #432051!important;
|
||||
}
|
44
sagou.in/custom_portal.js
Normal file
44
sagou.in/custom_portal.js
Normal file
@ -0,0 +1,44 @@
|
||||
/*
|
||||
===============================================================================
|
||||
This JS file may be used to customize the YunoHost user portal *and* also
|
||||
will be loaded in all app pages if the app nginx's conf does include the
|
||||
appropriate snippet.
|
||||
|
||||
You can monkeypatch init_portal (loading of the user portal) and
|
||||
init_portal_button_and_overlay (loading of the button and overlay...) to do
|
||||
custom stuff
|
||||
===============================================================================
|
||||
*/
|
||||
|
||||
var app_tile_colors = ['redbg','purpledarkbg','darkbluebg','orangebg','greenbg', 'yellowbg','lightpinkbg','pinkbg','turquoisebg','lightbluebg', 'bluebg'];
|
||||
|
||||
function set_app_tile_style(el)
|
||||
{
|
||||
// Select a color value from the App label
|
||||
randomColorNumber = parseInt(el.textContent, 36) % app_tile_colors.length;
|
||||
// Add color class.
|
||||
el.classList.add(app_tile_colors[randomColorNumber]);
|
||||
}
|
||||
|
||||
// Monkeypatch init_portal to customize the app tile style
|
||||
init_portal_original = init_portal;
|
||||
init_portal = function()
|
||||
{
|
||||
init_portal_original();
|
||||
Array.each(document.getElementsByClassName("app-tile"), set_app_tile_style);
|
||||
}
|
||||
|
||||
/*
|
||||
* Monkey patching example to do custom stuff when loading inside an app
|
||||
*
|
||||
init_portal_button_and_overlay_original = init_portal_button_and_overlay;
|
||||
init_portal_button_and_overlay = function()
|
||||
{
|
||||
init_portal_button_and_overlay_original();
|
||||
// Custom stuff to do when loading inside an app
|
||||
}
|
||||
*/
|
||||
|
||||
// Removed the Help & Documentation links because they are a confusing and only useful to the admin
|
||||
e = document.getElementsByClassName('link-documentation')[1]; e.parentNode.removeChild(e);
|
||||
e = document.getElementsByClassName('link-documentation')[0]; e.parentNode.removeChild(e);
|
101
sagou.in/logo-sagou.in.svg
Normal file
101
sagou.in/logo-sagou.in.svg
Normal file
@ -0,0 +1,101 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="98px"
|
||||
height="85px"
|
||||
viewBox="0 0 98 85"
|
||||
overflow="visible"
|
||||
enable-background="new 0 0 98 85"
|
||||
xml:space="preserve"
|
||||
id="svg23"
|
||||
sodipodi:docname="logo-sagou.in.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, 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="namedview25"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#cccccc"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:zoom="7.046216"
|
||||
inkscape:cx="56.697098"
|
||||
inkscape:cy="37.679799"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="text1178"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid20560" /></sodipodi:namedview>
|
||||
<defs
|
||||
id="defs2" />
|
||||
<g
|
||||
id="XMLID_2_">
|
||||
<g
|
||||
id="g18"><g
|
||||
aria-label="Sagou . in"
|
||||
transform="scale(0.97485995,1.0257884)"
|
||||
id="text942"
|
||||
style="font-size:46.238px;line-height:0;font-family:TSCu_Comic;-inkscape-font-specification:TSCu_Comic;text-align:center;text-anchor:middle;stroke-width:0.619257"><g
|
||||
aria-label="Sagou
|
||||
.
|
||||
in"
|
||||
transform="scale(1.0257884,0.97485992)"
|
||||
id="text1178"
|
||||
style="font-size:33.0188px;line-height:0.4;font-family:sans-serif;stroke-width:0.511178"><path
|
||||
d="m 16.87139,25.440513 q -0.462263,3.202823 -2.971692,4.820745 -1.91509,1.221695 -4.8867823,1.221695 -3.0377295,0 -6.9009289,-1.221695 -1.18867681,-0.396226 -1.78301519,-1.485846 -0.56131958,-1.122639 -0.16509399,-2.311316 0.19811279,-0.594339 0.56131958,-1.056602 0.3962256,-0.462263 0.9245264,-0.726413 0.5283007,-0.29717 1.0896203,-0.330188 0.5943384,-0.06604 1.1886768,0.132075 1.9811279,0.726413 3.0377295,0.627357 1.0896203,-0.09906 1.4858459,-0.528301 Q 8.8808405,24.119761 8.7817841,23.59146 8.6827277,23.063159 8.3525397,22.898065 7.1968818,22.402784 5.9421674,21.775426 4.7204719,21.148069 3.6638703,20.091468 0.92330999,17.383926 1.583686,13.058463 1.74878,12.001862 2.1119868,11.209411 2.4751935,10.383941 2.9374567,9.7896024 3.3997199,9.195264 3.8950019,8.7660196 4.4233027,8.3367752 4.8855659,8.0726248 7.5270698,6.5207413 11.720457,7.214136 q 1.38679,0.2641504 2.311316,0.5613196 0.924526,0.2641504 1.056602,0.330188 0.594338,0.2311316 1.023582,0.660376 0.429245,0.3962256 0.660376,0.9245264 0.231132,0.528301 0.264151,1.122639 0.03302,0.594338 -0.198113,1.188677 -0.231132,0.594338 -0.660376,1.023583 -0.396226,0.429244 -0.924526,0.660376 -0.528301,0.231131 -1.122639,0.26415 -0.594339,0.03302 -1.188677,-0.198113 -0.627357,-0.231131 -1.452827,-0.429244 -0.792452,-0.231132 -1.5849027,-0.264151 -0.7924512,-0.03302 -1.4198084,0.165094 -0.6273572,0.198113 -0.9245263,0.792452 -0.1320752,0.26415 -0.099056,0.627357 0.033019,0.363207 0.3632067,0.792451 0.330188,0.429244 1.0235828,0.924526 0.6933948,0.462264 1.8820713,0.990564 1.056602,0.462263 2.080185,0.957545 1.056601,0.495282 1.948109,1.320752 2.509428,2.278298 2.113203,5.811309 z"
|
||||
style="font-family:'Jungle Hope';-inkscape-font-specification:'Jungle Hope'"
|
||||
id="path8674" /><path
|
||||
d="m 20.305337,31.251822 q -0.594338,-0.29717 -1.023583,-0.759433 -0.429244,-0.462263 -0.660376,-0.990564 -0.231131,-0.561319 -0.26415,-1.155658 -0.03302,-0.594338 0.198113,-1.155658 0,0 0.297169,-0.627357 0.297169,-0.627357 0.726413,-1.683959 0.462264,-1.08962 1.023583,-2.509428 0.56132,-1.419809 1.089621,-3.004711 0.561319,-1.617921 1.023582,-3.30188 0.495282,-1.716977 0.792451,-3.334899 0.231132,-1.08962 0.792452,-1.650939 0.594338,-0.594339 1.65094,-0.429245 0.561319,-0.09906 1.188676,-0.06604 0.660376,0 1.254715,0.198112 0.627357,0.165094 1.122639,0.495282 0.495282,0.297169 0.759432,0.759433 0.990564,1.65094 1.749997,3.466974 0.759432,1.816033 1.320752,3.665086 0.594338,1.816034 0.990563,3.599049 0.429245,1.749997 0.726414,3.334899 0.297169,0.528301 0.396226,1.221696 0.03302,0.429244 -0.06604,0.924526 0.26415,1.91509 0.363207,3.136786 0.132075,1.188677 0.132075,1.353771 0.165094,1.254714 -0.594338,2.146221 -0.759433,0.891508 -2.014147,0.957546 h -0.06604 q -0.594338,0 -1.188676,-0.231132 -0.56132,-0.231132 -1.023583,-0.627357 -0.429245,-0.396226 -0.726414,-0.957545 -0.297169,-0.528301 -0.396225,-1.122639 0,-0.03302 -0.09906,-0.726414 -0.09906,-0.660376 -0.330188,-1.816034 h -4.721688 q -0.363207,0 -0.693395,-0.09906 -0.363207,0.627357 -0.990564,0.957545 -0.627357,0.330188 -1.35377,0.330188 -0.693395,0 -1.38679,-0.297169 z m 6.801873,-9.773565 q -0.231132,0.759433 -0.462264,1.485846 -0.198112,0.693395 -0.429244,1.353771 h 1.783015 Q 27.800604,23.624479 27.569473,22.931084 27.37136,22.204671 27.10721,21.478257 Z"
|
||||
style="font-family:'Jungle Hope';-inkscape-font-specification:'Jungle Hope'"
|
||||
id="path8676" /><path
|
||||
d="m 37.673244,18.704678 q 0.429245,-1.65094 1.056602,-2.839617 0.627357,-1.221695 1.353771,-2.047165 0.759432,-0.858489 1.518864,-1.38679 0.792452,-0.561319 1.485846,-0.891507 1.683959,-0.759433 3.334899,-0.792451 1.683959,-0.03302 3.103767,0.231131 0.726414,0.165094 1.287733,0.627357 0.56132,0.429245 0.858489,1.056602 0.297169,0.627357 0.297169,1.353771 0,0.693394 -0.330188,1.386789 -0.462263,0.891508 -1.386789,1.353771 -0.924527,0.429244 -1.915091,0.231132 -0.363206,-0.06604 -1.056601,-0.09906 -0.660376,-0.06604 -1.38679,0.231132 -0.726413,0.26415 -1.386789,0.957545 -0.660376,0.693395 -0.957545,2.113203 -0.198113,0.792451 0.03302,1.816034 0.264151,0.990564 0.924527,1.849053 0.693395,0.858488 1.816034,1.386789 1.155658,0.495282 2.806598,0.297169 0.462263,-0.06604 0.726413,-0.429244 0.297169,-0.363207 0.231132,-0.82547 h -2.839617 q -0.627357,0 -1.188677,-0.231132 -0.561319,-0.26415 -0.990564,-0.660376 -0.429244,-0.429244 -0.693394,-0.990563 -0.231132,-0.56132 -0.231132,-1.188677 0.03302,-1.221696 0.891508,-2.080185 0.891507,-0.858488 2.146221,-0.858488 l 6.570741,-0.132076 q 1.155658,0 2.014147,0.82547 0.891508,0.792452 0.990564,1.94811 l -0.396225,5.712252 q 0.06604,0.759432 -0.231132,1.452827 -0.297169,0.660376 -0.858489,1.122639 -1.584902,1.287733 -3.499993,1.948109 -1.91509,0.660376 -3.896218,0.660376 -1.617921,0 -3.169804,-0.429244 -1.551884,-0.429245 -2.938674,-1.287733 -1.419808,-0.891508 -2.410372,-2.113203 -0.957545,-1.221696 -1.485846,-2.674523 -0.528301,-1.485846 -0.594338,-3.136786 -0.06604,-1.683959 0.396225,-3.466974 z"
|
||||
style="font-family:'Jungle Hope';-inkscape-font-specification:'Jungle Hope'"
|
||||
id="path8678" /><path
|
||||
d="m 58.508121,18.704678 q 0.330188,-1.353771 0.990564,-2.773579 0.693395,-1.419808 1.849053,-2.575466 1.155658,-1.155658 2.839617,-1.882072 1.716977,-0.726413 4.160368,-0.726413 1.683959,0 3.268862,0.561319 1.617921,0.528301 2.971691,1.485846 1.38679,0.957545 2.47641,2.311316 1.089621,1.320752 1.716978,2.938673 1.155658,3.004711 0.462263,5.910365 -0.660376,2.905654 -3.037729,5.150933 -0.06604,0.06604 -0.132076,0.09906 -1.551883,1.287733 -3.466974,1.948109 -1.91509,0.660376 -3.929237,0.660376 -1.617921,0 -3.169804,-0.429244 -1.551884,-0.429245 -2.938673,-1.287733 -1.419809,-0.891508 -2.410373,-2.113203 -0.957545,-1.221696 -1.485846,-2.674523 -0.5283,-1.485846 -0.594338,-3.136786 -0.03302,-1.683959 0.429244,-3.466974 z m 12.38205,4.061312 q 0.495282,-0.462263 0.594338,-1.485846 0.09906,-1.056601 -0.26415,-2.080184 -0.330188,-1.056602 -1.155658,-1.849053 -0.82547,-0.792451 -2.21226,-0.792451 -1.320751,0 -1.981127,0.924526 -0.660376,0.891508 -0.82547,2.047166 -0.165094,1.155658 0.06604,2.21226 0.231132,1.023582 0.693395,1.320751 0.56132,0.363207 1.221695,0.528301 0.660376,0.132075 1.353771,0.09906 0.693395,-0.06604 1.320752,-0.29717 0.660376,-0.231131 1.188677,-0.627357 z"
|
||||
style="font-family:'Jungle Hope';-inkscape-font-specification:'Jungle Hope'"
|
||||
id="path8680" /><path
|
||||
d="m 81.159036,12.5962 q 0.26415,-2.113203 1.386789,-3.1367856 1.155658,-1.0566016 3.268861,-0.7924512 0.792452,0.099056 1.452827,0.495282 0.693395,0.3632068 1.12264,0.9905638 0.429244,0.594339 0.561319,1.419808 0.165094,0.82547 -0.03302,1.783016 -0.561319,2.575466 -1.023582,5.183951 -0.429245,2.575466 -0.231132,5.183951 0,0.264151 0.03302,0.726414 0.03302,0.462263 0.198113,0.924526 0.198112,0.429245 0.594338,0.792452 0.429244,0.330188 1.221696,0.330188 0.924526,0 1.485846,-0.594339 0.429244,-0.429244 0.627357,-1.122639 0.198113,-0.726414 0.132075,-1.584902 -0.165094,-2.608485 -0.231132,-5.183952 -0.06604,-2.608485 0.264151,-5.415083 0.06604,-0.627357 0.363207,-1.122639 0.297169,-0.528301 0.726413,-0.891507 0.462263,-0.363207 1.023583,-0.528301 0.594338,-0.1650942 1.221695,-0.099057 0.627358,0.066038 1.12264,0.3632066 0.5283,0.297169 0.891507,0.759433 0.363207,0.429244 0.528301,1.023582 0.165094,0.56132 0.09906,1.188677 -0.26415,2.410372 -0.231131,4.787726 0.06604,2.344335 0.231131,4.721688 0.165094,2.080184 -0.462263,3.962256 -0.627357,1.882071 -1.882071,3.268861 -1.155658,1.221696 -2.674523,1.849053 -1.485846,0.627357 -3.235842,0.627357 -1.749997,0 -3.268861,-0.627357 -1.485846,-0.627357 -2.608486,-1.716978 -1.122639,-1.122639 -1.816034,-2.674522 -0.693394,-1.551884 -0.82547,-3.433956 -0.198112,-2.74056 -0.297169,-5.580177 -0.09906,-2.872635 0.264151,-5.877346 z"
|
||||
style="font-family:'Jungle Hope';-inkscape-font-specification:'Jungle Hope'"
|
||||
id="path8682" /><path
|
||||
d="m 48.998709,39.99034 q 0.726413,0 1.386789,0.29717 0.693395,0.26415 1.188677,0.759432 0.495282,0.495282 0.792451,1.188677 0.330188,0.660376 0.363207,1.419808 0.06604,1.485846 -1.023583,2.608485 -0.561319,0.56132 -1.254714,0.858489 -0.693395,0.330188 -1.452827,0.330188 -0.759433,0 -1.419809,-0.297169 -0.660376,-0.264151 -1.155658,-0.759433 -0.495281,-0.495282 -0.825469,-1.155658 -0.29717,-0.693394 -0.330188,-1.452827 -0.06604,-1.485846 1.023582,-2.608485 0.56132,-0.561319 1.254715,-0.858489 0.693394,-0.330188 1.452827,-0.330188 z"
|
||||
style="font-family:'Jungle Hope';-inkscape-font-specification:'Jungle Hope'"
|
||||
id="path8684" /><path
|
||||
d="m 37.111938,57.881145 q 0.594338,-0.09906 1.188677,0.03302 0.594338,0.132075 1.056601,0.462263 0.462263,0.330188 0.792451,0.82547 0.363207,0.495282 0.462264,1.08962 0.363206,1.882072 0.594338,3.8632 0.231132,1.948109 0.363207,3.83018 0.132075,1.882072 0.165094,3.56603 0.06604,1.65094 0.06604,2.938674 0.03302,1.287733 0,2.080184 0,0.792451 0,0.891507 -0.03302,1.254715 -0.924526,2.080185 -0.858489,0.858489 -2.080184,0.858489 h -0.06604 q -0.627357,0 -1.188677,-0.264151 -0.5283,-0.231131 -0.924526,-0.660376 -0.396226,-0.429244 -0.627357,-0.957545 -0.231132,-0.56132 -0.198113,-1.188677 0,-0.03302 0,-0.726413 0.03302,-0.726414 0,-1.915091 0,-1.221695 -0.06604,-2.806598 -0.03302,-1.584902 -0.165094,-3.334898 -0.132075,-1.749997 -0.330188,-3.566031 -0.198112,-1.849052 -0.5283,-3.56603 -0.132076,-0.594338 0,-1.188677 0.132075,-0.594338 0.462263,-1.056601 0.330188,-0.495282 0.82547,-0.82547 0.495282,-0.330188 1.122639,-0.462263 z"
|
||||
style="font-family:'Jungle Hope';-inkscape-font-specification:'Jungle Hope'"
|
||||
id="path8686" /><path
|
||||
d="m 55.701503,59.300953 q 0.26415,-2.014147 1.419808,-2.839617 1.155658,-0.82547 2.806598,-0.792451 0.82547,0.03302 1.518865,0.495282 0.693395,0.462263 1.155658,1.155658 0.462263,0.660376 0.660376,1.419808 0.198113,0.726414 0,1.320752 -1.155658,3.533012 -1.452827,6.636779 -0.29717,3.070748 -0.198113,5.349045 0.09906,2.278298 0.363207,3.632068 0.297169,1.320752 0.297169,1.353771 0.06604,0.627357 -0.09906,1.221696 -0.165094,0.561319 -0.5283,1.023582 -0.363207,0.429245 -0.891508,0.726414 -0.495282,0.330188 -1.122639,0.396226 h -0.363207 q -1.023583,0 -1.849053,-0.627358 -0.792451,-0.594338 -1.056601,-1.551883 -0.297169,-0.231132 -0.495282,-0.594339 -0.09906,-0.132075 -0.726414,-1.056601 -0.627357,-0.957545 -1.584902,-2.377354 -0.924526,-1.452827 -2.080184,-3.169804 -1.12264,-1.749997 -2.21226,-3.433955 0.06604,1.849052 0.165094,3.533011 0.132075,1.683959 0.26415,3.004711 0.132076,1.287733 0.198113,2.080184 0.09906,0.792451 0.09906,0.82547 0.165094,1.254714 -0.594339,2.245278 -0.759432,0.957546 -2.014146,1.12264 -0.09906,0 -0.198113,0 -0.09906,0.03302 -0.198113,0.03302 -1.122639,0 -1.981128,-0.759432 -0.82547,-0.759432 -0.990564,-1.91509 -0.03302,-0.09906 -0.132075,-1.023583 -0.09906,-0.924527 -0.231132,-2.377354 -0.132075,-1.485846 -0.26415,-3.334898 -0.132075,-1.882072 -0.198113,-3.896219 -0.03302,-2.014146 0,-4.028293 0.03302,-2.014147 0.231132,-3.797162 0.165094,-1.254714 1.122639,-2.047165 0.957545,-0.792452 2.212259,-0.627358 0.09906,0 0.165094,0.03302 0.09906,0 0.198113,0.03302 0.957545,-0.231132 1.882072,0.165094 0.924526,0.396226 1.419808,1.287733 0.231132,0.396226 0.693395,1.155658 0.495282,0.759432 1.155658,1.816034 0.660376,1.023583 1.419808,2.245278 0.792451,1.221696 1.65094,2.509429 0,-1.716977 0.06604,-3.400936 0.06604,-1.683959 0.297169,-3.169805 z"
|
||||
style="font-family:'Jungle Hope';-inkscape-font-specification:'Jungle Hope'"
|
||||
id="path8688" /></g></g>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</g>
|
||||
<g
|
||||
id="g20">
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
Loading…
x
Reference in New Issue
Block a user