Intégration de la page d'acceuil de embauche.beta.gouv.fr

Unification des deux dépots
pull/6/head
mama 2017-05-04 12:12:26 +02:00
parent fcc896d3c5
commit 304954e961
28 changed files with 3870 additions and 7 deletions

View File

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Syso</title>
<title>Simulateur d'embauche</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:200,300,400,500,600,700' rel='stylesheet' type='text/css'>
</head>
@ -12,4 +12,24 @@
<script src="https://use.fontawesome.com/1da10bbdec.js"></script>
<script type="text/javascript" src="/dist/bundle.js"></script>
</body>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
_paq.push(["setCookieDomain", "*.paie.sgmap.fr"]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//stats.data.gouv.fr/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', 10]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//stats.data.gouv.fr/piwik.php?idsite=10" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
</html>

View File

@ -0,0 +1,465 @@
#homeEmbauche {
font-weight: 400;
font-size: 18px;
}
/* Viewport explained here :
http://webdesign.tutsplus.com/articles/quick-tip-dont-forget-the-viewport-meta-tag--webdesign-5972?ec_unit=translation-info-language
*/
@viewport{
zoom: 1.0;
width: extend-to-zoom;
}
@-ms-viewport{
width: extend-to-zoom;
zoom: 1.0;
}
.narrow-screen {
display: none;
}
#project {
color: white;
position: absolute;
left: 1%;
top: 2%;
display: block;
height: 3em;
}
#project img {
width: 5em;
}
#project .name {
display: inline-block;
line-height: 1.3em;
vertical-align: top;
margin-top: 1.2em;
margin-left: 0.6em;
font-weight: 300;
font-size: 125%;
width: 6em;
}
#project .heavy{
font-weight: 400
}
nav ul {
position: absolute;
top: 4%;
right: 6%;
margin: 0;
line-height: 3em;
font-weight: 400;
}
nav a {
color: white;
text-decoration: none;
}
nav li {
list-style: none;
display: inline;
padding-left: 1.2em
}
nav li a {
font-size: 75%;
opacity: 0.85
}
nav li a:hover {
opacity: 1
}
nav li:first-child {
left: 10%
}
#splash {
padding: 13em 0 8em;
background: -webkit-linear-gradient(top,#3C4963 10%,#3C3C63 80%);
background: -moz-linear-gradient(top,#3C4963 10%,#3C3C63 80%);
background: -o-linear-gradient(top,#3C4963 10%,#3C3C63 80%);
background: -ms-linear-gradient(top,#3C4963 10%,#3C3C63 80%);
background: linear-gradient(to bottom,#3C4963 10%,#3C3C63 80%);
/* Get fancy or not ?
-webkit-box-shadow: 2px 8px 21px -11px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 8px 21px -11px rgba(0,0,0,0.75);
box-shadow: 2px 8px 21px -11px rgba(0,0,0,0.75);
*/
}
#showcase {
color: white;
width: 70%;
display:block;
margin: auto;
}
#image-wrap {
display: inline-block;
width: 65%;
padding: 0 1em;
background: white;
border-radius: 3px;
opacity: 0.75;
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.08),0 20px 30px rgba(0,0,0,0.2);
box-shadow: 0 1px 3px rgba(0,0,0,0.08),0 20px 30px rgba(0,0,0,0.2);
transition: opacity .5s;
}
#image-wrap:hover {
opacity: 1;
}
#showcase h1 {
display: inline-block;
width: 25%;
font-size: 250%;
font-weight: 600;
line-height: 1.3em;
vertical-align: top;
text-transform: uppercase;
text-align: left;
text-shadow: 2px 2px 5px rgba(6, 6, 6, 0.3);
float: right;
}
@media (max-width: 1366px) {
#showcase h1 {
line-height: 1.2
}
}
@media (max-width: 1280px) {
#showcase h1 {
font-size: 215%;
margin: .5em 0;
}
}
#main-actions {
display: flex;
align-items: center;
justify-content: space-around;
margin: 3em 0;
width: 70%;
line-height: 3em;
max-width: 50em;
}
#main-actions a {
background: white;
color: #222;
display: inline-block;
font-size: 120%;
padding: 0 .6em;
margin-top: .6em;
border: 1px solid white;
border-radius: .3em;
text-decoration: none;
font-weight: 600;
transition: .3s;
}
#main-actions > span {
position: relative;
}
#main-actions > span > span {
border: 1px solid white;
line-height: normal;
position: absolute;
top: -1.2em;
padding: 0 .6em;
border-radius: .1em;
left: 50%;
transform: translateX(-50%)
}
#main-actions a:hover {
background: white;
color: #3C4963;
}
@media (max-width: 1024px) {
#main-actions {
text-align: center;
}
#splash {
padding-top: 8em;
}
#showcase {
width: 80%;
}
#showcase h1 {
font-size: 210%;
float: none;
width: 100%;
text-align: center;
}
#image-wrap {
width: 95%;
}
}
/* Narrow screens */
@media (max-width: 800px) {
.wide-screen {
display: none;
}
.narrow-screen {
display: block;
}
#project {
transform: scale(.75);
transform-origin: left;
}
nav li {
display: block;
}
nav ul {
display: block;
line-height: 1.5em;
text-align: right;
}
#splash {
padding: 9em 0 5em;
}
#showcase {
width: 90%;
}
#showcase h1 {
font-size: 180%;
}
#image-wrap {
width: 100%;
padding: 0;
}
}
/* Mobile screens */
@media (max-width: 400px) {
#project .name {
display: none;
}
}
#image-wrap {
position: relative;
}
#image-wrap>img {
width: 100%;
}
#image-wrap .static, #image-wrap:hover .animated {
display: inline;
}
#image-wrap .animated,
#image-wrap:hover .static,
#image-wrap:hover #play-button {
display: none;
}
#image-wrap #play-button {
position: absolute;
color: black;
font-size: 3em;
left: 3%;
bottom: 0%;
opacity: 0.1;
/*
border: 1px solid black;
border-radius: 50%;
padding: 0 0.2em 0 0.35em
*/
}
#homeEmbauche section {
color: rgba(0,0,0,0.6);
padding: 2em 0;
text-align: center;
}
#homeEmbauche section p {
margin-left: auto;
margin-right: auto;
width: 50em;
}
@media (max-width: 1024px) {
#homeEmbauche section p,
#homeEmbauche section code {
max-width: 90%;
}
}
#homeEmbauche section h1 {
margin: 0.2em 0 1em;
font-size: 135%;
color: #3C4963;
}
#homeEmbauche section em {
font-weight: 600;
font-style: normal;
}
#homeEmbauche section a {
color: #3C4963
}
#homeEmbauche a.button {
display: inline-block;
margin: 1.2em 0 0;
padding: .5em 5%;
color: white;
background: #3C4963;
font-weight: 400;
font-size: 120%;
}
#homeEmbauche a.button:hover {
background: #4C5C7D;
}
#homeEmbauche section.light {
background: #f8f8f8;
border-top: 1px solid rgba(0,0,0,0.10);
border-bottom: 1px solid rgba(0,0,0,0.10)
}
#homeEmbauche section#integration p {
width: 40em;
margin-top: 3em;
vertical-align: top;
position: relative;
}
#homeEmbauche section#integration code {
position: relative;
display: inline-block;
font-size: 80%;
width: 40em;
padding: 1em 0em;
background: white;
margin: auto;
margin-bottom: 1em;
box-shadow: 0 1px 1px rgba(0,0,0,0.05), -1px 1px 1px rgba(0,0,0,0.02);
}
#homeEmbauche section#integration code em {
font-weight: 300;
color: black;
}
section#integration code:before {
content: "";
position: absolute;
top: 0;
right: 0;
border-width: 0 16px 16px 0;
border-style: solid;
border-color: #e8e8e8 #f8f8f8;
}
#homeEmbauche section#integrations a {
text-decoration: none;
}
#homeEmbauche section.dark {
background: #3C4963;
color: white;
}
#homeEmbauche section.dark h1 {
color: white;
margin-bottom: 3em;
}
#homeEmbauche h2 {
font-size: 100%;
font-weight: 400;
}
#homeEmbauche section.dark a {
color: white;
}
#homeEmbauche section.blocks article {
vertical-align: top;
max-width: 15em;
padding: 0 2%;
display: inline-block;
background-repeat: no-repeat;
background-size: contain;
text-align: center;
margin-bottom: 2em;
}
#homeEmbauche section.blocks article img {
width: 8em;
height: 8em;
border-radius: 8em
}
#homeEmbauche section.blocks .question-mark {
display: inline-block;
font-size: 6.5em;
border: 1px solid white;
border-radius: 10em;
width: 1.2em;
height: 1.2em;
line-height: 1.2em
}
#homeEmbauche section.blocks.extended {
padding-bottom: 0;
border-bottom: none;
}
#homeEmbauche section.extended .block-wrap {
margin-top: 3em;
width: 100%;
}
#homeEmbauche section.extended.blocks article {
padding: 0 5% 2em;
margin-bottom: 0;
font-size: 90%;
}
#homeEmbauche section.extended.blocks article h2 {
font-weight: 600;
color: #3C4963;
}
#homeEmbauche section.extended.blocks article p {
display: inline;
}
#homeEmbauche section.extended.blocks article img {
width: 8em;
border-radius: 0;
}
#scriptColor {
color: #4A89DC
}

View File

@ -0,0 +1,178 @@
import React, { Component } from 'react'
import './HomeEmbauche.css'
export default class HomeEmbauche extends Component {
render() {
return (
<div id="homeEmbauche">
<nav>
<div id="project">
<img src={require('../images/homeEmbauche/logo-SGMAP-fond-blanc.svg')} alt="Secrétariat général pour la modernisation de l'action publique" />
<a href="" className="name">
<span className="heavy">Prix </span>du&nbsp;<span className="heavy">Travail</span>
</a>
</div>
<ul>
<li><a href="#about">À propos</a></li>
<li><a id="integrate" href="#integration">
<strong>
<span className="wide-screen">Intégrez le module</span>
<span className="narrow-screen">Intégration</span>
</strong>
</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</nav>
<div id="splash">
<div id="showcase">
<h1>Estimer le&nbsp;prix<br/>d'une&nbsp;embauche en&nbsp;France</h1>
<div id="image-wrap">
<img src={require('../images/homeEmbauche/simulateur.gif')} alt="Vue animée du simulateur" className="animated" />
<span id="play-button">&#9654;</span>
<img src={require('../images/homeEmbauche/simulateur-statique.gif')} alt="Image du simulateur" className="static" />
</div>
<div id="main-actions">
<span>
<a href="/simulateur" target="_blank">Faire une simulation de CDI&nbsp; &#10142;</a>
</span>
<span>
<span>Nouveau</span>
<a href="/simulateurs/cdd" target="_blank">Faire une simulation de CDD (beta)&nbsp; &#10142;</a>
</span>
</div>
</div>
</div>
<section className="" id="about">
<h1>À propos</h1>
<p>
L'incubateur des services numériques du Gouvernement a lancé, le 1ᵉʳ octobre 2014, le développement en mode Startup dÉtat dune ressource ouverte de calcul des prélèvements sociaux sur les revenus d'activité en France.
</p>
<p>
Le premier produit, un <em>module d'estimation du prix d'une embauche</em>, peut être <em>intégré facilement et gratuitement</em> par toute organisation sur son site Web. Ce module repose sur le moteur de calcul OpenFisca.
</p>
<p>
Nous encourageons toutes les initiatives d'information sur le coût du travail&nbsp;: ses contreparties, la fiche de paie, les spécificités du droit conventionnel...
</p>
<a className="button" href="mailto:contact@embauche.beta.gouv.fr?subject=Rejoindre l'OpenLab&body=Bonjour, je suis intéressé par votre produit et votre démarche et souhaite participer au prochain OpenLab. Bonne journée !">Participez à l'évolution du produit</a>
{/* <p>Notre prochaine rencontre OpenLab aura lieu <strong>le mercredi 18 janvier 2017 à 10h</strong>, au 86 allée de Bercy, 75012, salle 381-R</p> */}
</section>
<section className="light" id="integration">
<h1>Intégrez le module Web</h1>
<p>
Intégrez le module en ajoutant une ligne à votre page Web :
</p>
<code>
<span>{'<'}</span><em>script<br/>
id</em>="script-simulateur-embauche" <em>data-couleur</em>="<span id="scriptColor">#4A89DC</span>" <em>src</em>="https://embauche.beta.gouv.fr/modules/v2/dist/simulateur.js">
<span>{'<'}</span><span>/</span><em>script</em><span>></span>
</code>
<p>
Vous pouvez <b>choisir la couleur principale du module</b> pour le fondre dans le thème visuel de votre page : changez simplement la valeur de <i>data-couleur</i> ci-dessus. Pour la choisir, utilisez notre <a href="/modules/v2/couleur.html" target="_blank">outil interactif</a>.
</p>
</section>
<section className="light" id="integration">
<h1>Ou utilisez l'API</h1>
<p>
Intégrez le calcul des prélèvements sociaux très simplement dans votre application
</p>
<a href="/api-prelevements-sociaux.html" target="_blank">Lire la <em>documentation</em> &rarr;</a>
</section>
<section className="blocks dark" id="integrations">
<h1>Quelques intégrations</h1>
<article>
<a href="/simulateur">
<img src={require('../images/homeEmbauche/simulateur.png')} alt=""/>
<h2>Notre démonstrateur</h2>
</a>
</article>
<article>
<a href="http://les-aides.fr/embauche">
<img src={require('../images/homeEmbauche/cci.png')} alt="Les-aides.fr"/>
<h2>CCI de France</h2>
</a>
</article>
<article>
<a href="https://recruteurs.apec.fr/Recrutement/Pratique-RH/Tous-les-dossiers-Recrutement/Diagnostiquer/Vous-envisagez-de-recruter-calculez-le-cout-de-cette-embauche">
<img src={require('../images/homeEmbauche/apec.png')} alt=""/>
<h2>APEC</h2>
</a>
</article>
{/* <article>
<a href="http://www.aides-creations.fr/simulateur-charges/">
<img src="img/aides-creations.png" alt="Aides-Créations.com"/>
<h2>Créateur de business plan<br/>
Aides-Créations.com</h2>
</a>
</article> */}
<article>
<a href="http://travail-emploi.gouv.fr/emploi/accompagnement-des-tpe-pme/tpe-pme/article/le-simulateur-du-cout-d-embauche">
<img src={require('../images/homeEmbauche/min-tra.jpg')} alt="Ministère du travail"/>
<h2>Ministère du travail</h2>
</a>
</article>
<article>
<a href="https://entreprise.pole-emploi.fr/cout-salarie/">
<img src={require('../images/homeEmbauche/pole-emploi.png')} alt="Pôle Emploi"/>
<h2>Pôle Emploi</h2>
</a>
</article>
<article>
<a href="mailto:contact@embauche.beta.gouv.fr?subject=Proposition de réutilisation">
<span className="question-mark">?</span>
<h2>Une idée&nbsp;?<br/>
Contactez-nous&nbsp;!</h2>
</a>
</article>
</section>
<section id="contribute" className="light blocks extended">
<h1>Contribuez</h1>
<p>
Les différentes briques sont ouvertes à la contribution et disponibles gratuitement sous licence libre.
Aidez-nous à les améliorer !
</p>
<div className="block-wrap">
<article className="alpha">
<a href="https://github.com/sgmap/cout-embauche/">
<img src={require('../images/homeEmbauche/widget.svg')} alt=""/>
<h2>Module Web</h2>
</a>
<p>Permet l'estimation rapide et précise du coût d'une embauche</p>
</article>
<article id="checklist" className="alpha">
<a href="https://github.com/openfisca/openfisca-france/tree/master/openfisca_france/tests/formulas">
<img src={require('../images/homeEmbauche/tests.svg')} alt="" />
<h2>Tests des calculs</h2>
</a>
<p>Fiabilisent le calcul des prélèvements</p>
</article>
<article id="openfisca" className="alpha">
<a href="http://www.openfisca.fr">
<img alt="OpenFisca" src={require('../images/homeEmbauche/logo-openfisca.svg')} />
<h2>Moteur de calcul</h2>
</a>
<p>Implémente les règles du système socio-fiscal français</p>
</article>
</div>
</section>
</div>
)
}
}

View File

@ -1,5 +1,5 @@
import React, {Component} from 'react'
import './Home.css'
import './HomeSyso.css'
import {searchRules} from '../engine/rules.js'
import {Link} from 'react-router-dom'
import '../components/Rule.css'

View File

@ -2,23 +2,31 @@ import React, { Component } from 'react'
import './Layout.css'
import './reset.css'
import {Link, Route, BrowserRouter as Router, Switch} from 'react-router-dom'
import Home from './Home'
import HomeEmbauche from '../components/HomeEmbauche'
import HomeSyso from '../components/HomeSyso'
import Rule from '../components/Rule'
import Route404 from '../components/Route404'
import Contact from '../components/Contact'
import Simulateur from '../components/Simulateur'
import Results from '../components/Results'
import R from 'ramda'
export default class Layout extends Component {
render() {
console.log('window.location.href.toString()', window.location.href.toString())
let displayWarning = ['/simulateurs', '/regle'].find(t => window.location.href.toString().indexOf(t) > -1)
return (
<Router>
<div id="main">
<div id="ninetyPercent">
<div id="header">
<div id="warning">
<Link to="/contact">version BETA</Link>
</div>
{ displayWarning &&
<div id="warning">
<Link to="/contact">version BETA</Link>
</div>
}
{
// this.props.location.pathname != '/' &&
// <Link to="/">
@ -27,7 +35,8 @@ export default class Layout extends Component {
}
</div>
<Switch>
<Route exact path="/" component={Home}/>
<Route exact path="/" component={HomeEmbauche}/>
<Route exact path="/syso" component={HomeSyso}/>
<Route path="/contact" component={Contact} />
<Route path="/regle/:name" component={Rule} />
<Route path="/simulateurs/:simulateurId/:intro?" component={Simulateur} />

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Calque_1" x="0px" y="0px" width="100px" height="100px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
<path fill="#000000" d="M94.455,22.233c-0.004-0.027-0.008-0.054-0.012-0.081c-0.019-0.112-0.041-0.223-0.072-0.333 c-0.006-0.022-0.01-0.044-0.018-0.065c-0.035-0.123-0.08-0.246-0.133-0.365c-0.015-0.027-0.027-0.052-0.039-0.079 c-0.027-0.059-0.056-0.118-0.086-0.176c-0.019-0.032-0.041-0.062-0.062-0.093c-0.019-0.033-0.039-0.065-0.06-0.098 c-0.063-0.098-0.133-0.193-0.205-0.282c-0.008-0.009-0.016-0.019-0.021-0.028c-0.086-0.103-0.181-0.195-0.276-0.285 c-0.021-0.018-0.039-0.034-0.062-0.051c-0.086-0.075-0.175-0.145-0.267-0.208c-0.02-0.014-0.039-0.028-0.059-0.041 c-0.109-0.073-0.225-0.138-0.344-0.195c-0.008-0.004-0.014-0.01-0.023-0.014L51.348-0.033c-0.852-0.409-1.843-0.409-2.694,0 L7.279,19.838c-1.078,0.518-1.764,1.608-1.764,2.804v51.116c0,1.131,0.613,2.172,1.602,2.721l41.375,22.942 c0.001,0.001,0.003,0.002,0.004,0.002c0.109,0.062,0.223,0.114,0.34,0.162c0.02,0.008,0.039,0.015,0.059,0.021 c0.093,0.035,0.189,0.066,0.287,0.094c0.031,0.008,0.062,0.017,0.093,0.023c0.089,0.022,0.18,0.038,0.272,0.053 c0.03,0.005,0.061,0.011,0.092,0.015c0.119,0.015,0.239,0.022,0.362,0.022c0.122,0,0.243-0.01,0.361-0.022 c0.031-0.004,0.062-0.01,0.092-0.015c0.092-0.015,0.183-0.029,0.271-0.053c0.031-0.008,0.064-0.017,0.096-0.023 c0.097-0.026,0.191-0.059,0.285-0.094c0.021-0.006,0.039-0.014,0.06-0.021c0.114-0.048,0.229-0.101,0.34-0.162 c0.002,0,0.004-0.001,0.004-0.002l41.375-22.942c0.988-0.549,1.603-1.59,1.603-2.721V22.642c0-0.002,0-0.004,0-0.007 C94.484,22.501,94.473,22.367,94.455,22.233z M88.268,71.924L53.111,91.422V80.459c0-1.718-1.394-3.109-3.111-3.109 s-3.11,1.393-3.11,3.109v10.963L11.735,71.926V27.689c3.692,0.649,7.001,2.428,9.548,4.976l6.278,6.935 c-1.046,1.328-2.385,3.19-2.758,4.592c-0.852,3.195-0.326,6.432,1.208,9.086l20.724-12.01c-1.538-2.65-4.085-4.716-7.282-5.567 c-1.854-0.493-4.69-0.179-6.47,0.188l-0.475,0.304l-7.006-7.749c-2.653-2.652-5.927-4.682-9.58-5.857L50,6.22l34.604,16.62 L62.057,35.344c-1.502,0.833-2.045,2.726-1.211,4.229c0.568,1.024,1.629,1.603,2.723,1.603c0.509,0,1.027-0.126,1.504-0.392 l23.193-12.86v18.553h-0.188c0,10.202-8.298,18.5-18.5,18.5c-3.63,0-7.005-1.064-9.861-2.877c0.39-1.024,0.611-2.131,0.611-3.291 c0-2.555-1.035-4.867-2.707-6.541l-2.369,2.367l-4.594-4.592l-0.003,0.003c-0.6-0.601-1.574-0.601-2.175,0.001 c-0.601,0.602-0.601,1.576,0,2.176l4.591,4.592l-3.987,3.986l-4.728-4.728l-0.003,0.003c-0.602-0.602-1.576-0.602-2.176,0 c-0.601,0.602-0.601,1.576,0,2.177l4.729,4.729l-2.369,2.367c1.676,1.674,3.987,2.709,6.542,2.709c1.674,0,3.238-0.451,4.594-1.228 c3.963,2.715,8.75,4.312,13.906,4.312c7.467,0,14.162-3.338,18.689-8.596V71.924z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_3" x="0px" y="0px" width="100px" height="100px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
<g>
<path d="M82.344,12.734H17.656c-3.106,0-5.625,2.519-5.625,5.625v15.469v39.531v8.281c0,3.106,2.519,5.625,5.625,5.625h64.688 c3.106,0,5.625-2.519,5.625-5.625v-8.281V33.828V18.359C87.969,15.253,85.45,12.734,82.344,12.734z M35.938,80.234H19.062v-9.844 h16.875V80.234z M35.938,66.172H19.062v-9.844h16.875V66.172z M35.938,52.109H19.062v-9.844h16.875V52.109z M58.438,80.234H41.562 v-9.844h16.875V80.234z M58.438,66.172H41.562v-9.844h16.875V66.172z M58.438,52.109H41.562v-9.844h16.875V52.109z M80.938,80.234 H64.062v-9.844h16.875V80.234z M80.938,66.172H64.062v-9.844h16.875V66.172z M80.938,52.109H64.062v-9.844h16.875V52.109z M80.938,33.828c0,1.553-1.261,2.812-2.812,2.812h-56.25c-1.553,0-2.812-1.26-2.812-2.812V21.172c0-1.553,1.26-2.812,2.812-2.812 h56.25c1.552,0,2.812,1.26,2.812,2.812V33.828z"/>
<path d="M64.062,33.828h9.844V21.172h-9.844V33.828z M66.875,23.984h4.219v7.031h-4.219V23.984z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

View File

@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="&#1057;&#1083;&#1086;&#1081;_1" x="0px" y="0px" width="100px" height="100px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
<path d="M82.5,12.5H72.063c-1.032-2.909-3.804-5-7.063-5h-4.437C59.155,5.93,57.133,5,55.001,5h-10c-2.132,0-4.154,0.931-5.563,2.5 H35c-3.259,0-6.03,2.092-7.063,5H17.5c-1.381,0-2.5,1.119-2.5,2.5v77.5c0,1.381,1.119,2.5,2.5,2.5h65c1.381,0,2.5-1.119,2.5-2.5V15 C85,13.619,83.881,12.5,82.5,12.5z M32.5,15c0-1.378,1.121-2.5,2.5-2.5h5.694c0.89,0,1.713-0.473,2.161-1.243 C43.313,10.47,44.115,10,45.001,10h10c0.886,0,1.688,0.47,2.146,1.257c0.448,0.77,1.271,1.243,2.161,1.243H65 c1.379,0,2.5,1.122,2.5,2.5c0,1.378-1.121,2.5-2.5,2.5H35C33.621,17.5,32.5,16.378,32.5,15C32.5,15,32.5,15,32.5,15z M80,90H20V17.5 h7.938c1.033,2.908,3.805,5,7.063,5h30c3.258,0,6.029-2.092,7.063-5H80V90z"/>
<path d="M42.5,32.5c0,1.381,1.119,2.5,2.5,2.5h27.5c1.381,0,2.5-1.119,2.5-2.5S73.881,30,72.5,30H45 C43.619,30,42.5,31.119,42.5,32.5z"/>
<path d="M45,45h22.5c1.381,0,2.5-1.119,2.5-2.5S68.881,40,67.5,40H45c-1.381,0-2.5,1.119-2.5,2.5S43.619,45,45,45z"/>
<path d="M72.5,50H45c-1.381,0-2.5,1.119-2.5,2.5S43.619,55,45,55h27.5c1.381,0,2.5-1.119,2.5-2.5S73.881,50,72.5,50z"/>
<path d="M45,65h22.5c1.381,0,2.5-1.119,2.5-2.5S68.881,60,67.5,60H45c-1.381,0-2.5,1.119-2.5,2.5S43.619,65,45,65z"/>
<path d="M72.5,70H45c-1.381,0-2.5,1.119-2.5,2.5S43.619,75,45,75h27.5c1.381,0,2.5-1.119,2.5-2.5S73.881,70,72.5,70z"/>
<path d="M67.5,80H45c-1.381,0-2.5,1.119-2.5,2.5S43.619,85,45,85h22.5c1.381,0,2.5-1.119,2.5-2.5S68.881,80,67.5,80z"/>
<path d="M35.732,30.732L30,36.464l-3.232-3.232c-0.977-0.977-2.559-0.977-3.535,0c-0.977,0.976-0.977,2.559,0,3.535l5,5 C28.721,42.256,29.36,42.5,30,42.5s1.279-0.244,1.768-0.732l7.5-7.5c0.977-0.976,0.977-2.559,0-3.535 C38.291,29.756,36.709,29.756,35.732,30.732z"/>
<path d="M35.732,70.732L30,76.465l-3.232-3.232c-0.977-0.977-2.559-0.977-3.535,0s-0.977,2.559,0,3.535l5,5 C28.721,82.256,29.36,82.5,30,82.5s1.279-0.244,1.768-0.732l7.5-7.5c0.977-0.977,0.977-2.559,0-3.535S36.709,69.756,35.732,70.732z"/>
<path d="M24.232,64.268C24.721,64.756,25.36,65,26,65s1.279-0.244,1.768-0.732L31,61.035l3.232,3.232C34.721,64.756,35.36,65,36,65 s1.279-0.244,1.768-0.732c0.977-0.977,0.977-2.559,0-3.535L34.535,57.5l3.232-3.232c0.977-0.977,0.977-2.559,0-3.535 s-2.559-0.977-3.535,0L31,53.965l-3.232-3.232c-0.977-0.977-2.559-0.977-3.535,0s-0.977,2.559,0,3.535l3.232,3.232l-3.232,3.232 C23.256,61.709,23.256,63.291,24.232,64.268z"/></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,43 @@
<?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"
version="1.2"
width="100"
height="100"
viewBox="0 0 500 500"
id="svg3907">
<defs
id="defs3909" />
<metadata
id="metadata3912">
<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
transform="translate(-130,-184)"
id="layer1">
<g
transform="matrix(3.7620511,0,0,3.5498239,-341.52659,-662.17695)"
id="flowRoot3915">
<path
d="m 170.05469,367.26562 -5.55469,0 c -6.75005,-2e-5 -11.62505,-1.82814 -14.625,-5.48437 -2.95317,-3.60939 -4.42973,-10.33595 -4.42969,-20.17969 l 0,-6.75 c -4e-5,-8.76561 -1.14847,-14.85935 -3.44531,-18.28125 -2.29691,-3.46872 -6.00003,-5.20309 -11.10938,-5.20312 l 0,-11.46094 c 5.10935,4e-5 8.81247,-1.71089 11.10938,-5.13281 2.29684,-3.4687 3.44527,-9.58588 3.44531,-18.35157 l 0,-6.82031 c -4e-5,-9.79679 1.47652,-16.49991 4.42969,-20.10937 2.99995,-3.65616 7.87495,-5.48428 14.625,-5.48438 l 5.55469,0 0,9.21094 -2.10938,0 c -4.35943,9e-5 -7.4063,0.93759 -9.14062,2.8125 -1.68755,1.87509 -2.5313,6.35164 -2.53125,13.42969 l 0,4.5 c -5e-5,9.70318 -1.12505,16.85161 -3.375,21.44531 -2.25005,4.59379 -6.07036,7.99223 -11.46094,10.19531 5.39058,2.25004 9.21089,5.67191 11.46094,10.26563 2.24995,4.59377 3.37495,11.7422 3.375,21.44531 l 0,4.5 c -5e-5,7.07812 0.8437,11.55468 2.53125,13.42969 1.73432,1.87498 4.78119,2.81248 9.14062,2.8125 l 2.10938,0 0,9.21093"
id="path3951"/>
<path
d="m 252.95312,311.36719 c -5.06255,3e-5 -8.76567,1.7344 -11.10937,5.20312 -2.29692,3.4219 -3.44536,9.51564 -3.44531,18.28125 l 0,6.75 c -5e-5,9.84374 -1.47661,16.5703 -4.42969,20.17969 -2.95316,3.65623 -7.80472,5.48435 -14.55469,5.48437 l -5.625,0 0,-9.21093 2.17969,0 c 4.35935,-2e-5 7.38278,-0.93752 9.07031,-2.8125 1.73434,-1.87501 2.60153,-6.35157 2.60156,-13.42969 l 0,-4.5 c -3e-5,-9.70311 1.12497,-16.85154 3.375,-21.44531 2.24996,-4.59372 6.07027,-8.01559 11.46094,-10.26563 -5.39067,-2.20308 -9.21098,-5.60152 -11.46094,-10.19531 -2.25003,-4.5937 -3.37503,-11.74213 -3.375,-21.44531 l 0,-4.5 c -3e-5,-7.07805 -0.86722,-11.5546 -2.60156,-13.42969 -1.68753,-1.87491 -4.71096,-2.81241 -9.07031,-2.8125 l -2.17969,0 0,-9.21094 5.625,0 c 6.74997,1e-4 11.60153,1.82822 14.55469,5.48438 2.95308,3.60946 4.42964,10.31258 4.42969,20.10937 l 0,6.82031 c -5e-5,7.92194 1.0312,13.82818 3.09375,17.71875 2.06245,3.8438 5.88275,5.76567 11.46093,5.76563 l 0,11.46094"
id="path3953" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 78 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 88 KiB

View File

@ -0,0 +1,46 @@
<?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" width="279.99899" height="204.37177" viewBox="0 0 279.99899 204.37175" id="svg6535" version="1.1" inkscape:version="0.91 r13725" sodipodi:docname="logo-openfisca.svg">
<defs id="defs6537"/>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:zoom="5.8990195" inkscape:cx="162.20645" inkscape:cy="94.57921" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="3200" inkscape:window-height="1634" inkscape:window-x="0" inkscape:window-y="55" inkscape:window-maximized="1" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" units="px"/>
<metadata id="metadata6540">
<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/3.0/"/>
</cc:Work>
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/3.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 inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-145.7148,-95.890629)">
<g id="g6488" transform="matrix(1.2610695,0,0,1.2610695,-142.85234,-295.97815)">
<path d="m 295.98239,471.54195 -14.47875,0.0713 -0.1825,-56.635 -24.51875,0.0987 0,56.13375 -16.99,0 0,-56.13375 -10.60375,0 -0.0488,-12.80625 10.6525,0.12125 0,-6.9525 c 0,-8.03875 2.37125,-13.41 5.23625,-17.61625 3.19875,-4.695 12.27625,-9.72625 22.65,-10.14125 8.3575,-0.335 11.4275,1.655 20.9925,4.485 l -3.5425,12.91625 c -12.91625,-3.26625 -17.91625,-5.2075 -23.2075,-2.93 -5.3825,2.315 -5.13875,11.51875 -5.13875,14.04375 l 0.0138,5.97 39.045,-0.10625 0.12125,69.48125 z" style="fill:#971640;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3986" inkscape:connector-curvature="0"/>
<path d="m 295.98239,471.54195 -14.47875,0.0713 -0.1825,-56.635 -24.51875,0.0987 0,56.13375 -16.99,0 0,-56.13375 -10.60375,0 -0.0488,-12.80625 10.6525,0.12125 0,-6.9525 c 0,-8.03875 2.37125,-13.41 5.23625,-17.61625 3.19875,-4.695 12.27625,-9.72625 22.65,-10.14125 8.3575,-0.335 11.4275,1.655 20.9925,4.485 l -3.5425,12.91625 c -12.91625,-3.26625 -17.91625,-5.2075 -23.2075,-2.93 -5.3825,2.315 -5.13875,11.51875 -5.13875,14.04375 l 0.0138,5.97 39.045,-0.10625 0.12125,69.48125 z" style="fill:none;stroke:#ffffff;stroke-width:0.66249996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3990" inkscape:connector-curvature="0"/>
<path d="m 346.53227,450.2467 c 0,7.24125 -2.2175,12.75625 -6.65625,16.54375 -4.43875,3.79 -11.0775,5.68375 -19.91625,5.68375 -4.53125,0 -8.39375,-0.34875 -11.58875,-1.0425 -3.1925,-0.695 -6.1825,-1.715 -8.9675,-3.0625 l 2.78375,-14.97125 c 3.155,1.68375 3.92875,2.15375 7.88375,3.29 3.95625,1.13625 7.4375,1.705 10.445,1.705 6.165,0 9.2475,-2.02125 9.2475,-6.0625 0,-1.515 -0.4075,-2.74625 -1.225,-3.695 -0.81625,-0.94625 -2.22875,-2.02 -4.2325,-3.21875 -2.00625,-1.2 -4.68,-2.59875 -8.0225,-4.19875 -4.79125,-2.27375 -8.31,-4.3775 -10.5575,-6.31375 -2.2475,-1.9375 -3.88125,-4.1575 -4.9025,-6.6625 -1.02125,-2.50375 -1.53125,-5.58875 -1.53125,-9.25 0,-6.27125 2.14375,-11.12375 6.43375,-14.55375 4.29,-3.43125 10.37,-5.1475 18.245,-5.1475 7.50125,0 14.79875,1.85375 21.89375,5.55625 l -5.12625,13.8925 c -3.11875,-1.51625 -6.035,-2.7575 -8.74625,-3.725 -2.71125,-0.96875 -5.4775,-1.4525 -8.3,-1.4525 -5.01375,0 -7.52125,1.53625 -7.52125,4.60875 0,1.7275 0.80875,3.22 2.4225,4.4825 1.61625,1.26375 5.15375,3.1375 10.61375,5.62 4.865,2.23375 8.43125,4.31625 10.6975,6.25125 2.26375,1.9375 3.93625,4.1675 5.01375,6.69375 1.075,2.525 1.61375,5.535 1.61375,9.02875" style="fill:#971640;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3994" inkscape:connector-curvature="0"/>
<path d="m 346.53227,450.2467 c 0,7.24125 -2.2175,12.75625 -6.65625,16.54375 -4.43875,3.79 -11.0775,5.68375 -19.91625,5.68375 -4.53125,0 -8.39375,-0.34875 -11.58875,-1.0425 -3.1925,-0.695 -6.1825,-1.715 -8.9675,-3.0625 l 2.78375,-14.97125 c 3.155,1.68375 3.92875,2.15375 7.88375,3.29 3.95625,1.13625 7.4375,1.705 10.445,1.705 6.165,0 9.2475,-2.02125 9.2475,-6.0625 0,-1.515 -0.4075,-2.74625 -1.225,-3.695 -0.81625,-0.94625 -2.22875,-2.02 -4.2325,-3.21875 -2.00625,-1.2 -4.68,-2.59875 -8.0225,-4.19875 -4.79125,-2.27375 -8.31,-4.3775 -10.5575,-6.31375 -2.2475,-1.9375 -3.88125,-4.1575 -4.9025,-6.6625 -1.02125,-2.50375 -1.53125,-5.58875 -1.53125,-9.25 0,-6.27125 2.14375,-11.12375 6.43375,-14.55375 4.29,-3.43125 10.37,-5.1475 18.245,-5.1475 7.50125,0 14.79875,1.85375 21.89375,5.55625 l -5.12625,13.8925 c -3.11875,-1.51625 -6.035,-2.7575 -8.74625,-3.725 -2.71125,-0.96875 -5.4775,-1.4525 -8.3,-1.4525 -5.01375,0 -7.52125,1.53625 -7.52125,4.60875 0,1.7275 0.80875,3.22 2.4225,4.4825 1.61625,1.26375 5.15375,3.1375 10.61375,5.62 4.865,2.23375 8.43125,4.31625 10.6975,6.25125 2.26375,1.9375 3.93625,4.1675 5.01375,6.69375 1.075,2.525 1.61375,5.535 1.61375,9.02875 z" style="fill:none;stroke:#ffffff;stroke-width:0.66249996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3998" inkscape:connector-curvature="0"/>
<path d="m 375.28477,472.47395 c -19.3875,0 -29.0825,-12.06125 -29.0825,-36.18125 0,-11.99625 2.6375,-21.1625 7.91125,-27.5 5.27375,-6.33375 12.8325,-9.5025 22.67375,-9.5025 7.20625,0 13.66625,1.60125 20.38125,4.8 l -5.015,14.90125 c -3.6675,-1.22 -6.15625,-2.22 -8.4575,-2.99875 -2.30375,-0.78 -4.605,-1.1675 -6.90875,-1.1675 -8.83875,0 -13.2575,7.11375 -13.2575,21.34125 0,13.8075 4.41875,20.71125 13.2575,20.71125 3.2675,0 6.29375,-0.495 9.08125,-1.48375 2.785,-0.98875 5.57125,-2.53625 9.9,-5.305 l 4.01375,14.2375 c -4.29375,2.6425 -11.0825,6.25375 -13.885,7.01 -2.805,0.7575 -6.3425,1.1375 -10.6125,1.1375" style="fill:#971640;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path4002" inkscape:connector-curvature="0"/>
<path d="m 375.28477,472.47395 c -19.3875,0 -29.0825,-12.06125 -29.0825,-36.18125 0,-11.99625 2.6375,-21.1625 7.91125,-27.5 5.27375,-6.33375 12.8325,-9.5025 22.67375,-9.5025 7.20625,0 13.66625,1.60125 20.38125,4.8 l -5.015,14.90125 c -3.6675,-1.22 -6.15625,-2.22 -8.4575,-2.99875 -2.30375,-0.78 -4.605,-1.1675 -6.90875,-1.1675 -8.83875,0 -13.2575,7.11375 -13.2575,21.34125 0,13.8075 4.41875,20.71125 13.2575,20.71125 3.2675,0 6.29375,-0.495 9.08125,-1.48375 2.785,-0.98875 5.57125,-2.53625 9.9,-5.305 l 4.01375,14.2375 c -4.29375,2.6425 -11.0825,6.25375 -13.885,7.01 -2.805,0.7575 -6.3425,1.1375 -10.6125,1.1375 z" style="fill:none;stroke:#ffffff;stroke-width:0.66249996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4006" inkscape:connector-curvature="0"/>
<path d="m 433.64902,438.50295 -6.575,0.2525 c -4.93875,0.16875 -8.615,1.17875 -11.03,3.03 -2.41375,1.85375 -3.62,4.67375 -3.62,8.46125 0,5.43125 2.7475,8.14625 8.24375,8.14625 3.9375,0 7.08375,-1.285 9.44375,-3.85125 2.35875,-2.56875 3.5375,-5.9775 3.5375,-10.23 l 0,-5.80875 z m 1.29125,32.7075 0.435,-9.5975 -0.44625,0 c -2.86,4.08375 -5.80125,6.915 -8.82875,8.4925 -3.0275,1.57875 -6.97375,2.36875 -11.83875,2.36875 -5.98,0 -10.68875,-1.93625 -14.12125,-5.81125 -3.43625,-3.87125 -5.155,-9.385 -5.155,-16.5425 0,-7.4925 2.31375,-13.0175 6.93625,-16.57375 4.625,-3.5575 11.5975,-5.52625 20.92,-5.905 l 10.8075,-0.3775 0,-3.095 c 0,-7.155 -3.2325,-10.73375 -9.695,-10.73375 -4.97625,0 -10.825,1.70375 -21.8525,7.10125 l -5.62625,-13.00625 c 11.4725,-6.23875 19.42125,-8.365 28.1475,-8.365 8.3575,0 14.76375,2.0625 19.22125,6.1875 4.4575,4.12625 6.685,10.3975 6.685,18.81625 l 0,47.04125 -15.58875,0 z" style="fill:#971640;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path4010" inkscape:connector-curvature="0"/>
<path d="m 433.64902,438.50295 -6.575,0.2525 c -4.93875,0.16875 -8.615,1.17875 -11.03,3.03 -2.41375,1.85375 -3.62,4.67375 -3.62,8.46125 0,5.43125 2.7475,8.14625 8.24375,8.14625 3.9375,0 7.08375,-1.285 9.44375,-3.85125 2.35875,-2.56875 3.5375,-5.9775 3.5375,-10.23 l 0,-5.80875 z m 1.29125,32.7075 0.435,-9.5975 -0.44625,0 c -2.86,4.08375 -5.80125,6.915 -8.82875,8.4925 -3.0275,1.57875 -6.97375,2.36875 -11.83875,2.36875 -5.98,0 -10.68875,-1.93625 -14.12125,-5.81125 -3.43625,-3.87125 -5.155,-9.385 -5.155,-16.5425 0,-7.4925 2.31375,-13.0175 6.93625,-16.57375 4.625,-3.5575 11.5975,-5.52625 20.92,-5.905 l 10.8075,-0.3775 0,-3.095 c 0,-7.155 -3.2325,-10.73375 -9.695,-10.73375 -4.97625,0 -10.825,1.70375 -21.8525,7.10125 l -5.62625,-13.00625 c 11.4725,-6.23875 19.42125,-8.365 28.1475,-8.365 8.3575,0 14.76375,2.0625 19.22125,6.1875 4.4575,4.12625 6.685,10.3975 6.685,18.81625 l 0,47.04125 -15.58875,0 z" style="fill:none;stroke:#ffffff;stroke-width:0.66249996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4014" inkscape:connector-curvature="0"/>
<path d="m 247.88364,339.27195 c 0,5.34375 0.91,9.38375 2.73375,12.11875 1.82125,2.73625 4.78875,4.105 8.90125,4.105 4.07875,0 7.0125,-1.35875 8.80125,-4.08 1.78875,-2.72 2.68375,-6.76625 2.68375,-12.14375 0,-5.34125 -0.90375,-9.35 -2.70875,-12.0225 -1.805,-2.67125 -4.76375,-4.00625 -8.8775,-4.00625 -4.07875,0 -7.02,1.3275 -8.825,3.9825 -1.805,2.65625 -2.70875,6.67125 -2.70875,12.04625 m 38.765,0 c 0,8.7875 -2.40625,15.66 -7.22,20.61625 -4.81375,4.9575 -11.51875,7.435 -20.11125,7.435 -5.3825,0 -10.13,-1.13375 -14.2425,-3.40375 -4.11125,-2.2675 -7.27125,-5.5275 -9.4775,-9.77625 -2.20625,-4.24875 -3.31,-9.205 -3.31,-14.87125 0,-8.81875 2.39,-15.675 7.17125,-20.5675 4.78125,-4.8925 11.5,-7.33875 20.16,-7.33875 5.3825,0 10.13,1.12625 14.2425,3.38 4.11375,2.2525 7.27125,5.4875 9.47875,9.705 2.20625,4.21625 3.30875,9.1575 3.30875,14.82125" style="fill:#971640;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path4018" inkscape:connector-curvature="0"/>
<path d="m 247.88364,339.27195 c 0,5.34375 0.91,9.38375 2.73375,12.11875 1.82125,2.73625 4.78875,4.105 8.90125,4.105 4.07875,0 7.0125,-1.35875 8.80125,-4.08 1.78875,-2.72 2.68375,-6.76625 2.68375,-12.14375 0,-5.34125 -0.90375,-9.35 -2.70875,-12.0225 -1.805,-2.67125 -4.76375,-4.00625 -8.8775,-4.00625 -4.07875,0 -7.02,1.3275 -8.825,3.9825 -1.805,2.65625 -2.70875,6.67125 -2.70875,12.04625 z m 38.765,0 c 0,8.7875 -2.40625,15.66 -7.22,20.61625 -4.81375,4.9575 -11.51875,7.435 -20.11125,7.435 -5.3825,0 -10.13,-1.13375 -14.2425,-3.40375 -4.11125,-2.2675 -7.27125,-5.5275 -9.4775,-9.77625 -2.20625,-4.24875 -3.31,-9.205 -3.31,-14.87125 0,-8.81875 2.39,-15.675 7.17125,-20.5675 4.78125,-4.8925 11.5,-7.33875 20.16,-7.33875 5.3825,0 10.13,1.12625 14.2425,3.38 4.11375,2.2525 7.27125,5.4875 9.47875,9.705 2.20625,4.21625 3.30875,9.1575 3.30875,14.82125 z" style="fill:none;stroke:#ffffff;stroke-width:1.245;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4022" inkscape:connector-curvature="0"/>
<path d="m 318.4189,324.39045 c -2.2725,0 -4.47125,1.0875 -6.59375,3.26 -2.12375,2.1725 -3.82875,5.06875 -5.115,8.69125 -1.28875,3.62125 -1.93125,7.62 -1.93125,11.99625 0,2.5775 0.6175,4.63625 1.855,6.18125 1.23625,1.545 2.9425,2.3175 5.11625,2.3175 2.23875,0 4.3775,-1.11 6.41875,-3.33125 2.03875,-2.22125 3.68625,-5.27 4.93875,-9.14875 1.255,-3.87875 1.88125,-7.70125 1.88125,-11.46875 0,-5.66375 -2.19,-8.4975 -6.57,-8.4975 m 6.06875,-11.78 c 4.88125,0 8.73375,1.73 11.55875,5.19 2.82625,3.46125 4.2375,8.2975 4.2375,14.50875 0,6.1475 -1.145,12.06375 -3.43375,17.74375 -2.29125,5.6825 -5.425,10.1875 -9.4025,13.52 -3.98,3.33 -8.36,4.99625 -13.14,4.99625 -2.775,0 -5.165,-0.59625 -7.17125,-1.78625 -2.00625,-1.19 -3.8625,-3.2175 -5.56625,-6.08375 l -0.40125,0 c -0.40125,5.11875 -1.12125,9.865 -2.1575,14.24375 l -3.61,16.415 -15.09625,0 17.15125,-77.73375 11.535,0 -0.8525,8.2075 0.45125,0 c 4.61375,-6.14625 9.9125,-9.22125 15.8975,-9.22125" style="fill:#971640;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path4026" inkscape:connector-curvature="0"/>
<path d="m 318.4189,324.39045 c -2.2725,0 -4.47125,1.0875 -6.59375,3.26 -2.12375,2.1725 -3.82875,5.06875 -5.115,8.69125 -1.28875,3.62125 -1.93125,7.62 -1.93125,11.99625 0,2.5775 0.6175,4.63625 1.855,6.18125 1.23625,1.545 2.9425,2.3175 5.11625,2.3175 2.23875,0 4.3775,-1.11 6.41875,-3.33125 2.03875,-2.22125 3.68625,-5.27 4.93875,-9.14875 1.255,-3.87875 1.88125,-7.70125 1.88125,-11.46875 0,-5.66375 -2.19,-8.4975 -6.57,-8.4975 z m 6.06875,-11.78 c 4.88125,0 8.73375,1.73 11.55875,5.19 2.82625,3.46125 4.2375,8.2975 4.2375,14.50875 0,6.1475 -1.145,12.06375 -3.43375,17.74375 -2.29125,5.6825 -5.425,10.1875 -9.4025,13.52 -3.98,3.33 -8.36,4.99625 -13.14,4.99625 -2.775,0 -5.165,-0.59625 -7.17125,-1.78625 -2.00625,-1.19 -3.8625,-3.2175 -5.56625,-6.08375 l -0.40125,0 c -0.40125,5.11875 -1.12125,9.865 -2.1575,14.24375 l -3.61,16.415 -15.09625,0 17.15125,-77.73375 11.535,0 -0.8525,8.2075 0.45125,0 c 4.61375,-6.14625 9.9125,-9.22125 15.8975,-9.22125 z" style="fill:none;stroke:#ffffff;stroke-width:1.245;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4030" inkscape:connector-curvature="0"/>
<path d="m 369.78914,323.08795 c -3.24375,0 -5.78375,0.98875 -7.6225,2.96875 -1.83875,1.98 -2.89125,4.7875 -3.15875,8.425 l 21.46375,0 c -0.0687,-3.6375 -1.05375,-6.445 -2.95875,-8.425 -1.90625,-1.98 -4.48125,-2.96875 -7.72375,-2.96875 m 2.1575,45.48125 c -9.02875,0 -16.08375,-2.3975 -21.165,-7.19375 -5.08125,-4.79625 -7.6225,-11.5875 -7.6225,-20.375 0,-9.045 2.34875,-16.0375 7.04625,-20.97875 4.69875,-4.94 11.19125,-7.41125 19.48375,-7.41125 7.9225,0 14.09125,2.1725 18.505,6.5175 4.41375,4.34625 6.62,10.34875 6.62,18.01 l 0,7.145 -36.15875,0 c 0.1675,4.185 1.45375,7.4525 3.8625,9.8025 2.405,2.34875 5.785,3.52375 10.13,3.52375 3.37625,0 6.57,-0.3375 9.5775,-1.01375 3.00875,-0.675 6.15125,-1.75375 9.42875,-3.235 l 1.615,10.9425 c -2.675,1.2875 -7.14875,2.6975 -10.19,3.325 -3.04375,0.6275 -6.75375,0.94125 -11.1325,0.94125" style="fill:#971640;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path4034" inkscape:connector-curvature="0"/>
<path d="m 369.78914,323.08795 c -3.24375,0 -5.78375,0.98875 -7.6225,2.96875 -1.83875,1.98 -2.89125,4.7875 -3.15875,8.425 l 21.46375,0 c -0.0687,-3.6375 -1.05375,-6.445 -2.95875,-8.425 -1.90625,-1.98 -4.48125,-2.96875 -7.72375,-2.96875 z m 2.1575,45.48125 c -9.02875,0 -16.08375,-2.3975 -21.165,-7.19375 -5.08125,-4.79625 -7.6225,-11.5875 -7.6225,-20.375 0,-9.045 2.34875,-16.0375 7.04625,-20.97875 4.69875,-4.94 11.19125,-7.41125 19.48375,-7.41125 7.9225,0 14.09125,2.1725 18.505,6.5175 4.41375,4.34625 6.62,10.34875 6.62,18.01 l 0,7.145 -36.15875,0 c 0.1675,4.185 1.45375,7.4525 3.8625,9.8025 2.405,2.34875 5.785,3.52375 10.13,3.52375 3.37625,0 6.57,-0.3375 9.5775,-1.01375 3.00875,-0.675 6.15125,-1.75375 9.42875,-3.235 l 1.615,10.9425 c -2.675,1.2875 -7.14875,2.6975 -10.19,3.325 -3.04375,0.6275 -6.75375,0.94125 -11.1325,0.94125 z" style="fill:none;stroke:#ffffff;stroke-width:1.245;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4038" inkscape:connector-curvature="0"/>
<path d="m 448.96889,367.60332 -15.29625,0 0,-31.5275 c 0,-3.895 -0.71875,-6.81625 -2.15625,-8.76375 -1.43625,-1.9475 -3.7275,-2.92125 -6.87125,-2.92125 -4.28,0 -7.37125,1.375 -9.2775,4.1275 -1.905,2.75375 -2.8575,7.315 -2.8575,13.69 l 0,25.395 -15.29625,0 0,-53.97875 13.60875,0 0.1325,6.90375 0.85375,0 c 1.70375,-2.6075 4.0525,-4.57875 7.04375,-5.915 2.9925,-1.33375 6.39375,-2.0025 10.20625,-2.0025 6.51875,0 11.4675,1.6975 14.84375,5.09375 3.3775,3.39625 5.06625,8.29625 5.06625,14.70125 l 0,35.1975 z" style="fill:#971640;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path4042" inkscape:connector-curvature="0"/>
<path d="m 448.96889,367.60332 -15.29625,0 0,-31.5275 c 0,-3.895 -0.71875,-6.81625 -2.15625,-8.76375 -1.43625,-1.9475 -3.7275,-2.92125 -6.87125,-2.92125 -4.28,0 -7.37125,1.375 -9.2775,4.1275 -1.905,2.75375 -2.8575,7.315 -2.8575,13.69 l 0,25.395 -15.29625,0 0,-53.97875 13.60875,0 0.1325,6.90375 0.85375,0 c 1.70375,-2.6075 4.0525,-4.57875 7.04375,-5.915 2.9925,-1.33375 6.39375,-2.0025 10.20625,-2.0025 6.51875,0 11.4675,1.6975 14.84375,5.09375 3.3775,3.39625 5.06625,8.29625 5.06625,14.70125 l 0,35.1975 z" style="fill:none;stroke:#ffffff;stroke-width:1.245;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4046" inkscape:connector-curvature="0"/>
<path d="m 293.75152,399.57358 -14.79375,-3.24875 2.62875,-11.97375 14.79375,3.2475 -2.62875,11.975 z" style="fill:#326c97;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path4050" inkscape:connector-curvature="0"/>
<path d="m 293.75152,399.57358 -14.79375,-3.24875 2.62875,-11.97375 14.79375,3.2475 -2.62875,11.975 z" style="fill:none;stroke:#ffffff;stroke-width:1.13750005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4054" inkscape:connector-curvature="0"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,79 @@
<?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:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="149"
height="75.001129"
viewBox="0 0 99.333333 75.001129"
id="Layer_1"
xml:space="preserve"><metadata
id="metadata3055"><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><defs
id="defs3053"><linearGradient
id="linearGradient3857"><stop
id="stop3859"
style="stop-color:#ed2939;stop-opacity:1"
offset="0" /><stop
id="stop3861"
style="stop-color:#d9152f;stop-opacity:1"
offset="1" /></linearGradient><linearGradient
id="linearGradient3835"><stop
id="stop3837"
style="stop-color:#002395;stop-opacity:1"
offset="0" /><stop
id="stop3839"
style="stop-color:#00208b;stop-opacity:1"
offset="1" /></linearGradient><linearGradient
x1="52.579407"
y1="49.800758"
x2="118.09041"
y2="49.800758"
id="linearGradient3841"
xlink:href="#linearGradient3835"
gradientUnits="userSpaceOnUse" /><linearGradient
x1="-23.101063"
y1="49.800758"
x2="42.409939"
y2="49.800758"
id="linearGradient3849"
xlink:href="#linearGradient3835"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.99219976,0,0,1.0053485,22.920869,12.432884)" /><linearGradient
x1="-23.101063"
y1="49.800758"
x2="42.409939"
y2="49.800758"
id="linearGradient3855"
xlink:href="#linearGradient3857"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.99219976,0,0,1.0053485,106.92087,12.432884)" /><linearGradient
x1="-23.101063"
y1="49.800758"
x2="42.409939"
y2="49.800758"
id="linearGradient3867"
xlink:href="#linearGradient3835"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.99219976,0,0,1.0053485,-2.079131,-12.567116)" /><linearGradient
x1="-23.101063"
y1="49.800758"
x2="42.409939"
y2="49.800758"
id="linearGradient3869"
xlink:href="#linearGradient3857"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.99219976,0,0,1.0053485,81.92087,-12.567116)" /></defs><path
d="m -25,0 0,75 51.96875,0 c -2.480494,0.0342 -4.677325,-0.710726 -6.5625,-2.21875 -1.885176,-1.474843 -2.982098,-3.345879 -3.3125,-5.625 -0.330402,-2.244939 0.204673,-4.311523 1.59375,-6.1875 l 20.96875,-28.03125 0,-23 0,-0.25 -0.5,0 c -2.107569,-0.102927 -6.127017,0.09774 -5.9375,0 0.08156,-6.325043 0.05085,-8.305033 0,-9.6875 L -25,0 z M 26.96875,75 40,75 40,74.9375 26.96875,75 z"
id="rect3057"
style="fill:url(#linearGradient3867);fill-opacity:1;fill-rule:evenodd;stroke:none" /><path
d="m 65.40625,0 c -0.127159,3.193035 -0.04012,6.97678 0,9.6875 -2.776037,-0.07895 -2.864115,-0.02727 -5.59375,0 l -0.34375,0 0,0.25 0,23 20.78125,27.75 c 1.38908,1.876981 1.95242,3.911311 1.6875,6.15625 -0.3304,2.244939 -1.42981,4.14823 -3.28125,5.65625 -1.88518,1.50802 -4.050756,2.25 -6.53125,2.25 L 59,74.8125 59,75 124,75 124,0 65.40625,0 z"
id="rect3851"
style="fill:url(#linearGradient3869);fill-opacity:1;fill-rule:evenodd;stroke:none" /></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="100px" height="100px" viewBox="0 0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
<path d="M84.744,8.798H15.266c-2.895,0-5.267,2.367-5.267,5.264V83.54c0,2.896,2.372,5.267,5.267,5.267h69.478 c2.891,0,5.256-2.367,5.256-5.267V14.062C90,11.166,87.635,8.798,84.744,8.798z M52.588,71.468c-0.98,0.97-2.343,1.453-4.089,1.453 c-1.789,0-3.174-0.473-4.153-1.422c-0.98-0.946-1.47-2.282-1.47-4.007c0-1.789,0.479-3.143,1.438-4.059s2.354-1.373,4.186-1.373 c1.768,0,3.134,0.469,4.104,1.405c0.97,0.938,1.453,2.279,1.453,4.025C54.057,69.173,53.566,70.499,52.588,71.468z M63.131,42.351 c-1.066,1.705-3.09,3.621-6.07,5.751c-2.045,1.513-3.34,2.664-3.883,3.45c-0.543,0.789-0.813,1.822-0.813,3.101v1.916h-8.466v-0.004 v-2.363c0-2.045,0.436-3.823,1.31-5.335c0.873-1.512,2.471-3.12,4.793-4.824c2.235-1.597,3.71-2.896,4.423-3.897 s1.07-2.119,1.07-3.354c0-1.384-0.512-2.439-1.533-3.163s-2.449-1.086-4.28-1.086c-3.195,0-6.837,1.044-10.926,3.131l-3.482-6.997 c4.749-2.662,9.787-3.993,15.111-3.993c4.386,0,7.874,1.054,10.462,3.163c2.588,2.109,3.881,4.92,3.881,8.435 C64.727,38.624,64.195,40.647,63.131,42.351z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,49 @@
<?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"
version="1.0"
x="0px"
y="0px"
viewBox="0 0 100 100"
enable-background="new 0 0 100 100"
xml:space="preserve"
id="svg2"
inkscape:version="0.91 r13725"
sodipodi:docname="roues.svg"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><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="1038"
id="namedview8"
showgrid="false"
inkscape:zoom="2.36"
inkscape:cx="-59.577878"
inkscape:cy="78.40292"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" /><path
d="m 0.53418707,8.3108725 c 0.53300003,0.164 1.09000003,0.278 1.67600003,0.278 3.159,0 5.724,-2.563 5.724,-5.723 0,-0.841 -0.192,-1.632 -0.519,-2.352 l 26.1539999,0 c 0.066,0.748 0.12,1.561 0.12,2.352 0,0.143 0,0.143 0,0.143 -0.009,0.157 0.815,0.563 1.831,0.901 l 4.956,1.652 c 1.016,0.338 1.733,1.481 1.601,2.542 l -0.585,3.3830005 c -0.231,1.043 -1.294,1.929 -2.364,1.966 l -5.422,0.195 c -1.068,0.04 -2.289,0.873 -2.717,1.852 l -1.349,2.712 c -0.529,0.926 -0.417,2.366 0.255,3.2 l 3.3,4.099 c 0.67,0.832 0.661,2.188 -0.019,3.01 l -2.462,2.708 c -0.757,0.758 -2.125,0.93 -3.045,0.384 l -4.66,-2.764 c -0.922,-0.544 -2.393,-0.494 -3.271,0.115 l -2.163,1.33 c -0.935,0.516 -1.608,1.806 -1.497,2.87 l 0.566,5.271 c 0.114,1.061 -0.621,2.211 -1.636,2.553 l -3.646,1.03 c -1.042,0.242 -2.2859999,-0.34 -2.7629999,-1.297 l -2.402,-4.794 c -0.479,-0.956 -1.742,-1.673 -2.811,-1.592 0,0 -0.131,0.009 -1.182,0.009 -1.055,0 -1.185,-0.009 -1.185,-0.009 -0.15900003,-0.012 -0.32400003,-0.001 -0.49100003,0.022 l 0,-26.0460005 0.006,0 z"
id="path4"
style="fill:#3c4963;fill-opacity:1;stroke:#3c4963;stroke-opacity:1"
inkscape:connector-curvature="0" /><path
d="m 24.259187,64.862873 c -1.062,-0.039 -2.119,-0.915 -2.349,-1.955 l -0.581,-3.359 c -0.132,-1.053 0.581,-2.188 1.588,-2.522 l 4.926,-1.643 c 1.007,-0.335 1.827,-0.738 1.82,-0.893 0,0 0,0 0,-0.144 0,-2.414 0.468,-5.118 0.468,-5.118 0.182,-1.046 -0.382,-2.398 -1.252,-3.003 l -4.417,-3.07 c -0.871,-0.605 -1.281,-1.916 -0.911,-2.91 l 1.23,-2.907 c 0.456,-0.959 1.672,-1.527 2.699,-1.266 l 5.031,1.283 c 1.03,0.263 2.378,-0.229 2.999,-1.091 l 2.68,-3.27 c 0.728,-0.774 0.985,-2.212 0.58,-3.191 l -2.036,-4.92 c -0.406,-0.98 -0.036,-2.295 0.82,-2.924 l 2.464,-1.646 c 0.904,-0.552 2.239,-0.37 2.965,0.407 l 3.555,3.821 c 0.725,0.775 2.126,1.101 3.116,0.721 l 4.392,-1.332 c 1.034,-0.242 2.033,-1.293 2.221,-2.338 l 0.936,-5.172 c 0.189,-1.045 1.209,-1.958 2.269,-2.03 0,0 0.312,-0.021 1.45,-0.021 1.139,0 1.45,0.021 1.45,0.021 1.06,0.072 2.079,0.985 2.269,2.03 l 0.933,5.172 c 0.189,1.045 1.191,2.097 2.223,2.338 l 4.392,1.332 c 0.989,0.38 2.394,0.055 3.116,-0.721 l 3.558,-3.821 c 0.724,-0.777 2.057,-0.959 2.963,-0.407 l 2.465,1.646 c 0.854,0.629 1.225,1.944 0.818,2.923 l -2.036,4.921 c -0.406,0.979 -0.146,2.417 0.581,3.191 l 2.681,3.27 c 0.62,0.862 1.966,1.354 2.996,1.091 l 5.035,-1.283 c 1.026,-0.261 2.242,0.307 2.7,1.266 l 1.23,2.909 c 0.372,0.994 -0.038,2.303 -0.911,2.908 l -4.417,3.07 c -0.874,0.605 -1.438,1.957 -1.256,3.003 0,0 0.472,2.705 0.472,5.118 0,0.144 0,0.144 0,0.144 -0.008,0.154 0.81,0.558 1.817,0.893 l 4.925,1.643 c 1.008,0.336 1.722003,1.47 1.587003,2.522 l -0.580003,3.359 c -0.23,1.037 -1.287,1.916 -2.348,1.955 l -5.385,0.193 c -1.061,0.039 -2.272,0.865 -2.696,1.84 l -1.338,2.692 c -0.528,0.919 -0.414,2.35 0.25,3.176 l 3.278,4.071 c 0.664,0.826 0.655,2.172 -0.022,2.989 l -2.442,2.689 c -0.75,0.751 -2.11,0.923 -3.023,0.381 l -4.628,-2.744 c -0.914,-0.541 -2.376,-0.489 -3.248,0.113 l -2.147,1.319 c -0.93,0.514 -1.598,1.796 -1.484,2.85 l 0.562,5.232 c 0.113,1.058 -0.617,2.196 -1.624,2.536 l -3.623,1.023 c -1.033,0.242 -2.267,-0.339 -2.742,-1.287 l -2.386,-4.762 c -0.476,-0.949 -1.729,-1.66 -2.788,-1.581 0,0 -0.13,0.01 -1.175,0.01 -1.047,0 -1.175,-0.01 -1.175,-0.01 -1.058,-0.079 -2.316,0.632 -2.791,1.581 l -2.383,4.762 c -0.476,0.948 -1.711,1.528 -2.744,1.287 l -3.623,-1.023 c -1.007,-0.338 -1.738,-1.479 -1.624,-2.536 l 0.563,-5.232 c 0.114,-1.056 -0.557,-2.338 -1.485,-2.85 l -2.147,-1.32 c -0.874,-0.602 -2.335,-0.653 -3.248,-0.112 l -4.629,2.744 c -0.911,0.543 -2.271,0.37 -3.021,-0.382 l -2.444,-2.689 c -0.677,-0.817 -0.685,-2.162 -0.02,-2.989 l 3.277,-4.071 c 0.667,-0.826 0.779,-2.257 0.252,-3.176 l -1.339,-2.693 c -0.425,-0.973 -1.638,-1.799 -2.699,-1.84 l -5.385,-0.191 z m 36.664,-4.832 c 3.137,0 5.682,-2.544 5.682,-5.684 0,-3.14 -2.545,-5.683 -5.682,-5.683 -3.141,0 -5.684,2.544 -5.684,5.683 0,3.14 2.542,5.684 5.684,5.684 z"
id="path6"
style="fill:#3c4963;fill-opacity:1;stroke:#3c4963;stroke-opacity:1"
inkscape:connector-curvature="0" /></svg>

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 359 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,136 @@
<?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"
width="105mm"
height="148mm"
viewBox="0 0 372.04724 524.40944"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="tests.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="-35.715333"
inkscape:cy="57.572972"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="3200"
inkscape:window-height="1685"
inkscape:window-x="0"
inkscape:window-y="55"
inkscape:window-maximized="1"
units="mm"
showguides="false">
<inkscape:grid
type="xygrid"
id="grid4661" />
</sodipodi:namedview>
<metadata
id="metadata7">
<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
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-527.95276)">
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#3c4963;stroke-width:10.46750736;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4504"
width="327.8573"
height="386.92392"
x="21.551825"
y="611.27594"
rx="10.467507" />
<path
style="fill:#3c4963;fill-opacity:1;fill-rule:evenodd;stroke:#3c4963;stroke-width:8.37400532;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 83.113572,625.09685 204.611998,0 0,-34.32417 -61.31695,0 -8.63722,-14.96011 -64.67653,0 -9.03823,15.65471 -61.942809,0 z"
id="path4506"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#3c4963;stroke-width:6.28050423;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 53.378827,717.12205 13.388524,13.38852 23.770066,-41.17096"
id="path4546"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#3c4963;stroke-width:6.28050423;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 53.421101,779.09188 66.809624,792.4804 90.579685,751.30944"
id="path4546-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#3c4963;stroke-width:6.28050423;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 52.974937,904.56474 13.388527,13.38853 23.770065,-41.17096"
id="path4546-3-0"
inkscape:connector-curvature="0" />
<g
id="g4612"
style="stroke:#3c4963;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.85773857,0,0,0.85773857,13.589515,120.36759)" />
<path
style="opacity:0.51099997;fill:none;fill-rule:evenodd;stroke:#3c4963;stroke-width:6.28050423;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 128.30456,711.61446 156.43562,0"
id="path4678"
inkscape:connector-curvature="0" />
<path
style="opacity:0.51099997;fill:none;fill-rule:evenodd;stroke:#3c4963;stroke-width:5.37907696;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 128.30912,726.08445 114.75251,0"
id="path4678-6"
inkscape:connector-curvature="0" />
<path
style="opacity:0.51099997;fill:none;fill-rule:evenodd;stroke:#3c4963;stroke-width:6.28050423;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 128.49674,773.31657 156.43562,0"
id="path4678-8"
inkscape:connector-curvature="0" />
<path
style="opacity:0.51099997;fill:none;fill-rule:evenodd;stroke:#3c4963;stroke-width:5.37907696;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 128.50131,787.78655 114.7525,0"
id="path4678-6-8"
inkscape:connector-curvature="0" />
<path
style="opacity:0.51099997;fill:none;fill-rule:evenodd;stroke:#3c4963;stroke-width:6.28050423;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 128.49674,834.02811 156.43562,0"
id="path4678-8-8"
inkscape:connector-curvature="0" />
<path
style="opacity:0.51099997;fill:none;fill-rule:evenodd;stroke:#3c4963;stroke-width:5.37907696;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 128.50131,848.4981 114.7525,0"
id="path4678-6-8-2"
inkscape:connector-curvature="0" />
<path
style="opacity:0.51099997;fill:none;fill-rule:evenodd;stroke:#3c4963;stroke-width:6.28050423;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 128.49674,893.76767 156.43562,0"
id="path4678-8-8-7"
inkscape:connector-curvature="0" />
<path
style="opacity:0.51099997;fill:none;fill-rule:evenodd;stroke:#3c4963;stroke-width:5.37907696;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 128.50131,908.23766 114.7525,0"
id="path4678-6-8-2-2"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@ -0,0 +1,166 @@
<?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"
width="148mm"
height="105mm"
viewBox="0 0 524.40945 372.04724"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="widget.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="323.29626"
inkscape:cy="160.69044"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="3200"
inkscape:window-height="1685"
inkscape:window-x="0"
inkscape:window-y="55"
inkscape:window-maximized="1"
units="mm" />
<metadata
id="metadata7">
<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
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-680.31496)">
<rect
style="opacity:1;fill:#3c4963;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect3338"
width="516.71478"
height="325.6011"
x="3.8165398"
y="704.24512"
rx="17.517862"
inkscape:export-filename="/home/mama/rect4144-4-0-2-4-3.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
id="rect4140"
width="433.54492"
height="284.79752"
x="43.63187"
y="726.63757"
rx="1.7643888"
inkscape:export-filename="/home/mama/rect4144-4-0-2-4-3.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<circle
style="opacity:0.25899999;fill:#ffffff;fill-opacity:0.94117647;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
id="path4142"
cx="498.41168"
cy="872.35437"
r="11.944606"
inkscape:export-filename="/home/mama/rect4144-4-0-2-4-3.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="opacity:0.25899999;fill:#ffffff;fill-opacity:0.94117647;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
id="rect4144"
width="5.8675265"
height="35.205158"
x="18.299074"
y="839.17487"
rx="1.3000772"
inkscape:export-filename="/home/mama/rect4144-4-0-2-4-3.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="opacity:0.25899999;fill:#ffffff;fill-opacity:0.94117647;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
id="rect4144-3"
width="5.8675265"
height="7.4973946"
x="17.973101"
y="878.61774"
rx="1.3000772"
inkscape:export-filename="/home/mama/rect4144-4-0-2-4-3.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="opacity:0.37300002;fill:#3c4963;fill-opacity:1;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
id="rect4144-4"
width="387.65253"
height="10.431161"
x="68.126472"
y="787.9505"
rx="4.3794656"
inkscape:export-filename="/home/mama/rect4144-4-0-2-4-3.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="opacity:0.37300002;fill:#3c4963;fill-opacity:1;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
id="rect4144-4-0"
width="364.50394"
height="10.431161"
x="80.105202"
y="812.13953"
rx="4.1179461"
inkscape:export-filename="/home/mama/rect4144-4-0-2-4-3.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="opacity:0.37300002;fill:#3c4963;fill-opacity:1;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
id="rect4144-4-0-2"
width="352.61682"
height="10.431161"
x="84.335648"
y="837.00922"
rx="3.9836526"
inkscape:export-filename="/home/mama/rect4144-4-0-2-4-3.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="opacity:0.37300002;fill:#3c4963;fill-opacity:1;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
id="rect4144-4-0-2-4"
width="206.21754"
height="10.431161"
x="158.16093"
y="901.44989"
rx="2.3297217"
inkscape:export-filename="/home/mama/rect4144-4-0-2-4-3.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="opacity:0.37300002;fill:#3c4963;fill-opacity:1;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
id="rect4144-4-0-2-4-3"
width="206.21754"
height="10.431161"
x="158.16093"
y="921.47028"
rx="2.3297217"
inkscape:export-filename="/home/mama/rect4144-4-0-2-4-3.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB