Rebrand project from web4beginners to ikfreunde
|
After Width: | Height: | Size: 95 KiB |
|
After Width: | Height: | Size: 79 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 54 KiB |
1
ikfreunde.com_files/1698d822c6d3fe9b0c50b3ab44ef524a.js
Normal file
|
After Width: | Height: | Size: 141 KiB |
|
After Width: | Height: | Size: 208 KiB |
|
After Width: | Height: | Size: 151 KiB |
|
After Width: | Height: | Size: 63 KiB |
|
After Width: | Height: | Size: 150 KiB |
|
After Width: | Height: | Size: 340 KiB |
|
After Width: | Height: | Size: 89 KiB |
|
After Width: | Height: | Size: 251 KiB |
BIN
ikfreunde.com_files/brandeins@2x.png
Normal file
|
After Width: | Height: | Size: 9.0 KiB |
|
After Width: | Height: | Size: 65 KiB |
BIN
ikfreunde.com_files/detektorfm@2x.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
ikfreunde.com_files/dpok@2.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
ikfreunde.com_files/dt_land@2.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 157 KiB |
1
ikfreunde.com_files/ee792949df0da81967291f5675ce6b3b.css
Normal file
1
ikfreunde.com_files/f73f70e70b0ac5f1d474abd842fb4b24.js
Normal file
@@ -0,0 +1 @@
|
||||
(function(n){var e={};function t(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return n[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=n,t.c=e,t.d=function(n,e,r){t.o(n,e)||Object.defineProperty(n,e,{enumerable:!0,get:r})},t.r=function(n){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(n,"__esModule",{value:!0})},t.t=function(n,e){if(1&e&&(n=t(n)),8&e)return n;if(4&e&&"object"===typeof n&&n&&n.__esModule)return n;var r=Object.create(null);if(t.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:n}),2&e&&"string"!=typeof n)for(var o in n)t.d(r,o,function(e){return n[e]}.bind(null,o));return r},t.n=function(n){var e=n&&n.__esModule?function(){return n["default"]}:function(){return n};return t.d(e,"a",e),e},t.o=function(n,e){return Object.prototype.hasOwnProperty.call(n,e)},t.p="",t(t.s=1)})([function(n,e,t){"use strict";t.d(e,"a",(function(){return r}));function r(n,e,t,r){function o(n){return n instanceof t?n:new t((function(e){e(n)}))}return new(t||(t=Promise))((function(t,u){function i(n){try{f(r.next(n))}catch(e){u(e)}}function c(n){try{f(r["throw"](n))}catch(e){u(e)}}function f(n){n.done?t(n.value):o(n.value).then(i,c)}f((r=r.apply(n,e||[])).next())}))}},function(n,e,t){"use strict";t.r(e);var r=t(0);let o=null;function u(){return Object(r["a"])(this,void 0,void 0,(function*(){return o||(o=new Promise((n,e)=>{document.addEventListener("initialized",()=>{n()})})),o}))}window.jsReady=u}]);
|
||||
BIN
ikfreunde.com_files/gdv@2x.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
110
ikfreunde.com_files/google-analytics_analytics.js
Normal file
@@ -0,0 +1,110 @@
|
||||
/*******************************************************************************
|
||||
|
||||
uBlock Origin - a browser extension to block requests.
|
||||
Copyright (C) 2019-present Raymond Hill
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see {http://www.gnu.org/licenses/}.
|
||||
|
||||
Home: https://github.com/gorhill/uBlock
|
||||
*/
|
||||
|
||||
(function() {
|
||||
'use strict';
|
||||
// https://developers.google.com/analytics/devguides/collection/analyticsjs/
|
||||
const noopfn = function() {
|
||||
};
|
||||
//
|
||||
const Tracker = function() {
|
||||
};
|
||||
const p = Tracker.prototype;
|
||||
p.get = noopfn;
|
||||
p.set = noopfn;
|
||||
p.send = noopfn;
|
||||
//
|
||||
const w = window;
|
||||
const gaName = w.GoogleAnalyticsObject || 'ga';
|
||||
const gaQueue = w[gaName];
|
||||
// https://github.com/uBlockOrigin/uAssets/pull/4115
|
||||
const ga = function() {
|
||||
const len = arguments.length;
|
||||
if ( len === 0 ) { return; }
|
||||
const args = Array.from(arguments);
|
||||
let fn;
|
||||
let a = args[len-1];
|
||||
if ( a instanceof Object && a.hitCallback instanceof Function ) {
|
||||
fn = a.hitCallback;
|
||||
} else if ( a instanceof Function ) {
|
||||
fn = ( ) => { a(ga.create()); };
|
||||
} else {
|
||||
const pos = args.indexOf('hitCallback');
|
||||
if ( pos !== -1 && args[pos+1] instanceof Function ) {
|
||||
fn = args[pos+1];
|
||||
}
|
||||
}
|
||||
if ( fn instanceof Function === false ) { return; }
|
||||
try {
|
||||
fn();
|
||||
} catch (ex) {
|
||||
}
|
||||
};
|
||||
ga.create = function() {
|
||||
return new Tracker();
|
||||
};
|
||||
ga.getByName = function() {
|
||||
return new Tracker();
|
||||
};
|
||||
ga.getAll = function() {
|
||||
return [new Tracker()];
|
||||
};
|
||||
ga.remove = noopfn;
|
||||
// https://github.com/uBlockOrigin/uAssets/issues/2107
|
||||
ga.loaded = true;
|
||||
w[gaName] = ga;
|
||||
// https://github.com/gorhill/uBlock/issues/3075
|
||||
const dl = w.dataLayer;
|
||||
if ( dl instanceof Object ) {
|
||||
if ( dl.hide instanceof Object && typeof dl.hide.end === 'function' ) {
|
||||
dl.hide.end();
|
||||
dl.hide.end = ()=>{};
|
||||
}
|
||||
if ( typeof dl.push === 'function' ) {
|
||||
const doCallback = function(item) {
|
||||
if ( item instanceof Object === false ) { return; }
|
||||
if ( typeof item.eventCallback !== 'function' ) { return; }
|
||||
setTimeout(item.eventCallback, 1);
|
||||
item.eventCallback = ()=>{};
|
||||
};
|
||||
dl.push = new Proxy(dl.push, {
|
||||
apply: function(target, thisArg, args) {
|
||||
doCallback(args[0]);
|
||||
return Reflect.apply(target, thisArg, args);
|
||||
}
|
||||
});
|
||||
if ( Array.isArray(dl) ) {
|
||||
const q = dl.slice();
|
||||
for ( const item of q ) {
|
||||
doCallback(item);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// empty ga queue
|
||||
if ( gaQueue instanceof Function && Array.isArray(gaQueue.q) ) {
|
||||
const q = gaQueue.q.slice();
|
||||
gaQueue.q.length = 0;
|
||||
for ( const entry of q ) {
|
||||
ga(...entry);
|
||||
}
|
||||
}
|
||||
})();
|
||||
BIN
ikfreunde.com_files/google@2x.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
ikfreunde.com_files/grimmeonline@2.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
15
ikfreunde.com_files/ic_bildung_1_brown.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 89.12 67.31">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #a79485;
|
||||
fill-opacity: 0.4;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g id="Ebene_2" data-name="Ebene 2">
|
||||
<g id="Ebene_1-2" data-name="Ebene 1">
|
||||
<path class="cls-1" d="M80,35.19c-3,1.49-5.36,2.34-7.32,3.7a5.3,5.3,0,0,0-1.87,3.48c-.52,5.26-.79,10.56-1.11,15.84-.08,1.33-.18-1.3.06,0,1.63,8.56.88,6.09-7.24,6.86-11,1-22.1,1.64-33.17,2.22-3.09.17-6.22-.4-9.37-.19-3.23-1.15-3.31-3.49-3.31-7,0-7.54-1.91-7.07-2.16-14.63-.18-5.68-3.33-8-7.78-9.75-3.7-1.47-7.56-3.6-6.62-8,.8-3.74,1.28-7.69,6.5-10C16.5,13.25,25.57,7.06,34.9,1.48c2.89-1.73,5.2-2.17,8.37-.07C53,7.89,63.16,13.73,72.89,20.23,80,25,84.81,31.29,83.82,40.74c-.36,3.39,1.12,6.9.87,10.35-.55,7.54,1,4.76,2.26,5.57,2.53,1.69,2.54,3.94,1.59,5-2,2.17-4.81,5-8.64,2.86-3.16-1.76-1.49-4.14-.87-6.5a26.85,26.85,0,0,0,1-6.22C80.12,46.48,80,41.16,80,35.19ZM8.54,26.58,42,45.94,72.61,29.75c-9.86-6.31-19.2-12.44-28.74-18.25-1.6-1-4.49-1.37-6.06-.58C28,15.86,18.46,21.21,8.54,26.58ZM67.08,42.15c-7,3.46-13,6.5-19.06,9.41-3.33,1.61-6.5,2.35-10.23.18C31.48,48.06,24.79,45,18,41.61c1.56,9.13,3,9.8,4.6,18.94C36.51,59,50.73,59.64,65,58,65.66,51.32,66.29,50.08,67.08,42.15Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
1
ikfreunde.com_files/ic_coins_brown.svg
Normal file
|
After Width: | Height: | Size: 16 KiB |
1
ikfreunde.com_files/ic_fire.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg height="224" viewBox="0 0 230 224" width="230" xmlns="http://www.w3.org/2000/svg"><path d="m40.236695 85.446558c5.5402803-51.4192744 65.69633-81.97635593 120.045495-83.51533023 3.177352-.103897 5.543932-2.5779443 8.710328-1.47728546 5.671757.48539379 14.352869 5.19647336 7.265912 9.99521599-29.976679 21.1219353-44.053811 64.0606171-27.794531 95.5576417 3.111614 6.409146 8.637286 10.164049 14.813037 3.801981 9.616057-7.987082 15.483203-21.6121993 10.350135-32.466189 2.731792-2.6526202 19.356286.4172114 18.271603 4.741924 5.574976 14.6186325 16.925794 28.316803 15.141729 44.612398 5.947493.834422 12.41724-4.05036 17.325702.269482 5.218893 33.135026-1.91189 66.40317-40.310379 80.229588-19.443937 7.115321-55.169067 22.873574-71.539737 6.495186.97877-.102274 1.917368-.201301 3.067788-.321432-3.63752-16.155983-.975118-32.523007 5.934711-47.597812-17.889956-5.771154-30.3930214-20.565113-24.4473547-37.7763-25.6416008 18.858929-21.783126 58.177449-9.5667531 83.148444.8491201 1.61365 2.0214537 3.051974 1.9356287 5.032511.5624279 1.625014 3.9607343 5.228941-.8746851 4.248413-43.2722556-16.326439-34.1547145-99.366116 14.1428712-105.184348 12.541413-3.543862 6.710788 5.443229 9.847967 11.138083 3.087876 4.15588-1.309288 9.315015-.44556 13.98551-1.30381 15.245261 14.369304 21.404405 29.227992 19.584584 16.173455.337666-22.838591 18.29886-6.570181 53.625463 35.575393-5.948104 79.068603-28.695053 73.860666-65.63693-10.45422 7.241946-27.445753 18.175482-36.879203 3.680227 18.567426-9.066637 25.542993-32.113913 15.742504-48.601068-6.908003 11.514709-18.229604 19.880041-33.517418 17.00664-14.984687.198053-22.645028-16.774496-26.947237-27.6430957-9.513797-28.2892049 4.017342-56.8819838 20.095842-80.7588129-30.347369.7678637-59.5735351 19.3995178-76.4025476 41.6789306-17.3622233 25.7826898-16.8198821 59.825191-8.3889413 88.119266-2.8413567 8.227344-13.9237435 4.422116-21.1184385 4.446467-3.2650037-4.607183-8.9349347-7.569871-13.1367096-11.52932-1.3585921-1.128257-1.3348533-1.150984-3.7653454-1.647742-8.4857228 32.446709 9.2526699 73.765246 48.8435791 81.799407 23.729711 8.074745-14.2104357 18.613796-36.086691 1.462675.8984238.702928-1.044509-.443186-1.6197194-1.293843.706687 1.045464-2.5637949-1.32144-2.1985819-2.970805-4.4464676-4.051983-8.0529455-9.27443-12.4939349-13.613753-17.38778822-23.384942-15.68406983-53.854361-9.7018818-80.344849 15.5781581-12.521211 14.5701704-13.043943 26.4706342 2.079564 2.4049272-7.35883-.78886-15.76637 1.6471103-23.1592908-.6135577-3.8474357 1.323897-7.2760367 1.1138995-11.2809414z" fill="#fff" fill-rule="evenodd" opacity=".4" transform="matrix(.99939083 .0348995 -.0348995 .99939083 4.003101 -3.992785)"/></svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
1
ikfreunde.com_files/ic_mic_brown.svg
Normal file
|
After Width: | Height: | Size: 9.1 KiB |
11
ikfreunde.com_files/ic_mobility_brown.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="230px" height="224px" viewBox="0 0 230 224" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 64 (93537) - https://sketch.com -->
|
||||
<title>desktop/icons/ic_mobility</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="desktop/icons/ic_mobility" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.4">
|
||||
<path d="M47.1358864,178.077004 C46.3256591,175.361076 45.5102045,173.085004 44.98225,170.742604 C44.4142197,168.230895 44.1162652,165.656349 43.5656591,162.294604 C36.5210379,166.440058 30.4155833,171.17024 24.0104318,175.448349 C24.0888409,175.769513 24.16725,176.090676 24.2474015,176.41184 C31.8896742,176.966895 39.531947,177.523695 47.1358864,178.077004 M61.3627803,180.049367 C68.3777803,181.805295 75.4485379,183.369222 82.3886136,185.37824 C87.1785379,186.765876 91.7942197,188.759185 96.4761136,190.509876 C97.122553,190.752495 97.7341439,191.117295 98.3213409,191.487331 C101.529144,193.49984 109.556492,205.375913 110.396341,209.126895 C110.856341,211.184785 110.917326,212.897076 108.868235,214.253295 C106.871417,215.572858 105.386871,214.96544 103.555583,213.81344 C96.7183106,209.510895 88.9505833,207.679913 81.1863409,206.072349 C73.2983864,204.438604 65.3529318,202.956713 57.3656591,201.94784 C48.5298258,200.829004 39.6120985,200.401367 30.7449015,199.521658 C24.2491439,198.87584 17.8004318,198.118313 11.6043712,195.641513 C6.03906818,193.416058 3.46376515,188.829004 1.91126515,183.810822 C0.574825758,179.492567 0.48944697,174.769367 0.0294469697,170.206749 C-0.184871212,168.077295 0.763007576,166.347549 2.0942197,164.52704 C6.59490152,158.372567 12.9512652,154.584931 19.0584621,150.470895 C27.4499773,144.815622 36.0052803,139.402967 44.3654318,133.704058 C51.1173258,129.099549 57.6862652,124.22624 64.6664167,119.237731 C68.3307348,123.864931 72.7878561,127.903913 75.3091439,133.386385 C76.940053,136.931404 75.9503561,140.582895 72.6083864,142.970676 C67.304447,146.763549 61.7792197,150.247476 56.3585379,153.878022 C55.2468712,154.623331 54.1874773,155.447185 53.2849015,156.908131 C54.7224015,156.826095 56.1703561,156.840058 57.5904318,156.649804 C71.6517955,154.766458 85.7061894,152.844713 99.7640682,150.947404 C101.691189,150.687331 103.623538,150.462167 105.559371,150.28064 C106.092553,150.230022 106.684977,150.291113 107.178083,150.484858 C107.624144,150.661149 106.10475,151.743331 107.615432,151.671767 C108.033614,151.650822 108.451795,151.678749 108.868235,151.647331 C125.665205,150.425513 142.45172,149.015185 159.262629,148.046458 C167.716871,147.559476 176.218159,147.931258 184.695053,147.800349 C190.648917,147.709585 196.599295,147.428567 202.551417,147.229585 C202.828462,147.220858 203.138614,147.09344 203.377326,147.180713 C208.301417,148.95584 213.556568,147.402385 218.552098,148.721949 C220.453083,149.22464 221.831341,150.029295 222.817553,151.706676 C224.715053,154.930531 226.748462,158.07584 228.590205,161.331113 C229.194826,162.397585 229.545053,163.675258 229.73672,164.900567 C230.693311,171.013149 227.921114,173.369513 222.810583,172.727185 C207.728159,170.831622 192.53422,170.78624 177.373386,170.637876 C165.27922,170.520931 153.164144,170.922385 141.082174,171.559476 C129.287705,172.182604 117.521114,173.318895 105.754523,174.373149 C94.2580076,175.401222 82.7736894,176.56544 71.2963409,177.769804 C67.8811894,178.127622 64.5008864,178.818822 61.1049015,179.358167 C61.1902803,179.588567 61.2774015,179.820713 61.3627803,180.049367" id="Fill-1" fill="#A69485"></path>
|
||||
<path d="M202.17563,56.2797956 C200.180097,55.2314758 198.542468,54.2177541 196.789611,53.4738968 C182.332035,47.3413992 167.862237,41.2400398 153.371489,35.1853878 C151.196131,34.2754601 148.923004,33.5644709 146.646386,32.9313273 C140.949601,31.3467384 138.105574,27.1707583 137.428175,21.8461243 C136.843307,17.2515084 136.626819,12.4700631 138.315078,8 C145.464429,10.7211336 152.678378,13.3713413 159.820745,16.2031886 C176.020703,22.6245796 191.803397,29.9074611 206.700934,38.9634907 C208.476487,40.0429486 210.246802,41.2262006 211.739524,42.6499088 C213.108289,43.9559838 214.258819,45.5596016 215.215558,47.1978175 C216.601781,49.572971 217.602166,52.1678219 218.984898,54.5429754 C222.181592,60.0371396 221.582757,65.3531242 217.132527,70.0290455 C213.740295,73.5943706 209.730024,76.3224238 205.340899,78.4899892 C195.996985,83.1036341 186.586728,87.5858065 177.246306,92.2081009 C167.534013,97.0120349 157.860129,101.897274 148.191483,106.789433 C144.402938,108.706163 142.987035,108.562581 141.195769,104.786208 C140.134278,102.549447 140.010321,99.8508017 139.615754,97.3389861 C139.44815,96.2716374 139.682097,95.1454721 139.711777,94.0452553 C139.849701,89.1288779 141.967445,85.8524462 146.590518,83.4167461 C155.347818,78.8013713 164.733632,75.7602061 173.752814,71.8264122 C179.737667,69.2142623 185.736488,66.6349805 191.728325,64.0401296 C191.983222,63.929416 192.34811,63.8671396 192.463337,63.6699309 C194.570606,60.0215705 198.732768,58.9490322 202.17563,56.2797956" id="Fill-4" fill="#A69485"></path>
|
||||
<path d="M119.245173,45.845782 C119.243437,45.9397207 119.239965,46.0318869 119.236492,46.1258256 L121.122048,46.1258256 C121.12552,46.0708803 121.127257,46.0159351 121.130729,45.9609898 C120.503947,45.9219964 119.873692,45.883003 119.245173,45.845782 L119.245173,45.845782 Z M140.995042,45.9592174 C141.024558,46.0460664 141.052337,46.1311429 141.080117,46.2162194 C141.600989,46.1878606 142.120125,46.1577293 143.526478,46.0797425 C142.092345,46.0123902 141.543693,45.9858038 140.995042,45.9592174 L140.995042,45.9592174 Z M107.556811,46.226854 C107.601953,46.1382326 107.648832,46.0496112 107.693974,45.9609898 L102.615474,45.9609898 L102.615474,46.226854 L107.556811,46.226854 Z M135.791533,46.1789984 C135.793269,46.1081013 135.795005,46.0354318 135.796741,45.9627622 L126.884626,45.9627622 C126.884626,46.0354318 126.882889,46.1081013 126.882889,46.1789984 L135.791533,46.1789984 Z M44.2465857,48.6568526 C55.8585534,47.80077 66.904507,46.9127836 77.9626144,46.1967227 C84.3294034,45.783747 90.7118187,45.477117 97.0924977,45.4203993 C118.594084,45.2272047 140.099142,45.2023907 161.602464,45.0003339 C163.70505,44.9808372 164.953406,45.8156507 166.116686,47.3682976 C168.547421,50.6118406 171.353184,53.6090161 173.424517,57.0705677 C174.811772,59.387131 175.608706,62.2761884 175.933383,65.0021825 C176.317091,68.2173666 175.051373,69.3109546 171.924406,69.6423986 C171.235119,69.7150682 170.537151,69.7540616 169.844392,69.7451995 C160.267296,69.6299916 150.68152,69.6991163 141.114842,69.3357686 C124.927884,68.7189637 108.760025,69.3446308 92.5956382,69.8391381 C79.4297365,70.2432517 66.2846697,71.2641701 53.1274491,71.9713689 C46.8005936,72.311675 42.4148534,69.6104949 41.3574838,64.287894 C40.8470294,61.7231909 40.8973804,58.8784442 41.4182521,56.313741 C41.9877386,53.5062153 43.3923561,50.8777047 44.2465857,48.6568526 L44.2465857,48.6568526 Z" id="Fill-6" fill="#A69485"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.9 KiB |
15
ikfreunde.com_files/ic_monitoring_1_brown.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 84.19 74.64">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #a79485;
|
||||
fill-opacity: 0.4;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g id="Ebene_2" data-name="Ebene 2">
|
||||
<g id="Ebene_1-2" data-name="Ebene 1">
|
||||
<path class="cls-1" d="M55.19,39.58c3.63,2.79,7.36,5.59,11,8.48A64.35,64.35,0,0,1,78.32,61c1.74,2.39,3.3,4.93,4.91,7.41,1.35,2.09,1.31,4.1-.37,5.83-2.88,1-4.92-.17-7-2C69.55,66.92,63.11,61.66,56.7,56.38c-2.48-2.05-5-4-7.57-6-.59-.46-1.25-.84-1.92-1.29-.73.44-1.41.78-2,1.23C39,54.9,31.87,56.31,24.27,56A26.69,26.69,0,0,1,12,52.22C7.17,49.45,4.57,44.85,2.4,40c-2.94-6.51-3-13.32-1.16-20.17,1.14-4.23,2.69-8.22,6-11.28C13.15,3.2,20,.61,28,1.39a9.4,9.4,0,0,0,2.7-.4,27.35,27.35,0,0,1,4.7-1,6.33,6.33,0,0,1,3.55,1.07c2.51,1.72,4.84,3.7,7.23,5.58a2.77,2.77,0,0,1,.47.6c2,2.87,4,5.67,5.83,8.62,3.09,5,5.15,10.37,4.48,16.38A60.3,60.3,0,0,1,55.19,39.58ZM22.26,43c1.52-.09,3-.15,4.55-.29,4.79-.45,8.69-3.12,12.93-5,2.62-1.15,4-3.07,5.32-5.2a47.88,47.88,0,0,0,3.36-6c1-2.28,1.8-4.84-.25-6.91-4.31-4.35-9.17-7.56-15.78-6.33a9.05,9.05,0,0,1-2-.06,59.92,59.92,0,0,0-6.82-.22,19.7,19.7,0,0,0-8.91,3.49C9.16,20.05,5.89,25,6,31.7c.07,4.34,1.89,7.62,6.09,9.38A24.16,24.16,0,0,0,22.26,43Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
1
ikfreunde.com_files/ic_pokal.svg
Normal file
|
After Width: | Height: | Size: 8.1 KiB |
1
ikfreunde.com_files/ic_smiley.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg height="224" viewBox="0 0 230 224" width="230" xmlns="http://www.w3.org/2000/svg"><g fill="#fff" fill-rule="evenodd" opacity=".4"><path d="m10 117.941005c.6619407 61.295678 74.0673405 85.960996 125.755995 77.417867 23.068208-3.402844 41.903814-17.421033 60.22387-30.411589 14.785463-14.528828 20.344067-34.467033 22.020135-54.566269-.719224-32.0070689-23.242179-61.4778967-52.728241-73.1886786-12.844194-4.9199268-21.731596-14.5415408-36.561613-11.6662864-60.5951509-.088991-117.8381665 23.6842989-118.710146 92.414956m115.233765-113.37827028c28.926156-3.63534054 56.521496 10.77232258 76.602394 30.81656738 11.475101 19.7046917 19.455753 42.2743628 25.304558 64.3686596 18.010506 68.4050973-52.448524 123.5909673-116.431485 117.8397863-75.1317159-2.19224-128.0379726-59.895047-105.44378413-135.5899254 12.81863123-57.1043451 66.23983703-78.90365511 119.96619813-77.53695382 0 .03183311.002119.06578842.002119.10186594"/><path d="m62.326929 128.074877c.4881694 0 1.0852865-.186815 1.4540325.029721 3.3291897 1.936088 6.482387 4.105696 9.3967374 6.682901 2.8745427 2.538993 3.5470851 6.01631 4.5276142 9.400219.2807498.965921.3917927 1.999775.4399811 3.010277.1047573 2.175977 1.1586166 3.829719 2.5916977 5.334858 1.2696595 1.337429 2.4701791 2.742792 4.0478253 4.502679 7.4252035 2.483798 15.5166638 2.918993 23.7359288 1.953072 12.076431-1.4181 20.593206-8.15832 26.763416-18.394963.609688-1.010502 1.064335-2.137764 1.787161-3.054858 2.491131-3.15039 6.362964-3.228937 9.103417-.271732 1.483365 1.60067 3.025394 3.146144 4.445904 4.799886 2.717406 3.165249 3.019108 5.854969 1.353465 8.803682-1.724306 3.059105-3.928402 5.795528-5.128922 9.221895-.559404 1.604915-2.277425 2.899887-3.681174 4.075975-3.878118 3.248043-8.030701 6.071506-12.774116 7.916309-2.023912.787597-3.989161 1.721675-5.985837 2.585697-2.514177 1.08905-5.198061 1.371396-7.867279 1.324692-6.176496-.108268-12.378133.227151-18.4980594-1.116647-1.7766852-.390615-3.7146968-.076425-5.4704306-.522235-9.6963436-2.451954-17.4127726-7.79318-22.1310453-16.849488-4.638657-8.901336-7.5173899-18.42256-8.4350646-28.495739-.027237-.295084.2074196-.617765.3247479-.936201"/><path d="m66.6622231 53.0037035c3.4531444-.0964035 5.4767383 1.7095559 7.5046059 3.0442091 2.8420063 1.8702283 5.0557795 4.6059461 6.7973097 7.528044.8162754 1.3625032 1.170992 3.3119966.98936 4.9122951-.7756754 6.7825235-1.5214349 13.5928969-4.0001772 20.0455061-.5470327 1.4182029-.5235274 1.4267721-3.2693755 3.4662422-1.9509411-.9490391-4.0365036-2.0201894-6.1690767-2.9885092-1.8227303-.8290703-3.0471435-2.3201115-3.8612821-3.9696829-1.5940877-3.2198777-2.8655116-6.6432739-2.6240479-10.315177.4829274-7.3695138 2.3120682-14.4519594 4.6326838-21.7229274"/><path d="m158.994673 69c1.712411.8868152 3.269954 1.3839691 4.438111 2.3603616 3.524382 2.9358957 6.920444 6.0330305 8.836398 10.3976839.993375 2.2595871 1.026562 4.3668929-.225667 6.6242406-1.378336 2.4880092-2.522157 5.1193421-3.588542 7.7618722-1.132758 2.8127269-3.31199 4.0287387-6.044327 4.5818787-.515493.103014-1.044261.176915-1.573029.212746-6.241231.414295-7.889483-1.1868994-7.836385-7.4909012.068585-8.3709977 2.261091-16.2045317 5.993441-24.4478818"/></g></svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
1
ikfreunde.com_files/ic_team_2_brown.svg
Normal file
|
After Width: | Height: | Size: 20 KiB |
19
ikfreunde.com_files/ic_wasser_1_brown.svg
Normal file
@@ -0,0 +1,19 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.57 105.78">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #a79485;
|
||||
fill-opacity: 0.4;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g id="Ebene_2" data-name="Ebene 2">
|
||||
<g id="Ebene_1-2" data-name="Ebene 1">
|
||||
<g>
|
||||
<path class="cls-1" d="M18,20.53,16.55,20c.29-3.21.59-6.47.9-9.73a17.87,17.87,0,0,0,.37-3.53c-.27-2.42,1-4.34,1.65-6.74,1,.77,1.75,1.39,2.53,2.05,4.12,3.46,6.9,7.54,6.71,13.28-.13,3.89.19,7.79.31,11.69a23.53,23.53,0,0,0,4.55,13.49A89.64,89.64,0,0,0,47.1,55.25c5.83,5.16,10.29,11.35,11.7,19.2.94,5.27,1.47,10.6-1.15,15.69-3.62,7-9.1,11.79-16.75,13.75a58.72,58.72,0,0,1-11,1.82,27.85,27.85,0,0,1-17.27-4.23C5.6,96.9,1.29,90.45.27,82a40.71,40.71,0,0,1,3-20.41c2-4.86,4-9.7,6.2-14.47,1.22-2.69,2.83-5.21,4.17-7.84a41.48,41.48,0,0,0,3.6-12.13C17.57,25,17.7,22.9,18,20.53Zm5.78,15.19c-.9,2.78-1.61,5.4-2.61,7.91s-2.28,4.9-3.48,7.32c-1.13,2.27-2.43,4.46-3.45,6.78-1.41,3.17-2.7,6.4-3.89,9.66-1.6,4.38-3.21,8.78-3.49,13.5-.46,7.55,2.88,13,10.46,14.88,6.27,1.55,12.33.79,18.29-1C43.85,92.16,49.26,86.65,50.76,78c.86-5,.63-10.07-2.87-14.28a43.37,43.37,0,0,0-5.25-5.5C35.22,52,28.83,44.94,24.38,36.26,24.28,36.07,24,36,23.74,35.72Z"/>
|
||||
<path class="cls-1" d="M34.39,85.56c1.65-2.41,3.47-4.72,4.91-7.25s2.43-5.17,3.67-7.87c1.65,1.17,1.31,2.8.85,4.13-1.18,3.36-2.51,6.67-5.63,8.83C37,84.2,36,85.16,34.89,86Z"/>
|
||||
<path class="cls-1" d="M41.58,61.94c.14.48.52,1,.39,1.42a15,15,0,0,1-1.91,4.35,64.93,64.93,0,0,1-5.43,5.58c-.21.2-.61.21-1.45.49l7.73-11.84Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
BIN
ikfreunde.com_files/leadawards.png
Normal file
|
After Width: | Height: | Size: 8.9 KiB |
1
ikfreunde.com_files/logo-df.svg
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
ikfreunde.com_files/ndr@2x.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
ikfreunde.com_files/prixeuropa@2.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
ikfreunde.com_files/shz@2x.png
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
BIN
ikfreunde.com_files/spon@2x.png
Normal file
|
After Width: | Height: | Size: 9.3 KiB |
BIN
ikfreunde.com_files/stifterverband@2x.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
ikfreunde.com_files/tagesschau@2.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
ikfreunde.com_files/telefonica@2x.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
ikfreunde.com_files/tide@2x.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
ikfreunde.com_files/zdf@2x.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |