reorganize assets: move files and adapt links, remove unused
* chill: chill theme entrypoint * lib: local libs, called in several place but don't have entrypoint * module: local libs with specific entrypoints * page: pages with specific entrypoints * vuejs: vue components with specific entrypoints remove local libs jquery and select2, they already exists in node_modules remove duplicate fonts
201
src/Bundle/ChillMainBundle/Resources/public/chill/chillmain.scss
Normal file
@@ -0,0 +1,201 @@
|
||||
/*
|
||||
* NOTE 2021.04
|
||||
* scss/chillmain.scss is the main sass file for the new chill.2
|
||||
* scratch will be replaced by bootstrap, please avoid to edit in modules/scratch/_custom.scss
|
||||
*
|
||||
* when possible, try to use bootstrap html class
|
||||
*/
|
||||
|
||||
@import '~ChillMainAssets/modules/bootstrap/bootstrap';
|
||||
|
||||
/*
|
||||
* Specific rules
|
||||
*/
|
||||
|
||||
.custom_field_no_data,
|
||||
.chill-no-data-statement {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
// styles communs pour tous les bandeaux
|
||||
div.banner {
|
||||
.id-number {
|
||||
font-weight: lighter;
|
||||
font-size: 50%;
|
||||
&:before { content: '(n°'; }
|
||||
&:after { content: ')'; }
|
||||
}
|
||||
a.phone,
|
||||
a.email {
|
||||
color: white;
|
||||
}
|
||||
ul.list-content {
|
||||
//margin: 0 auto;
|
||||
}
|
||||
span.age {
|
||||
margin-left: 0.5em;
|
||||
&:before { content: '('; }
|
||||
&:after { content: ')'; }
|
||||
}
|
||||
div.members {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
span.badge-member {
|
||||
border: 1px solid #ffffff3b;
|
||||
color: #ffffff;
|
||||
padding: 0.4em 0.8em;
|
||||
margin-right: 0.3em;
|
||||
border-radius: 8px;
|
||||
&.holder {
|
||||
order: -1;
|
||||
}
|
||||
&.child {
|
||||
order: 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* FLEX RESPONSIVE TABLE/BLOCK PRESENTATION
|
||||
*/
|
||||
div.flex-bloc,
|
||||
div.flex-table {
|
||||
h2, h3, h4, dl, p {
|
||||
margin: 0;
|
||||
}
|
||||
h2, h3, h4 {
|
||||
color: var(--bs-chill-blue);
|
||||
}
|
||||
div.item-bloc {
|
||||
// We use box-shadow instead of border
|
||||
// to avoid to manage border double-width
|
||||
// when blocs are resized for small screen !
|
||||
// Then we can simulate border-collapse: collapse (table)
|
||||
box-shadow:
|
||||
1px 0 0 0 var(--bs-dark),
|
||||
0 1px 0 0 var(--bs-dark),
|
||||
1px 1px 0 0 var(--bs-dark), /* fix the corner */
|
||||
1px 0 0 0 var(--bs-dark) inset,
|
||||
0 1px 0 0 var(--bs-dark) inset;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Bloc appearance
|
||||
*/
|
||||
div.flex-bloc {
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
align-items: stretch;
|
||||
align-content: stretch;
|
||||
|
||||
div.item-bloc {
|
||||
flex-grow: 0; flex-shrink: 1; flex-basis: 33%;
|
||||
margin: 0;
|
||||
padding: 1em;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
div.item-row {
|
||||
flex-grow: 1; flex-shrink: 1; flex-basis: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
div.item-col {
|
||||
&:first-child {
|
||||
flex-grow: 0; flex-shrink: 0; flex-basis: auto;
|
||||
}
|
||||
&:last-child {
|
||||
flex-grow: 1; flex-shrink: 1; flex-basis: auto;
|
||||
display: flex;
|
||||
|
||||
.list-content { // ul, dl, or div
|
||||
}
|
||||
ul.record_actions {
|
||||
margin: 0;
|
||||
align-self: flex-end;
|
||||
flex-grow: 1; flex-shrink: 0; flex-basis: auto;
|
||||
li {
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 945px) { margin: auto -0.2em; }
|
||||
@media only screen and (max-width: 935px) { margin: auto -0.5em; }
|
||||
@media only screen and (max-width: 920px) { margin: auto -0.9em; }
|
||||
@media only screen and (max-width: 900px) {
|
||||
flex-direction: column;
|
||||
margin: auto 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Table appearance
|
||||
*/
|
||||
div.flex-table {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
align-content: stretch;
|
||||
|
||||
div.item-bloc {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 1em;
|
||||
&:nth-child(even) {
|
||||
background-color: #e6e6e6;
|
||||
}
|
||||
|
||||
div.item-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
&:not(:first-child) {
|
||||
margin-top: 0.5em;
|
||||
border-top: 1px dotted #0000004f;
|
||||
padding-top: 0.5em;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
div.item-col {
|
||||
&:first-child {
|
||||
flex-grow: 0; flex-shrink: 0; flex-basis: 33%;
|
||||
}
|
||||
&:last-child {
|
||||
flex-grow: 1; flex-shrink: 1; flex-basis: auto;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
|
||||
.list-content { // ul, dl, or div
|
||||
}
|
||||
ul.record_actions {
|
||||
margin: 0;
|
||||
align-self: flex-start;
|
||||
flex-grow: 1; flex-shrink: 0; flex-basis: auto;
|
||||
li {
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 900px) {
|
||||
flex-direction: column;
|
||||
div.item-col {
|
||||
&:last-child {
|
||||
ul.record_actions {
|
||||
align-self: flex-end;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// neutralize
|
||||
div.chill_address div.chill_address_address p { text-indent: 0; }
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,25 @@
|
||||
div#usefulbar { background-color: #fbba3a; z-index: 1000; padding-right: 15px; }
|
||||
div#usefulbar form { margin: 0; }
|
||||
div#usefulbar i.menu { font-size: 2em; }
|
||||
div#usefulbar ul { display: flex; justify-content: flex-end; margin: 0; padding-top: 5px; padding-right: 10px; }
|
||||
div#usefulbar li { color: white; margin-left: 10px; }
|
||||
div#usefulbar li a { color: white; text-shadow: 0px 0px 1px #555; }
|
||||
div#usefulbar li i.icon-user-add:before { vertical-align: -5px; }
|
||||
div#usefulbar li#search_element { text-align: right; }
|
||||
div#usefulbar li#search_element div#search_form { margin: 0; padding: 0; }
|
||||
div#usefulbar li#search_element div#search_form div { margin: 0; }
|
||||
div#usefulbar li#search_element div#search_form .field { margin: 0; }
|
||||
div#usefulbar li#search_element div#search_form button { color: white; border: none; bottom: -2px; height: 35px; }
|
||||
|
||||
div#flashMessages { margin-top: 20px; }
|
||||
div#flashMessages .flash-notice { margin-top: 10px; margin-bottom: 10px; }
|
||||
|
||||
.personName { font-variant: small-caps; text-transform: capitalize; }
|
||||
|
||||
.personName { text-transform: capitalize; }
|
||||
|
||||
input.belgian_national_number_inversed_date { width: 7em; margin-right: 1em; }
|
||||
|
||||
input.belgian_national_number_daily_counter { width: 4em; margin-right: 1em; }
|
||||
|
||||
input.belgian_national_number_control_digit { width: 3em; }
|
@@ -0,0 +1,173 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
/*!
|
||||
* Pikaday
|
||||
* Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
|
||||
*/
|
||||
|
||||
.pika-single {
|
||||
z-index: 9999;
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 240px;
|
||||
padding: 8px;
|
||||
color: #333;
|
||||
background: #fff;
|
||||
border: 1px solid #ccc;
|
||||
border-bottom-color: #bbb;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
.pika-single.is-hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.pika-single.is-bound {
|
||||
position: absolute;
|
||||
box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
|
||||
}
|
||||
|
||||
.pika-title {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.pika-label {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
position: relative;
|
||||
z-index: 9999;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
padding: 5px 3px;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
font-weight: bold;
|
||||
background-color: #fff;
|
||||
}
|
||||
.pika-title select {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
z-index: 9998;
|
||||
margin: 0;
|
||||
left: 0;
|
||||
top: 5px;
|
||||
filter: alpha(opacity=0);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.pika-prev,
|
||||
.pika-next {
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
outline: none;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
width: 20px;
|
||||
height: 30px;
|
||||
/* hide text using text-indent trick, using width value (it's enough) */
|
||||
text-indent: 20px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
background-color: transparent;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 75% 75%;
|
||||
opacity: .5;
|
||||
*position: absolute;
|
||||
*top: 0;
|
||||
}
|
||||
|
||||
.pika-prev:hover,
|
||||
.pika-next:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.pika-prev,
|
||||
.is-rtl .pika-next {
|
||||
float: left;
|
||||
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
|
||||
*left: 0;
|
||||
}
|
||||
|
||||
.pika-next,
|
||||
.is-rtl .pika-prev {
|
||||
float: right;
|
||||
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
|
||||
*right: 0;
|
||||
}
|
||||
|
||||
.pika-prev.is-disabled,
|
||||
.pika-next.is-disabled {
|
||||
cursor: default;
|
||||
opacity: .2;
|
||||
}
|
||||
|
||||
.pika-select {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
}
|
||||
|
||||
.pika-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.pika-table th,
|
||||
.pika-table td {
|
||||
width: 14.285714285714286%;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.pika-table th {
|
||||
color: #999;
|
||||
font-size: 12px;
|
||||
line-height: 25px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.pika-button {
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
outline: none;
|
||||
border: 0;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
line-height: 15px;
|
||||
text-align: right;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
.is-today .pika-button {
|
||||
color: #33aaff;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.is-selected .pika-button {
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
background: #33aaff;
|
||||
box-shadow: inset 0 1px 3px #178fe5;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.is-disabled .pika-button {
|
||||
pointer-events: none;
|
||||
cursor: default;
|
||||
color: #999;
|
||||
opacity: .3;
|
||||
}
|
||||
|
||||
.pika-button:hover {
|
||||
color: #fff !important;
|
||||
background: #ff8000 !important;
|
||||
box-shadow: none !important;
|
||||
border-radius: 3px !important;
|
||||
}
|
@@ -0,0 +1,94 @@
|
||||
Copyright (c) 2013, Sorkin Type Co (www.sorkintype.com) with Reserved Font Name 'Merriweather'
|
||||
|
||||
Merriweather is a trademark of Sorkin Type Co.
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
@@ -0,0 +1,130 @@
|
||||
@font-face {
|
||||
/*font-family: 'open_sanssemibold';*/
|
||||
font-family: 'Open Sans';
|
||||
src: url('opensans-semibold-webfont.eot');
|
||||
src: url('opensans-semibold-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('opensans-semibold-webfont.woff2') format('woff2'),
|
||||
url('opensans-semibold-webfont.woff') format('woff'),
|
||||
url('opensans-semibold-webfont.ttf') format('truetype'),
|
||||
url('opensans-semibold-webfont.svg#open_sanssemibold') format('svg');
|
||||
font-weight: 600;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
/*font-family: 'open_sanssemibold_italic';*/
|
||||
font-family: 'Open Sans';
|
||||
src: url('opensans-semibolditalic-webfont.eot');
|
||||
src: url('opensans-semibolditalic-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('opensans-semibolditalic-webfont.woff2') format('woff2'),
|
||||
url('opensans-semibolditalic-webfont.woff') format('woff'),
|
||||
url('opensans-semibolditalic-webfont.ttf') format('truetype'),
|
||||
url('opensans-semibolditalic-webfont.svg#open_sanssemibold_italic') format('svg');
|
||||
font-weight: 600;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
/*font-family: 'open_sansitalic';*/
|
||||
font-family: 'Open Sans';
|
||||
src: url('opensans-italic-webfont.eot');
|
||||
src: url('opensans-italic-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('opensans-italic-webfont.woff2') format('woff2'),
|
||||
url('opensans-italic-webfont.woff') format('woff'),
|
||||
url('opensans-italic-webfont.ttf') format('truetype'),
|
||||
url('opensans-italic-webfont.svg#open_sansitalic') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
/*font-family: 'open_sanslight';*/
|
||||
font-family: 'Open Sans';
|
||||
src: url('opensans-light-webfont.eot');
|
||||
src: url('opensans-light-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('opensans-light-webfont.woff2') format('woff2'),
|
||||
url('opensans-light-webfont.woff') format('woff'),
|
||||
url('opensans-light-webfont.ttf') format('truetype'),
|
||||
url('opensans-light-webfont.svg#open_sanslight') format('svg');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
/*font-family: 'open_sanslight_italic';*/
|
||||
font-family: 'Open Sans';
|
||||
src: url('opensans-lightitalic-webfont.eot');
|
||||
src: url('opensans-lightitalic-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('opensans-lightitalic-webfont.woff2') format('woff2'),
|
||||
url('opensans-lightitalic-webfont.woff') format('woff'),
|
||||
url('opensans-lightitalic-webfont.ttf') format('truetype'),
|
||||
url('opensans-lightitalic-webfont.svg#open_sanslight_italic') format('svg');
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
/*font-family: 'open_sansregular';*/
|
||||
font-family: 'Open Sans';
|
||||
src: url('opensans-regular-webfont.eot');
|
||||
src: url('opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('opensans-regular-webfont.woff2') format('woff2'),
|
||||
url('opensans-regular-webfont.woff') format('woff'),
|
||||
url('opensans-regular-webfont.ttf') format('truetype'),
|
||||
url('opensans-regular-webfont.svg#open_sansregular') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
/*font-family: 'open_sansbold';*/
|
||||
font-family: 'Open Sans';
|
||||
src: url('opensans-bold-webfont.eot');
|
||||
src: url('opensans-bold-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('opensans-bold-webfont.woff2') format('woff2'),
|
||||
url('opensans-bold-webfont.woff') format('woff'),
|
||||
url('opensans-bold-webfont.ttf') format('truetype'),
|
||||
url('opensans-bold-webfont.svg#open_sansbold') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
/*font-family: 'open_sansbold_italic';*/
|
||||
font-family: 'Open Sans';
|
||||
src: url('opensans-bolditalic-webfont.eot');
|
||||
src: url('opensans-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('opensans-bolditalic-webfont.woff2') format('woff2'),
|
||||
url('opensans-bolditalic-webfont.woff') format('woff'),
|
||||
url('opensans-bolditalic-webfont.ttf') format('truetype'),
|
||||
url('opensans-bolditalic-webfont.svg#open_sansbold_italic') format('svg');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
|
||||
}
|
||||
|
||||
@font-face {
|
||||
/*font-family: 'open_sansextrabold';*/
|
||||
font-family: 'Open Sans';
|
||||
src: url('opensans-extrabold-webfont.eot');
|
||||
src: url('opensans-extrabold-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('opensans-extrabold-webfont.woff2') format('woff2'),
|
||||
url('opensans-extrabold-webfont.woff') format('woff'),
|
||||
url('opensans-extrabold-webfont.ttf') format('truetype'),
|
||||
url('opensans-extrabold-webfont.svg#open_sansextrabold') format('svg');
|
||||
font-weight: 800;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
/*font-family: 'open_sansextrabold_italic';*/
|
||||
font-family: 'Open Sans';
|
||||
src: url('opensans-extrabolditalic-webfont.eot');
|
||||
src: url('opensans-extrabolditalic-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('opensans-extrabolditalic-webfont.woff2') format('woff2'),
|
||||
url('opensans-extrabolditalic-webfont.woff') format('woff'),
|
||||
url('opensans-extrabolditalic-webfont.ttf') format('truetype'),
|
||||
url('opensans-extrabolditalic-webfont.svg#open_sansextrabold_italic') format('svg');
|
||||
font-weight: 800;
|
||||
font-style: italic;
|
||||
}
|
After Width: | Height: | Size: 114 KiB |
After Width: | Height: | Size: 117 KiB |
After Width: | Height: | Size: 115 KiB |
After Width: | Height: | Size: 118 KiB |
After Width: | Height: | Size: 119 KiB |
After Width: | Height: | Size: 113 KiB |
After Width: | Height: | Size: 118 KiB |
After Width: | Height: | Size: 115 KiB |
After Width: | Height: | Size: 114 KiB |
After Width: | Height: | Size: 119 KiB |
@@ -0,0 +1,92 @@
|
||||
Copyright (c) 2012, vernon adams (vern@newtypography.co.uk), with Reserved Font Names 'Oxygen'
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
@@ -0,0 +1,92 @@
|
||||
Copyright (c) 2012, vernon adams (vern@newtypography.co.uk), with Reserved Font Names 'Oxygen'
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
After Width: | Height: | Size: 2.8 MiB |
After Width: | Height: | Size: 711 KiB |
After Width: | Height: | Size: 1.5 MiB |
After Width: | Height: | Size: 4.3 MiB |
@@ -0,0 +1,121 @@
|
||||
<?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"
|
||||
id="svg34"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata40">
|
||||
<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="defs38" />
|
||||
<rect
|
||||
id="rect2"
|
||||
x="0"
|
||||
y="4"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect4"
|
||||
x="0"
|
||||
y="12"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect6"
|
||||
x="0"
|
||||
y="20"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect8"
|
||||
x="0"
|
||||
y="28"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect10"
|
||||
x="8"
|
||||
y="4"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect12"
|
||||
x="8"
|
||||
y="12"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect14"
|
||||
x="8"
|
||||
y="20"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect16"
|
||||
x="8"
|
||||
y="28"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect18"
|
||||
x="16"
|
||||
y="4"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect20"
|
||||
x="16"
|
||||
y="12"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect22"
|
||||
x="16"
|
||||
y="20"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect24"
|
||||
x="16"
|
||||
y="28"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect26"
|
||||
x="24"
|
||||
y="4"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect28"
|
||||
x="24"
|
||||
y="12"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect30"
|
||||
x="24"
|
||||
y="20"
|
||||
width="4"
|
||||
height="4" />
|
||||
<rect
|
||||
id="rect32"
|
||||
x="24"
|
||||
y="28"
|
||||
width="4"
|
||||
height="4" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 4.2 KiB |
@@ -0,0 +1,150 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="-250000 0 0 500"
|
||||
enable-background="new 0 0 500 500"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
width="125.7"
|
||||
height="125.7"
|
||||
sodipodi:docname="favicon.svg"
|
||||
inkscape:export-filename="/home/user/ownCloudCL/Shared/partage/Idées/Chill/Design/logo-chill-acc-social-facile.png"
|
||||
inkscape:export-xdpi="98.668007"
|
||||
inkscape:export-ydpi="98.668007"><metadata
|
||||
id="metadata63"><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="defs61" /><sodipodi:namedview
|
||||
pagecolor="white"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="755"
|
||||
id="namedview59"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.64"
|
||||
inkscape:cx="139.03043"
|
||||
inkscape:cy="28.901907"
|
||||
inkscape:window-x="61"
|
||||
inkscape:window-y="2"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Calque_1"
|
||||
fit-margin-top="7"
|
||||
fit-margin-left="7"
|
||||
fit-margin-right="7"
|
||||
fit-margin-bottom="7" /><g
|
||||
id="g9"
|
||||
transform="translate(-5.5,-187.9)"><path
|
||||
style="fill:#edc74b"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11"
|
||||
d="m 68.3,216.4 c -5.5,0 -10,4.5 -10.1,10 0,0 0,0 0,0 6.2,6.2 10.1,14.8 10.1,24.3 l 0,0 c 0,0 0,0 0,0 l 0,0 c 0,-9.5 3.8,-18 10,-24.3 0,0 0,0 0,0 0.1,-5.5 -4.4,-10 -10,-10" /><path
|
||||
style="fill:#f1d275"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13"
|
||||
d="m 68.3,194.9 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 0,-5.6 -4.5,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#c9b99e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path15"
|
||||
d="m 68.3,250.7 0,0 c 0,9.5 -3.8,18 -10,24.3 0,0 0,0 0,0 0,5.5 4.5,10 10.1,10 5.5,0 10,-4.5 10.1,-10 0,0 0,0 0,0 -6.4,-6.2 -10.2,-14.8 -10.2,-24.3 l 0,0 c 0,0 0,0 0,0" /><path
|
||||
style="fill:#d3c7b1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path17"
|
||||
d="m 68.3,286.4 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 0,-5.6 -4.5,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#333333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path19"
|
||||
d="m 44,240.7 c -5.6,0 -10,4.5 -10,10.1 0,5.5 4.5,10 10,10.1 0,0 0,0 0,0 6.2,-6.2 14.8,-10.1 24.3,-10.1 l 0,0 0,0 c 0,0 0,0 0,0 0,0 0,0 0,0 l 0,0 c -9.5,-0.1 -18,-3.9 -24.3,-10.1 0.1,0 0,0 0,0" /><path
|
||||
style="fill:#333333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path21"
|
||||
d="m 22.6,240.7 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 -0.1,-5.6 -4.6,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#de4849"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path23"
|
||||
d="m 92.6,240.7 c 0,0 0,0 0,0 -6.2,6.2 -14.8,10.1 -24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 l 0,0 c 9.5,0 18,3.8 24.3,10 0,0 0,0 0,0 5.5,0 10,-4.5 10,-10.1 0,-5.5 -4.5,-10 -10,-10" /><path
|
||||
style="fill:#e57469"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path25"
|
||||
d="m 114.1,240.7 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 -0.1,-5.6 -4.6,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#43b09b"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27"
|
||||
d="m 51.2,223.5 c -2.6,0 -5.2,1 -7.1,3 -3.9,3.9 -3.9,10.3 0,14.2 0,0 0,0 0,0 8.8,0 17.6,3.3 24.3,10.1 l 0,0 c -6.7,-6.7 -10,-15.5 -10.1,-24.2 0,0 0,0 0,0 -2,-2.1 -4.6,-3.1 -7.1,-3.1" /><path
|
||||
style="fill:#3f8a2e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path29"
|
||||
d="m 58.3,226.4 c 0,0 0,0.1 0,0 0,8.8 3.4,17.6 10.1,24.3 l 0,0 c -0.1,-9.5 -3.9,-18 -10.1,-24.3 0,0 0,0 0,0" /><path
|
||||
style="fill:#333333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path31"
|
||||
d="m 44,240.7 c 0,0 0,0 0,0 0,0 0.1,0 0,0 6.2,6.2 14.8,10 24.3,10.1 C 61.6,244 52.8,240.7 44,240.7" /><path
|
||||
style="fill:#79c0af"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path33"
|
||||
d="m 36,208.3 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /><path
|
||||
style="fill:#ebebeb"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path35"
|
||||
d="m 68.3,250.7 c 6.7,6.7 10.1,15.5 10.1,24.2 0,0 0,0 0,0 2,1.9 4.5,2.9 7.1,2.9 2.6,0 5.2,-1 7.1,-3 3.9,-3.9 3.9,-10.3 0,-14.2 0,0 0,0 0,0 -8.8,0.2 -17.6,-3.2 -24.3,-9.9 l 0,0" /><path
|
||||
style="fill:#baab92"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path37"
|
||||
d="m 68.3,250.7 c 0,9.5 3.8,18.1 10.1,24.3 0,0 0,0 0,0 0,0 0,0 0,0 0,-8.8 -3.4,-17.6 -10.1,-24.3 l 0,0" /><path
|
||||
style="fill:#cd4344"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path39"
|
||||
d="m 68.3,250.7 c 6.7,6.7 15.5,10.1 24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 -6.2,-6.2 -14.8,-10.1 -24.3,-10.1" /><path
|
||||
style="fill:#efefef"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path41"
|
||||
d="m 100.7,273 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /><path
|
||||
style="fill:#d50b51"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path43"
|
||||
d="m 68.3,250.7 c -6.7,6.7 -15.5,10.1 -24.2,10.1 0,0 0,0 0,0 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 0,0 0,0 0,0 0,-8.8 3.3,-17.6 10,-24.3 l 0,0" /><path
|
||||
style="fill:#a90833"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path45"
|
||||
d="m 68.3,250.7 c -6.7,6.7 -10.1,15.5 -10.1,24.3 0,0 0,0 0,0 0,0 0,0 0,0 6.3,-6.2 10.1,-14.8 10.1,-24.3" /><path
|
||||
style="fill:#333333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path47"
|
||||
d="m 68.3,250.7 c -9.5,0 -18,3.8 -24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 8.8,0 17.6,-3.4 24.3,-10.1 0,0 0,0 0,0" /><path
|
||||
style="fill:#dc516d"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path49"
|
||||
d="m 36,273 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 C 41.1,274 38.5,273 36,273" /><path
|
||||
style="fill:#e27a3e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path51"
|
||||
d="m 85.5,223.5 c -2.6,0 -5.1,1 -7.1,2.9 0,0 0,0 0,0 0,8.8 -3.4,17.6 -10.1,24.3 l 0,0 c 6.7,-6.7 15.5,-10.1 24.2,-10.1 0,0 0,0 0,0 3.9,-3.9 3.9,-10.3 0,-14.2 -1.9,-1.9 -4.5,-2.9 -7,-2.9" /><path
|
||||
style="fill:#d36012"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path53"
|
||||
d="m 78.4,226.4 c 0,0 0,0.1 0,0 -6.2,6.2 -10.1,14.8 -10.1,24.3 6.7,-6.7 10.1,-15.5 10.1,-24.3 0,0 0,0 0,0" /><path
|
||||
style="fill:#c62212"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path55"
|
||||
d="m 92.6,240.7 c -8.8,0 -17.5,3.4 -24.2,10.1 0,0 0,0 0,0 9.4,-0.1 18,-3.9 24.2,-10.1 0,0 0,0 0,0 0,0 0,0 0,0" /><path
|
||||
style="fill:#e89463"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path57"
|
||||
d="m 100.7,208.3 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /></g></svg>
|
After Width: | Height: | Size: 7.7 KiB |
After Width: | Height: | Size: 17 KiB |
@@ -0,0 +1,192 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="-250000 0 0 500"
|
||||
enable-background="new 0 0 500 500"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
width="496.3342"
|
||||
height="158.57938"
|
||||
sodipodi:docname="logo-chill-outil-accompagnement_white.svg"
|
||||
inkscape:export-filename="/Users/marcu/ownCloud/Shared/partage/Idées/Chill/Design/logo-chill-outil-accompagnement_white.png"
|
||||
inkscape:export-xdpi="98.668007"
|
||||
inkscape:export-ydpi="98.668007"><metadata
|
||||
id="metadata63"><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="defs61" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1094"
|
||||
inkscape:window-height="652"
|
||||
id="namedview59"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.90509668"
|
||||
inkscape:cx="26.503551"
|
||||
inkscape:cy="81.695102"
|
||||
inkscape:window-x="113"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Calque_1"
|
||||
fit-margin-top="20"
|
||||
fit-margin-left="20"
|
||||
fit-margin-right="20"
|
||||
fit-margin-bottom="20"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"><sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="156.33689,228.70485"
|
||||
id="guide3010" /><sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="476.19222,93.912619"
|
||||
id="guide3012" /><sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="56.347572,137.00194"
|
||||
id="guide3018" /><sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="64.910193,24.583009"
|
||||
id="guide3022" /></sodipodi:namedview><text
|
||||
style="font-size:20.48993491999999961px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#334d5c;fill-opacity:1;font-family:OpenSans-Light;-inkscape-font-specification:'OpenSans-Light, Normal'"
|
||||
id="text5"
|
||||
font-size="35.2196"
|
||||
x="154.41266"
|
||||
y="133.92828"
|
||||
sodipodi:linespacing="125%"
|
||||
inkscape:export-xdpi="98.668007"
|
||||
inkscape:export-ydpi="98.668007"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4161"
|
||||
x="154.41266"
|
||||
y="133.92828">l'accompagnement social facile</tspan></text>
|
||||
<text
|
||||
style="font-size:112.72540283000000727px;line-height:125%;fill:#334d5c;font-family:OpenSans-Extrabold;fill-opacity:1"
|
||||
id="text7"
|
||||
font-size="112.7254"
|
||||
x="150.7075"
|
||||
y="101.62683"
|
||||
sodipodi:linespacing="125%"
|
||||
inkscape:export-filename="/Users/marcu/ownCloud/Shared/partage/Idées/Chill/Design/text5.png"
|
||||
inkscape:export-xdpi="98.668007"
|
||||
inkscape:export-ydpi="98.668007"><tspan
|
||||
style="font-size:112.72540283000000727px;font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#334d5c;fill-opacity:1;font-family:Open Sans;-inkscape-font-specification:Open Sans Ultra-Bold"
|
||||
id="tspan3071">CHILL</tspan></text>
|
||||
<g
|
||||
id="g9"
|
||||
transform="translate(7.5,-172.77256)"
|
||||
inkscape:export-filename="/Users/marcu/ownCloud/Shared/partage/Idées/Chill/Design/text5.png"
|
||||
inkscape:export-xdpi="98.668007"
|
||||
inkscape:export-ydpi="98.668007"><path
|
||||
style="fill:#edc74b"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11"
|
||||
d="m 68.3,216.4 c -5.5,0 -10,4.5 -10.1,10 0,0 0,0 0,0 6.2,6.2 10.1,14.8 10.1,24.3 l 0,0 c 0,0 0,0 0,0 l 0,0 c 0,-9.5 3.8,-18 10,-24.3 0,0 0,0 0,0 0.1,-5.5 -4.4,-10 -10,-10" /><path
|
||||
style="fill:#f1d275"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13"
|
||||
d="m 68.3,194.9 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 0,-5.6 -4.5,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#c9b99e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path15"
|
||||
d="m 68.3,250.7 0,0 c 0,9.5 -3.8,18 -10,24.3 0,0 0,0 0,0 0,5.5 4.5,10 10.1,10 5.5,0 10,-4.5 10.1,-10 0,0 0,0 0,0 -6.4,-6.2 -10.2,-14.8 -10.2,-24.3 l 0,0 c 0,0 0,0 0,0" /><path
|
||||
style="fill:#d3c7b1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path17"
|
||||
d="m 68.3,286.4 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 0,-5.6 -4.5,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path19"
|
||||
d="m 44,240.7 c -5.6,0 -10,4.5 -10,10.1 0,5.5 4.5,10 10,10.1 0,0 0,0 0,0 6.2,-6.2 14.8,-10.1 24.3,-10.1 l 0,0 0,0 c 0,0 0,0 0,0 0,0 0,0 0,0 l 0,0 c -9.5,-0.1 -18,-3.9 -24.3,-10.1 0.1,0 0,0 0,0" /><path
|
||||
style="fill:#333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path21"
|
||||
d="m 22.6,240.7 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 -0.1,-5.6 -4.6,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#de4849"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path23"
|
||||
d="m 92.6,240.7 c 0,0 0,0 0,0 -6.2,6.2 -14.8,10.1 -24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 l 0,0 c 9.5,0 18,3.8 24.3,10 0,0 0,0 0,0 5.5,0 10,-4.5 10,-10.1 0,-5.5 -4.5,-10 -10,-10" /><path
|
||||
style="fill:#e57469"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path25"
|
||||
d="m 114.1,240.7 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 -0.1,-5.6 -4.6,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#43b09b"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27"
|
||||
d="m 51.2,223.5 c -2.6,0 -5.2,1 -7.1,3 -3.9,3.9 -3.9,10.3 0,14.2 0,0 0,0 0,0 8.8,0 17.6,3.3 24.3,10.1 l 0,0 c -6.7,-6.7 -10,-15.5 -10.1,-24.2 0,0 0,0 0,0 -2,-2.1 -4.6,-3.1 -7.1,-3.1" /><path
|
||||
style="fill:#3f8a2e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path29"
|
||||
d="m 58.3,226.4 c 0,0 0,0.1 0,0 0,8.8 3.4,17.6 10.1,24.3 l 0,0 c -0.1,-9.5 -3.9,-18 -10.1,-24.3 0,0 0,0 0,0" /><path
|
||||
style="fill:#333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path31"
|
||||
d="m 44,240.7 c 0,0 0,0 0,0 0,0 0.1,0 0,0 6.2,6.2 14.8,10 24.3,10.1 C 61.6,244 52.8,240.7 44,240.7" /><path
|
||||
style="fill:#79c0af"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path33"
|
||||
d="m 36,208.3 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /><path
|
||||
style="fill:#ebebeb"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path35"
|
||||
d="m 68.3,250.7 c 6.7,6.7 10.1,15.5 10.1,24.2 0,0 0,0 0,0 2,1.9 4.5,2.9 7.1,2.9 2.6,0 5.2,-1 7.1,-3 3.9,-3.9 3.9,-10.3 0,-14.2 0,0 0,0 0,0 -8.8,0.2 -17.6,-3.2 -24.3,-9.9 l 0,0" /><path
|
||||
style="fill:#baab92"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path37"
|
||||
d="m 68.3,250.7 c 0,9.5 3.8,18.1 10.1,24.3 0,0 0,0 0,0 0,0 0,0 0,0 0,-8.8 -3.4,-17.6 -10.1,-24.3 l 0,0" /><path
|
||||
style="fill:#cd4344"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path39"
|
||||
d="m 68.3,250.7 c 6.7,6.7 15.5,10.1 24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 -6.2,-6.2 -14.8,-10.1 -24.3,-10.1" /><path
|
||||
style="fill:#efefef"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path41"
|
||||
d="m 100.7,273 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /><path
|
||||
style="fill:#d50b51"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path43"
|
||||
d="m 68.3,250.7 c -6.7,6.7 -15.5,10.1 -24.2,10.1 0,0 0,0 0,0 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 0,0 0,0 0,0 0,-8.8 3.3,-17.6 10,-24.3 l 0,0" /><path
|
||||
style="fill:#a90833"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path45"
|
||||
d="m 68.3,250.7 c -6.7,6.7 -10.1,15.5 -10.1,24.3 0,0 0,0 0,0 0,0 0,0 0,0 6.3,-6.2 10.1,-14.8 10.1,-24.3" /><path
|
||||
style="fill:#333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path47"
|
||||
d="m 68.3,250.7 c -9.5,0 -18,3.8 -24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 8.8,0 17.6,-3.4 24.3,-10.1 0,0 0,0 0,0" /><path
|
||||
style="fill:#dc516d"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path49"
|
||||
d="m 36,273 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 C 41.1,274 38.5,273 36,273" /><path
|
||||
style="fill:#e27a3e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path51"
|
||||
d="m 85.5,223.5 c -2.6,0 -5.1,1 -7.1,2.9 0,0 0,0 0,0 0,8.8 -3.4,17.6 -10.1,24.3 l 0,0 c 6.7,-6.7 15.5,-10.1 24.2,-10.1 0,0 0,0 0,0 3.9,-3.9 3.9,-10.3 0,-14.2 -1.9,-1.9 -4.5,-2.9 -7,-2.9" /><path
|
||||
style="fill:#d36012"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path53"
|
||||
d="m 78.4,226.4 c 0,0 0,0.1 0,0 -6.2,6.2 -10.1,14.8 -10.1,24.3 6.7,-6.7 10.1,-15.5 10.1,-24.3 0,0 0,0 0,0" /><path
|
||||
style="fill:#c62212"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path55"
|
||||
d="m 92.6,240.7 c -8.8,0 -17.5,3.4 -24.2,10.1 0,0 0,0 0,0 9.4,-0.1 18,-3.9 24.2,-10.1 0,0 0,0 0,0 0,0 0,0 0,0" /><path
|
||||
style="fill:#e89463"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path57"
|
||||
d="m 100.7,208.3 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /></g></svg>
|
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,192 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="-250000 0 0 500"
|
||||
enable-background="new 0 0 500 500"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
width="496.3342"
|
||||
height="158.57938"
|
||||
sodipodi:docname="logo-chill-outil-accompagnement_white.svg"
|
||||
inkscape:export-filename="/Users/marcu/ownCloud/Shared/partage/Idées/Chill/Design/logo-chill-outil-accompagnement_white.png"
|
||||
inkscape:export-xdpi="98.668007"
|
||||
inkscape:export-ydpi="98.668007"><metadata
|
||||
id="metadata63"><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="defs61" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1094"
|
||||
inkscape:window-height="652"
|
||||
id="namedview59"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.90509668"
|
||||
inkscape:cx="222.06277"
|
||||
inkscape:cy="81.695102"
|
||||
inkscape:window-x="113"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Calque_1"
|
||||
fit-margin-top="20"
|
||||
fit-margin-left="20"
|
||||
fit-margin-right="20"
|
||||
fit-margin-bottom="20"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"><sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="156.33689,228.70485"
|
||||
id="guide3010" /><sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="476.19222,93.912619"
|
||||
id="guide3012" /><sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="56.347572,137.00194"
|
||||
id="guide3018" /><sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="64.910193,24.583009"
|
||||
id="guide3022" /></sodipodi:namedview><text
|
||||
style="font-size:20.48993491999999961px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:OpenSans-Light;-inkscape-font-specification:'OpenSans-Light, Normal'"
|
||||
id="text5"
|
||||
font-size="35.2196"
|
||||
x="154.41266"
|
||||
y="133.92828"
|
||||
sodipodi:linespacing="125%"
|
||||
inkscape:export-xdpi="98.668007"
|
||||
inkscape:export-ydpi="98.668007"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4161"
|
||||
x="154.41266"
|
||||
y="133.92828">l'accompagnement social facile</tspan></text>
|
||||
<text
|
||||
style="font-size:112.72540283000000727px;line-height:125%;fill:#ffffff;font-family:OpenSans-Extrabold"
|
||||
id="text7"
|
||||
font-size="112.7254"
|
||||
x="150.7075"
|
||||
y="101.62683"
|
||||
sodipodi:linespacing="125%"
|
||||
inkscape:export-filename="/Users/marcu/ownCloud/Shared/partage/Idées/Chill/Design/text5.png"
|
||||
inkscape:export-xdpi="98.668007"
|
||||
inkscape:export-ydpi="98.668007"><tspan
|
||||
style="font-size:112.72540283000000727px;font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Open Sans;-inkscape-font-specification:Open Sans Ultra-Bold"
|
||||
id="tspan3071">CHILL</tspan></text>
|
||||
<g
|
||||
id="g9"
|
||||
transform="translate(7.5,-172.77256)"
|
||||
inkscape:export-filename="/Users/marcu/ownCloud/Shared/partage/Idées/Chill/Design/text5.png"
|
||||
inkscape:export-xdpi="98.668007"
|
||||
inkscape:export-ydpi="98.668007"><path
|
||||
style="fill:#edc74b"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11"
|
||||
d="m 68.3,216.4 c -5.5,0 -10,4.5 -10.1,10 0,0 0,0 0,0 6.2,6.2 10.1,14.8 10.1,24.3 l 0,0 c 0,0 0,0 0,0 l 0,0 c 0,-9.5 3.8,-18 10,-24.3 0,0 0,0 0,0 0.1,-5.5 -4.4,-10 -10,-10" /><path
|
||||
style="fill:#f1d275"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13"
|
||||
d="m 68.3,194.9 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 0,-5.6 -4.5,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#c9b99e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path15"
|
||||
d="m 68.3,250.7 0,0 c 0,9.5 -3.8,18 -10,24.3 0,0 0,0 0,0 0,5.5 4.5,10 10.1,10 5.5,0 10,-4.5 10.1,-10 0,0 0,0 0,0 -6.4,-6.2 -10.2,-14.8 -10.2,-24.3 l 0,0 c 0,0 0,0 0,0" /><path
|
||||
style="fill:#d3c7b1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path17"
|
||||
d="m 68.3,286.4 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 0,-5.6 -4.5,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path19"
|
||||
d="m 44,240.7 c -5.6,0 -10,4.5 -10,10.1 0,5.5 4.5,10 10,10.1 0,0 0,0 0,0 6.2,-6.2 14.8,-10.1 24.3,-10.1 l 0,0 0,0 c 0,0 0,0 0,0 0,0 0,0 0,0 l 0,0 c -9.5,-0.1 -18,-3.9 -24.3,-10.1 0.1,0 0,0 0,0" /><path
|
||||
style="fill:#333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path21"
|
||||
d="m 22.6,240.7 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 -0.1,-5.6 -4.6,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#de4849"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path23"
|
||||
d="m 92.6,240.7 c 0,0 0,0 0,0 -6.2,6.2 -14.8,10.1 -24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 l 0,0 c 9.5,0 18,3.8 24.3,10 0,0 0,0 0,0 5.5,0 10,-4.5 10,-10.1 0,-5.5 -4.5,-10 -10,-10" /><path
|
||||
style="fill:#e57469"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path25"
|
||||
d="m 114.1,240.7 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 -0.1,-5.6 -4.6,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#43b09b"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27"
|
||||
d="m 51.2,223.5 c -2.6,0 -5.2,1 -7.1,3 -3.9,3.9 -3.9,10.3 0,14.2 0,0 0,0 0,0 8.8,0 17.6,3.3 24.3,10.1 l 0,0 c -6.7,-6.7 -10,-15.5 -10.1,-24.2 0,0 0,0 0,0 -2,-2.1 -4.6,-3.1 -7.1,-3.1" /><path
|
||||
style="fill:#3f8a2e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path29"
|
||||
d="m 58.3,226.4 c 0,0 0,0.1 0,0 0,8.8 3.4,17.6 10.1,24.3 l 0,0 c -0.1,-9.5 -3.9,-18 -10.1,-24.3 0,0 0,0 0,0" /><path
|
||||
style="fill:#333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path31"
|
||||
d="m 44,240.7 c 0,0 0,0 0,0 0,0 0.1,0 0,0 6.2,6.2 14.8,10 24.3,10.1 C 61.6,244 52.8,240.7 44,240.7" /><path
|
||||
style="fill:#79c0af"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path33"
|
||||
d="m 36,208.3 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /><path
|
||||
style="fill:#ebebeb"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path35"
|
||||
d="m 68.3,250.7 c 6.7,6.7 10.1,15.5 10.1,24.2 0,0 0,0 0,0 2,1.9 4.5,2.9 7.1,2.9 2.6,0 5.2,-1 7.1,-3 3.9,-3.9 3.9,-10.3 0,-14.2 0,0 0,0 0,0 -8.8,0.2 -17.6,-3.2 -24.3,-9.9 l 0,0" /><path
|
||||
style="fill:#baab92"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path37"
|
||||
d="m 68.3,250.7 c 0,9.5 3.8,18.1 10.1,24.3 0,0 0,0 0,0 0,0 0,0 0,0 0,-8.8 -3.4,-17.6 -10.1,-24.3 l 0,0" /><path
|
||||
style="fill:#cd4344"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path39"
|
||||
d="m 68.3,250.7 c 6.7,6.7 15.5,10.1 24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 -6.2,-6.2 -14.8,-10.1 -24.3,-10.1" /><path
|
||||
style="fill:#efefef"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path41"
|
||||
d="m 100.7,273 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /><path
|
||||
style="fill:#d50b51"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path43"
|
||||
d="m 68.3,250.7 c -6.7,6.7 -15.5,10.1 -24.2,10.1 0,0 0,0 0,0 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 0,0 0,0 0,0 0,-8.8 3.3,-17.6 10,-24.3 l 0,0" /><path
|
||||
style="fill:#a90833"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path45"
|
||||
d="m 68.3,250.7 c -6.7,6.7 -10.1,15.5 -10.1,24.3 0,0 0,0 0,0 0,0 0,0 0,0 6.3,-6.2 10.1,-14.8 10.1,-24.3" /><path
|
||||
style="fill:#333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path47"
|
||||
d="m 68.3,250.7 c -9.5,0 -18,3.8 -24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 8.8,0 17.6,-3.4 24.3,-10.1 0,0 0,0 0,0" /><path
|
||||
style="fill:#dc516d"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path49"
|
||||
d="m 36,273 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 C 41.1,274 38.5,273 36,273" /><path
|
||||
style="fill:#e27a3e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path51"
|
||||
d="m 85.5,223.5 c -2.6,0 -5.1,1 -7.1,2.9 0,0 0,0 0,0 0,8.8 -3.4,17.6 -10.1,24.3 l 0,0 c 6.7,-6.7 15.5,-10.1 24.2,-10.1 0,0 0,0 0,0 3.9,-3.9 3.9,-10.3 0,-14.2 -1.9,-1.9 -4.5,-2.9 -7,-2.9" /><path
|
||||
style="fill:#d36012"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path53"
|
||||
d="m 78.4,226.4 c 0,0 0,0.1 0,0 -6.2,6.2 -10.1,14.8 -10.1,24.3 6.7,-6.7 10.1,-15.5 10.1,-24.3 0,0 0,0 0,0" /><path
|
||||
style="fill:#c62212"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path55"
|
||||
d="m 92.6,240.7 c -8.8,0 -17.5,3.4 -24.2,10.1 0,0 0,0 0,0 9.4,-0.1 18,-3.9 24.2,-10.1 0,0 0,0 0,0 0,0 0,0 0,0" /><path
|
||||
style="fill:#e89463"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path57"
|
||||
d="m 100.7,208.3 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /></g></svg>
|
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,167 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="-250000 0 0 500"
|
||||
enable-background="new 0 0 500 500"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
width="616.05621"
|
||||
height="155.33388"
|
||||
sodipodi:docname="logo-chill-sans-slogan.svg"
|
||||
inkscape:export-filename="/Users/marcu/Projects/Chill/vendor/chill-project/main/Resources/public/img/logo-chill-sans-slogan.png"
|
||||
inkscape:export-xdpi="98.668007"
|
||||
inkscape:export-ydpi="98.668007"><metadata
|
||||
id="metadata63"><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="defs61" /><sodipodi:namedview
|
||||
pagecolor="white"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="755"
|
||||
id="namedview59"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.4142136"
|
||||
inkscape:cx="340.96965"
|
||||
inkscape:cy="64.038765"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="21"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Calque_1"
|
||||
fit-margin-top="20"
|
||||
fit-margin-left="20"
|
||||
fit-margin-right="20"
|
||||
fit-margin-bottom="20"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"><sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="5,133.60875"
|
||||
id="guide3010" /><sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="14,21.858753"
|
||||
id="guide3012" /></sodipodi:namedview><text
|
||||
style="font-size:157.15487671px;line-height:125%;fill:#000000;font-family:OpenSans-Extrabold"
|
||||
id="text7"
|
||||
font-size="112.7254"
|
||||
x="144.08736"
|
||||
y="133.79916"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
style="font-size:157.15487671px;font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#334d5c;fill-opacity:1;font-family:Open Sans;-inkscape-font-specification:Open Sans Ultra-Bold"
|
||||
id="tspan3071">CHILL</tspan></text>
|
||||
<g
|
||||
id="g9"
|
||||
transform="translate(7.5,-173.12681)"><path
|
||||
style="fill:#edc74b"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11"
|
||||
d="m 68.3,216.4 c -5.5,0 -10,4.5 -10.1,10 0,0 0,0 0,0 6.2,6.2 10.1,14.8 10.1,24.3 l 0,0 c 0,0 0,0 0,0 l 0,0 c 0,-9.5 3.8,-18 10,-24.3 0,0 0,0 0,0 0.1,-5.5 -4.4,-10 -10,-10" /><path
|
||||
style="fill:#f1d275"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13"
|
||||
d="m 68.3,194.9 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 0,-5.6 -4.5,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#c9b99e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path15"
|
||||
d="m 68.3,250.7 0,0 c 0,9.5 -3.8,18 -10,24.3 0,0 0,0 0,0 0,5.5 4.5,10 10.1,10 5.5,0 10,-4.5 10.1,-10 0,0 0,0 0,0 -6.4,-6.2 -10.2,-14.8 -10.2,-24.3 l 0,0 c 0,0 0,0 0,0" /><path
|
||||
style="fill:#d3c7b1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path17"
|
||||
d="m 68.3,286.4 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 0,-5.6 -4.5,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#333333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path19"
|
||||
d="m 44,240.7 c -5.6,0 -10,4.5 -10,10.1 0,5.5 4.5,10 10,10.1 0,0 0,0 0,0 6.2,-6.2 14.8,-10.1 24.3,-10.1 l 0,0 0,0 c 0,0 0,0 0,0 0,0 0,0 0,0 l 0,0 c -9.5,-0.1 -18,-3.9 -24.3,-10.1 0.1,0 0,0 0,0" /><path
|
||||
style="fill:#333333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path21"
|
||||
d="m 22.6,240.7 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 -0.1,-5.6 -4.6,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#de4849"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path23"
|
||||
d="m 92.6,240.7 c 0,0 0,0 0,0 -6.2,6.2 -14.8,10.1 -24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 l 0,0 c 9.5,0 18,3.8 24.3,10 0,0 0,0 0,0 5.5,0 10,-4.5 10,-10.1 0,-5.5 -4.5,-10 -10,-10" /><path
|
||||
style="fill:#e57469"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path25"
|
||||
d="m 114.1,240.7 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 -0.1,-5.6 -4.6,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#43b09b"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27"
|
||||
d="m 51.2,223.5 c -2.6,0 -5.2,1 -7.1,3 -3.9,3.9 -3.9,10.3 0,14.2 0,0 0,0 0,0 8.8,0 17.6,3.3 24.3,10.1 l 0,0 c -6.7,-6.7 -10,-15.5 -10.1,-24.2 0,0 0,0 0,0 -2,-2.1 -4.6,-3.1 -7.1,-3.1" /><path
|
||||
style="fill:#3f8a2e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path29"
|
||||
d="m 58.3,226.4 c 0,0 0,0.1 0,0 0,8.8 3.4,17.6 10.1,24.3 l 0,0 c -0.1,-9.5 -3.9,-18 -10.1,-24.3 0,0 0,0 0,0" /><path
|
||||
style="fill:#333333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path31"
|
||||
d="m 44,240.7 c 0,0 0,0 0,0 0,0 0.1,0 0,0 6.2,6.2 14.8,10 24.3,10.1 C 61.6,244 52.8,240.7 44,240.7" /><path
|
||||
style="fill:#79c0af"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path33"
|
||||
d="m 36,208.3 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /><path
|
||||
style="fill:#ebebeb"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path35"
|
||||
d="m 68.3,250.7 c 6.7,6.7 10.1,15.5 10.1,24.2 0,0 0,0 0,0 2,1.9 4.5,2.9 7.1,2.9 2.6,0 5.2,-1 7.1,-3 3.9,-3.9 3.9,-10.3 0,-14.2 0,0 0,0 0,0 -8.8,0.2 -17.6,-3.2 -24.3,-9.9 l 0,0" /><path
|
||||
style="fill:#baab92"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path37"
|
||||
d="m 68.3,250.7 c 0,9.5 3.8,18.1 10.1,24.3 0,0 0,0 0,0 0,0 0,0 0,0 0,-8.8 -3.4,-17.6 -10.1,-24.3 l 0,0" /><path
|
||||
style="fill:#cd4344"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path39"
|
||||
d="m 68.3,250.7 c 6.7,6.7 15.5,10.1 24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 -6.2,-6.2 -14.8,-10.1 -24.3,-10.1" /><path
|
||||
style="fill:#efefef"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path41"
|
||||
d="m 100.7,273 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /><path
|
||||
style="fill:#d50b51"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path43"
|
||||
d="m 68.3,250.7 c -6.7,6.7 -15.5,10.1 -24.2,10.1 0,0 0,0 0,0 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 0,0 0,0 0,0 0,-8.8 3.3,-17.6 10,-24.3 l 0,0" /><path
|
||||
style="fill:#a90833"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path45"
|
||||
d="m 68.3,250.7 c -6.7,6.7 -10.1,15.5 -10.1,24.3 0,0 0,0 0,0 0,0 0,0 0,0 6.3,-6.2 10.1,-14.8 10.1,-24.3" /><path
|
||||
style="fill:#333333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path47"
|
||||
d="m 68.3,250.7 c -9.5,0 -18,3.8 -24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 8.8,0 17.6,-3.4 24.3,-10.1 0,0 0,0 0,0" /><path
|
||||
style="fill:#dc516d"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path49"
|
||||
d="m 36,273 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 C 41.1,274 38.5,273 36,273" /><path
|
||||
style="fill:#e27a3e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path51"
|
||||
d="m 85.5,223.5 c -2.6,0 -5.1,1 -7.1,2.9 0,0 0,0 0,0 0,8.8 -3.4,17.6 -10.1,24.3 l 0,0 c 6.7,-6.7 15.5,-10.1 24.2,-10.1 0,0 0,0 0,0 3.9,-3.9 3.9,-10.3 0,-14.2 -1.9,-1.9 -4.5,-2.9 -7,-2.9" /><path
|
||||
style="fill:#d36012"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path53"
|
||||
d="m 78.4,226.4 c 0,0 0,0.1 0,0 -6.2,6.2 -10.1,14.8 -10.1,24.3 6.7,-6.7 10.1,-15.5 10.1,-24.3 0,0 0,0 0,0" /><path
|
||||
style="fill:#c62212"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path55"
|
||||
d="m 92.6,240.7 c -8.8,0 -17.5,3.4 -24.2,10.1 0,0 0,0 0,0 9.4,-0.1 18,-3.9 24.2,-10.1 0,0 0,0 0,0 0,0 0,0 0,0" /><path
|
||||
style="fill:#e89463"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path57"
|
||||
d="m 100.7,208.3 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /></g></svg>
|
After Width: | Height: | Size: 8.5 KiB |
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,167 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="-250000 0 0 500"
|
||||
enable-background="new 0 0 500 500"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
width="616.05621"
|
||||
height="155.33388"
|
||||
sodipodi:docname="logo-chill-sans-slogan_white.svg"
|
||||
inkscape:export-filename="/Users/marcu/Projects/Chill/vendor/chill-project/main/Resources/public/img/logo-chill-sans-slogan_white.png"
|
||||
inkscape:export-xdpi="98.668007"
|
||||
inkscape:export-ydpi="98.668007"><metadata
|
||||
id="metadata63"><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="defs61" /><sodipodi:namedview
|
||||
pagecolor="white"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="755"
|
||||
id="namedview59"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.4142136"
|
||||
inkscape:cx="58.126943"
|
||||
inkscape:cy="64.038765"
|
||||
inkscape:window-x="59"
|
||||
inkscape:window-y="21"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Calque_1"
|
||||
fit-margin-top="20"
|
||||
fit-margin-left="20"
|
||||
fit-margin-right="20"
|
||||
fit-margin-bottom="20"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"><sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="5,133.60875"
|
||||
id="guide3010" /><sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="14,21.858753"
|
||||
id="guide3012" /></sodipodi:namedview><text
|
||||
style="font-size:157.15487670999999636px;line-height:125%;fill:#ffffff;font-family:OpenSans-Extrabold"
|
||||
id="text7"
|
||||
font-size="112.7254"
|
||||
x="144.08736"
|
||||
y="133.79916"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
style="font-size:157.15487670999999636px;font-style:normal;font-variant:normal;font-weight:800;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;font-family:Open Sans;-inkscape-font-specification:Open Sans Ultra-Bold"
|
||||
id="tspan3071">CHILL</tspan></text>
|
||||
<g
|
||||
id="g9"
|
||||
transform="translate(7.5,-173.12681)"><path
|
||||
style="fill:#edc74b"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path11"
|
||||
d="m 68.3,216.4 c -5.5,0 -10,4.5 -10.1,10 0,0 0,0 0,0 6.2,6.2 10.1,14.8 10.1,24.3 l 0,0 c 0,0 0,0 0,0 l 0,0 c 0,-9.5 3.8,-18 10,-24.3 0,0 0,0 0,0 0.1,-5.5 -4.4,-10 -10,-10" /><path
|
||||
style="fill:#f1d275"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path13"
|
||||
d="m 68.3,194.9 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 0,-5.6 -4.5,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#c9b99e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path15"
|
||||
d="m 68.3,250.7 0,0 c 0,9.5 -3.8,18 -10,24.3 0,0 0,0 0,0 0,5.5 4.5,10 10.1,10 5.5,0 10,-4.5 10.1,-10 0,0 0,0 0,0 -6.4,-6.2 -10.2,-14.8 -10.2,-24.3 l 0,0 c 0,0 0,0 0,0" /><path
|
||||
style="fill:#d3c7b1"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path17"
|
||||
d="m 68.3,286.4 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 0,-5.6 -4.5,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#333333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path19"
|
||||
d="m 44,240.7 c -5.6,0 -10,4.5 -10,10.1 0,5.5 4.5,10 10,10.1 0,0 0,0 0,0 6.2,-6.2 14.8,-10.1 24.3,-10.1 l 0,0 0,0 c 0,0 0,0 0,0 0,0 0,0 0,0 l 0,0 c -9.5,-0.1 -18,-3.9 -24.3,-10.1 0.1,0 0,0 0,0" /><path
|
||||
style="fill:#333333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path21"
|
||||
d="m 22.6,240.7 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 -0.1,-5.6 -4.6,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#de4849"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path23"
|
||||
d="m 92.6,240.7 c 0,0 0,0 0,0 -6.2,6.2 -14.8,10.1 -24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 l 0,0 c 9.5,0 18,3.8 24.3,10 0,0 0,0 0,0 5.5,0 10,-4.5 10,-10.1 0,-5.5 -4.5,-10 -10,-10" /><path
|
||||
style="fill:#e57469"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path25"
|
||||
d="m 114.1,240.7 c -5.6,0 -10.1,4.5 -10.1,10.1 0,5.6 4.5,10.1 10.1,10.1 5.6,0 10.1,-4.5 10.1,-10.1 -0.1,-5.6 -4.6,-10.1 -10.1,-10.1" /><path
|
||||
style="fill:#43b09b"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27"
|
||||
d="m 51.2,223.5 c -2.6,0 -5.2,1 -7.1,3 -3.9,3.9 -3.9,10.3 0,14.2 0,0 0,0 0,0 8.8,0 17.6,3.3 24.3,10.1 l 0,0 c -6.7,-6.7 -10,-15.5 -10.1,-24.2 0,0 0,0 0,0 -2,-2.1 -4.6,-3.1 -7.1,-3.1" /><path
|
||||
style="fill:#3f8a2e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path29"
|
||||
d="m 58.3,226.4 c 0,0 0,0.1 0,0 0,8.8 3.4,17.6 10.1,24.3 l 0,0 c -0.1,-9.5 -3.9,-18 -10.1,-24.3 0,0 0,0 0,0" /><path
|
||||
style="fill:#333333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path31"
|
||||
d="m 44,240.7 c 0,0 0,0 0,0 0,0 0.1,0 0,0 6.2,6.2 14.8,10 24.3,10.1 C 61.6,244 52.8,240.7 44,240.7" /><path
|
||||
style="fill:#79c0af"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path33"
|
||||
d="m 36,208.3 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /><path
|
||||
style="fill:#ebebeb"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path35"
|
||||
d="m 68.3,250.7 c 6.7,6.7 10.1,15.5 10.1,24.2 0,0 0,0 0,0 2,1.9 4.5,2.9 7.1,2.9 2.6,0 5.2,-1 7.1,-3 3.9,-3.9 3.9,-10.3 0,-14.2 0,0 0,0 0,0 -8.8,0.2 -17.6,-3.2 -24.3,-9.9 l 0,0" /><path
|
||||
style="fill:#baab92"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path37"
|
||||
d="m 68.3,250.7 c 0,9.5 3.8,18.1 10.1,24.3 0,0 0,0 0,0 0,0 0,0 0,0 0,-8.8 -3.4,-17.6 -10.1,-24.3 l 0,0" /><path
|
||||
style="fill:#cd4344"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path39"
|
||||
d="m 68.3,250.7 c 6.7,6.7 15.5,10.1 24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 -6.2,-6.2 -14.8,-10.1 -24.3,-10.1" /><path
|
||||
style="fill:#efefef"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path41"
|
||||
d="m 100.7,273 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /><path
|
||||
style="fill:#d50b51"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path43"
|
||||
d="m 68.3,250.7 c -6.7,6.7 -15.5,10.1 -24.2,10.1 0,0 0,0 0,0 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 0,0 0,0 0,0 0,-8.8 3.3,-17.6 10,-24.3 l 0,0" /><path
|
||||
style="fill:#a90833"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path45"
|
||||
d="m 68.3,250.7 c -6.7,6.7 -10.1,15.5 -10.1,24.3 0,0 0,0 0,0 0,0 0,0 0,0 6.3,-6.2 10.1,-14.8 10.1,-24.3" /><path
|
||||
style="fill:#333333"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path47"
|
||||
d="m 68.3,250.7 c -9.5,0 -18,3.8 -24.3,10.1 0,0 0,0 0,0 0,0 0,0 0,0 8.8,0 17.6,-3.4 24.3,-10.1 0,0 0,0 0,0" /><path
|
||||
style="fill:#dc516d"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path49"
|
||||
d="m 36,273 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 C 41.1,274 38.5,273 36,273" /><path
|
||||
style="fill:#e27a3e"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path51"
|
||||
d="m 85.5,223.5 c -2.6,0 -5.1,1 -7.1,2.9 0,0 0,0 0,0 0,8.8 -3.4,17.6 -10.1,24.3 l 0,0 c 6.7,-6.7 15.5,-10.1 24.2,-10.1 0,0 0,0 0,0 3.9,-3.9 3.9,-10.3 0,-14.2 -1.9,-1.9 -4.5,-2.9 -7,-2.9" /><path
|
||||
style="fill:#d36012"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path53"
|
||||
d="m 78.4,226.4 c 0,0 0,0.1 0,0 -6.2,6.2 -10.1,14.8 -10.1,24.3 6.7,-6.7 10.1,-15.5 10.1,-24.3 0,0 0,0 0,0" /><path
|
||||
style="fill:#c62212"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path55"
|
||||
d="m 92.6,240.7 c -8.8,0 -17.5,3.4 -24.2,10.1 0,0 0,0 0,0 9.4,-0.1 18,-3.9 24.2,-10.1 0,0 0,0 0,0 0,0 0,0 0,0" /><path
|
||||
style="fill:#e89463"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path57"
|
||||
d="m 100.7,208.3 c -2.6,0 -5.1,1 -7.1,2.9 -3.9,3.9 -3.9,10.3 0,14.2 2,2 4.5,2.9 7.1,2.9 2.6,0 5.1,-1 7.1,-2.9 3.9,-3.9 3.9,-10.3 0,-14.2 -2,-1.9 -4.6,-2.9 -7.1,-2.9" /></g></svg>
|
After Width: | Height: | Size: 8.5 KiB |
54
src/Bundle/ChillMainBundle/Resources/public/chill/index.js
Normal file
@@ -0,0 +1,54 @@
|
||||
/*
|
||||
* CHILL Entrypoint
|
||||
* Load from node-modules
|
||||
*/
|
||||
|
||||
/// import jQuery
|
||||
const $ = require('jquery');
|
||||
global.$ = global.jQuery = $;
|
||||
|
||||
/// import select2
|
||||
const select2 = require('select2');
|
||||
global.select2 = select2;
|
||||
|
||||
require('select2/dist/css/select2.css');
|
||||
require('select2-bootstrap-theme/dist/select2-bootstrap.css');
|
||||
|
||||
/*
|
||||
* Load Chill themes assets
|
||||
*/
|
||||
|
||||
require('./chillmain.scss');
|
||||
require('./css/chillmain.css');
|
||||
|
||||
/// still used ?
|
||||
//require('./css/pickaday.css');
|
||||
//require('./js/date.js');
|
||||
|
||||
import { chill } from './js/chill.js';
|
||||
global.chill = chill;
|
||||
|
||||
/// Load fonts
|
||||
require('./fonts/OpenSans/OpenSans.scss')
|
||||
|
||||
/// Load images
|
||||
require('./img/favicon.ico');
|
||||
require('./img/logo-chill-sans-slogan_white.png');
|
||||
require('./img/logo-chill-outil-accompagnement_white.png');
|
||||
|
||||
/*
|
||||
* Load local libs
|
||||
* Some libs are only used in a few pages, they are loaded on a case by case basis
|
||||
*/
|
||||
|
||||
require('../lib/collection/index.js');
|
||||
|
||||
require('../lib/breadcrumb/index.js');
|
||||
require('../lib/download-report/index.js');
|
||||
require('../lib/select_interactive_loading/index.js');
|
||||
require('../lib/export-list/index.js');
|
||||
require('../lib/entity/index.js');
|
||||
|
||||
//require('../lib/show_hide/index.js');
|
||||
//require('../lib/tabs/index.js');
|
||||
|
345
src/Bundle/ChillMainBundle/Resources/public/chill/js/chill.js
Normal file
@@ -0,0 +1,345 @@
|
||||
/* jslint vars: true */
|
||||
/*jslint indent: 4 */
|
||||
/* global moment, $, window */
|
||||
'use strict';
|
||||
|
||||
var chill = function() {
|
||||
|
||||
/**
|
||||
* Display an alert message when the user wants to leave a page containing a given form
|
||||
* in a given state.
|
||||
*
|
||||
* The action of displaying the form be parametrised as :
|
||||
* - always display the alert message when leaving
|
||||
* - only display the alert message when the form contains some modified fields.
|
||||
*
|
||||
* @param{string} form_id An identification string of the form
|
||||
* @param{string} alert_message The alert message to display
|
||||
* @param{boolean} check_unsaved_data If true display the alert message only when the form
|
||||
* contains some modified fields otherwise always display the alert when leaving
|
||||
* @return nothing
|
||||
*/
|
||||
function _generalDisplayAlertWhenLeavingForm(form_id, alert_message, check_unsaved_data) {
|
||||
var form_submitted = false;
|
||||
var unsaved_data = false;
|
||||
|
||||
$(form_id)
|
||||
.submit(function() {
|
||||
form_submitted = true;
|
||||
})
|
||||
.on('reset', function() {
|
||||
unsaved_data = false;
|
||||
})
|
||||
;
|
||||
|
||||
$.each($(form_id).find(':input'), function(i,e) {
|
||||
$(e).change(function() {
|
||||
unsaved_data = true;
|
||||
});
|
||||
});
|
||||
|
||||
$(window).bind('beforeunload', function(){
|
||||
if((!form_submitted) && (unsaved_data || !check_unsaved_data)) {
|
||||
return alert_message;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Mark the choices "not specified" as check by default.
|
||||
*
|
||||
* This function apply to `custom field choices` when the `required`
|
||||
* option is false and `expanded` is true (checkboxes or radio buttons).
|
||||
*
|
||||
* @param{string} choice_name the name of the input
|
||||
*/
|
||||
function checkNullValuesInChoices(choice_name) {
|
||||
var choices;
|
||||
choices = $("input[name='"+choice_name+"']:checked");
|
||||
if (choices.size() === 0) {
|
||||
$.each($("input[name='"+choice_name+"']"), function (i, e) {
|
||||
if (e.value === "") {
|
||||
e.checked = true;
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Display an alert message when the user wants to leave a page containing a given
|
||||
* modified form.
|
||||
*
|
||||
* @param{string} form_id An identification string of the form
|
||||
* @param{string} alert_message The alert message to display
|
||||
* @return nothing
|
||||
*/
|
||||
function displayAlertWhenLeavingModifiedForm(form_id, alert_message) {
|
||||
_generalDisplayAlertWhenLeavingForm(form_id, alert_message, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Display an alert message when the user wants to leave a page containing a given
|
||||
* form that was not submitted.
|
||||
*
|
||||
* @param{string} form_id An identification string of the form
|
||||
* @param{string} alert_message The alert message to display
|
||||
* @return nothing
|
||||
*/
|
||||
function displayAlertWhenLeavingUnsubmittedForm(form_id, alert_message) {
|
||||
_generalDisplayAlertWhenLeavingForm(form_id, alert_message, false);
|
||||
}
|
||||
|
||||
/* Enable the following behavior : when the user change the value
|
||||
of an other field, its checkbox is checked.
|
||||
*/
|
||||
function checkOtherValueOnChange() {
|
||||
$('.input-text-other-value').each(function() {
|
||||
$(this).change(function() {
|
||||
var checkbox = $(this).parent().find('input[type=checkbox][value=_other]')[0];
|
||||
$(checkbox).prop('checked', ($(this).val() !== ''));
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an interraction between two select element (the parent and the
|
||||
* child) of a given form : each parent option has a category, the
|
||||
* child select only display options that have the same category of the
|
||||
* parent optionn
|
||||
*
|
||||
* The parent must have the class "chill-category-link-parent".
|
||||
*
|
||||
* The children must have the class "chill-category-link-child". Each option
|
||||
* of the parent must have the attribute `data-link-category`, with the value of
|
||||
* the connected option in parent.
|
||||
*
|
||||
* Example :
|
||||
*
|
||||
* ```html
|
||||
* <select name="country" class="chill-category-link-parent">
|
||||
* <option value="BE">Belgium</option>
|
||||
* <option value="FR">France</option>
|
||||
* </select>
|
||||
*
|
||||
* <select name="cities">class="chill-category-link-children">
|
||||
* <option value="paris" data-link-category="FR">Paris</option>
|
||||
* <option value="toulouse" data-link-category="FR">Toulouse</option>
|
||||
* <option value="bruxelles" data-link-category="BE">Bruxelles</option>
|
||||
* <option value="liege" data-link-category="BE">Liège</option>
|
||||
* <option value="mons" data-link-category="BE">Mons</option>
|
||||
* </select>
|
||||
* ```
|
||||
*
|
||||
* TODO ECRIRE LA DOC METTRE LES TESTS DANS git :
|
||||
* tester que init est ok :
|
||||
- quand vide
|
||||
- quand choix
|
||||
* tester que quand sélection
|
||||
- quand vide
|
||||
- quand choix
|
||||
*/
|
||||
function categoryLinkParentChildSelect() {
|
||||
var forms_to_link = $('form:has(select.chill-category-link-parent)');
|
||||
|
||||
forms_to_link.each(function(i,form_selector) {
|
||||
var form = $(form_selector), parent_multiple;
|
||||
form.old_category = null;
|
||||
form.link_parent = $(form).find('.chill-category-link-parent');
|
||||
form.link_child = $(form).find('.chill-category-link-child');
|
||||
|
||||
// check if the parent allow multiple or single results
|
||||
parent_multiple = $(form).find('.chill-category-link-parent').get(0).multiple;
|
||||
// if we use select2, parent_multiple will be `undefined`
|
||||
if (typeof parent_multiple == 'undefined') {
|
||||
// currently, I do not know how to check if multiple using select2.
|
||||
// we suppose that multiple is false (old behaviour)
|
||||
parent_multiple = false
|
||||
}
|
||||
|
||||
$(form.link_parent).addClass('select2');
|
||||
$(form.link_parant).select2({allowClear: true}); // it is weird: when I fix the typo here, the whole stuff does not work anymore...
|
||||
|
||||
if (parent_multiple == false) {
|
||||
|
||||
form.old_category = null;
|
||||
if($(form.link_parent).select2('data') !== null) {
|
||||
form.old_category = ($(form.link_parent).select2('data').element[0].dataset.linkCategory);
|
||||
}
|
||||
|
||||
$(form.link_child).find('option')
|
||||
.each(function(i,e) {
|
||||
if(
|
||||
((!$(e).data('link-category')) || $(e).data('link-category') == form.old_category) &&
|
||||
((!$(e).data('link-categories')) || form.old_category in $(e).data('link-categories').split(','))
|
||||
) {
|
||||
$(e).show();
|
||||
// here, we should handle the optgroup
|
||||
} else {
|
||||
$(e).hide();
|
||||
// here, we should handle the optgroup
|
||||
}
|
||||
});
|
||||
|
||||
form.link_parent.change(function() {
|
||||
var new_category = ($(form.link_parent).select2('data').element[0].dataset.linkCategory);
|
||||
if(new_category != form.old_category) {
|
||||
$(form.link_child).find('option')
|
||||
.each(function(i,e) {
|
||||
if(
|
||||
((!$(e).data('link-category')) || $(e).data('link-category') == new_category) &&
|
||||
((!$(e).data('link-categories')) || new_category in $(e).data('link-categories').split(','))
|
||||
) {
|
||||
$(e).show();
|
||||
// here, we should handle the optgroup
|
||||
} else {
|
||||
$(e).hide();
|
||||
// here, we should handle the opgroup
|
||||
}
|
||||
});
|
||||
$(form.link_child).find('option')[0].selected = true;
|
||||
form.old_category = new_category;
|
||||
}
|
||||
});
|
||||
} else {
|
||||
var i=0,
|
||||
selected_items = $(form.link_parent).find(':selected');
|
||||
|
||||
form.old_categories = [];
|
||||
for (i=0;i < selected_items.length; i++) {
|
||||
form.old_categories.push(selected_items[i].value);
|
||||
}
|
||||
|
||||
$(form.link_child).find('option')
|
||||
.each(function(i,e) {
|
||||
var visible;
|
||||
if(form.old_categories.indexOf(e.dataset.linkCategory) != -1) {
|
||||
$(e).show();
|
||||
if (e.parentNode instanceof HTMLOptGroupElement) {
|
||||
$(e.parentNode).show();
|
||||
}
|
||||
} else {
|
||||
$(e).hide();
|
||||
if (e.parentNode instanceof HTMLOptGroupElement) {
|
||||
// we check if the other options are visible.
|
||||
visible = false
|
||||
for (var l=0; l < e.parentNode.children.length; l++) {
|
||||
if (window.getComputedStyle(e.parentNode.children[l]).getPropertyValue('display') != 'none') {
|
||||
visible = true;
|
||||
}
|
||||
}
|
||||
// if any options are visible, we hide the optgroup
|
||||
if (visible == false) {
|
||||
$(e.parentNode).hide();
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
form.link_parent.change(function() {
|
||||
var new_categories = [],
|
||||
selected_items = $(form.link_parent).find(':selected'),
|
||||
visible;
|
||||
for (i=0;i < selected_items.length; i++) {
|
||||
new_categories.push(selected_items[i].value);
|
||||
}
|
||||
|
||||
if(new_categories != form.old_categories) {
|
||||
$(form.link_child).find('option')
|
||||
.each(function(i,e) {
|
||||
if(new_categories.indexOf(e.dataset.linkCategory) != -1) {
|
||||
$(e).show();
|
||||
// if parent is an opgroup, we show it
|
||||
if (e.parentNode instanceof HTMLOptGroupElement) {
|
||||
$(e.parentNode).show();
|
||||
}
|
||||
} else {
|
||||
$(e).hide();
|
||||
// we check if the parent is an optgroup
|
||||
if (e.parentNode instanceof HTMLOptGroupElement) {
|
||||
// we check if other options are visible
|
||||
visible = false
|
||||
for (var l=0; l < e.parentNode.children.length; l++) {
|
||||
if (window.getComputedStyle(e.parentNode.children[l]).getPropertyValue('display') != 'none') {
|
||||
visible = true;
|
||||
}
|
||||
}
|
||||
// if any options are visible, we hide the optgroup
|
||||
if (visible == false) {
|
||||
$(e.parentNode).hide();
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
//$(form.link_child).find('option')[0].selected = true;
|
||||
form.old_categories = new_categories;
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function _displayHideTargetWithCheckbox(checkbox) {
|
||||
var target = checkbox.dataset.displayTarget,
|
||||
hideableElements;
|
||||
|
||||
hideableElements = document.querySelectorAll('[data-display-show-hide="' + target + '"]');
|
||||
|
||||
if (checkbox.checked) {
|
||||
for (let i=0; i < hideableElements.length; i = i+1) {
|
||||
hideableElements[i].style.display = "unset";
|
||||
}
|
||||
} else {
|
||||
for (let i=0; i < hideableElements.length; i = i+1) {
|
||||
hideableElements[i].style.display = "none";
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* create an interaction between a checkbox and element to show if the
|
||||
* checkbox is checked, or hide if the checkbox is not checked.
|
||||
*
|
||||
* The checkbox must have the data `data-display-target` with an id,
|
||||
* and the parts to show/hide must have the data `data-display-show-hide`
|
||||
* with the same value.
|
||||
*
|
||||
* Example :
|
||||
*
|
||||
* ```
|
||||
* <input data-display-target="export_abc" value="1" type="checkbox">
|
||||
*
|
||||
* <div data-display-show-hide="export_abc">
|
||||
* <!-- your content here will be hidden / shown according to checked state -->
|
||||
* </div>
|
||||
* ```
|
||||
*
|
||||
* Hint: for forms in symfony, you could use the `id` of the form element,
|
||||
* accessible through `{{ form.vars.id }}`. This id should be unique.
|
||||
*
|
||||
*
|
||||
* @returns {undefined}
|
||||
*/
|
||||
function listenerDisplayCheckbox() {
|
||||
var elements = document.querySelectorAll("[data-display-target]");
|
||||
|
||||
for (let i=0; i < elements.length; i = i+1) {
|
||||
elements[i].addEventListener("change", function(e) {
|
||||
_displayHideTargetWithCheckbox(e.target);
|
||||
});
|
||||
// initial display-hide
|
||||
_displayHideTargetWithCheckbox(elements[i]);
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
checkOtherValueOnChange: checkOtherValueOnChange,
|
||||
displayAlertWhenLeavingModifiedForm: displayAlertWhenLeavingModifiedForm,
|
||||
displayAlertWhenLeavingUnsubmittedForm: displayAlertWhenLeavingUnsubmittedForm,
|
||||
checkNullValuesInChoices: checkNullValuesInChoices,
|
||||
categoryLinkParentChildSelect: categoryLinkParentChildSelect,
|
||||
listenerDisplayCheckbox: listenerDisplayCheckbox,
|
||||
};
|
||||
} ();
|
||||
|
||||
export { chill };
|
93
src/Bundle/ChillMainBundle/Resources/public/chill/js/date.js
Normal file
@@ -0,0 +1,93 @@
|
||||
/**
|
||||
* Some utils for manipulating dates
|
||||
*
|
||||
* **WARNING** experimental
|
||||
*/
|
||||
|
||||
/**
|
||||
* Return the date to local ISO date, like YYYY-mm-dd
|
||||
*
|
||||
* The date is valid for the same timezone as the date's locale
|
||||
*
|
||||
* Do not take time into account
|
||||
*
|
||||
*/
|
||||
const dateToISO = (date) => {
|
||||
if (null === date) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return [
|
||||
date.getFullYear(),
|
||||
(date.getMonth() + 1).toString().padStart(2, '0'),
|
||||
date.getDate().toString().padStart(2, '0')
|
||||
].join('-');
|
||||
};
|
||||
|
||||
/**
|
||||
* Return a date object from iso string formatted as YYYY-mm-dd
|
||||
*
|
||||
* **Experimental**
|
||||
*/
|
||||
const ISOToDate = (str) => {
|
||||
let
|
||||
[year, month, day] = str.split('-');
|
||||
|
||||
return new Date(year, month-1, day);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a date object from iso string formatted as YYYY-mm-dd:HH:MM:ss+01:00
|
||||
*
|
||||
*/
|
||||
const ISOToDatetime = (str) => {
|
||||
if (null === str) {
|
||||
return null;
|
||||
}
|
||||
|
||||
let
|
||||
[cal, times] = str.split('T'),
|
||||
[year, month, date] = cal.split('-'),
|
||||
[time, timezone] = times.split(times.charAt(8)),
|
||||
[hours, minutes, seconds] = time.split(':')
|
||||
;
|
||||
|
||||
return new Date(year, month-1, date, hours, minutes, seconds);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert a date to ISO8601, valid for usage in api
|
||||
*
|
||||
*/
|
||||
const datetimeToISO = (date) => {
|
||||
let cal, time, offset;
|
||||
cal = [
|
||||
date.getFullYear(),
|
||||
(date.getMonth() + 1).toString().padStart(2, '0'),
|
||||
date.getDate().toString().padStart(2, '0')
|
||||
].join('-');
|
||||
|
||||
time = [
|
||||
date.getHours().toString().padStart(2, '0'),
|
||||
date.getMinutes().toString().padStart(2, '0'),
|
||||
date.getSeconds().toString().padStart(2, '0')
|
||||
].join(':');
|
||||
|
||||
offset = [
|
||||
date.getTimezoneOffset() <= 0 ? '+' : '-',
|
||||
Math.abs(Math.floor(date.getTimezoneOffset() / 60)).toString().padStart(2, '0'),
|
||||
':',
|
||||
Math.abs(date.getTimezoneOffset() % 60).toString().padStart(2, '0'),
|
||||
].join('');
|
||||
|
||||
let x = cal + 'T' + time + offset;
|
||||
|
||||
return x;
|
||||
};
|
||||
|
||||
export {
|
||||
dateToISO,
|
||||
ISOToDate,
|
||||
ISOToDatetime,
|
||||
datetimeToISO
|
||||
};
|