init
22
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: build configuration
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: nix
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: deploy
|
||||
run: nix-shell -p awscli2 --run "aws s3 sync ./www/ s3://$BUCKET/ --delete --endpoint-url $URL"
|
||||
env:
|
||||
URL: "https://s3.dgnum.eu/"
|
||||
BUCKET: banda-website
|
||||
AWS_ACCESS_KEY_ID: ${{ secrets.KEY_ID }}
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.SECRET_KEY }}
|
||||
|
||||
|
||||
|
345
www/css/calendar.css
Normal file
|
@ -0,0 +1,345 @@
|
|||
/* Calendar */
|
||||
|
||||
.cal-container {
|
||||
position: relative;
|
||||
|
||||
width: 100%;
|
||||
/* height: 1200px; */
|
||||
padding: 0;
|
||||
|
||||
font-size: 0.8rem;
|
||||
line-height: 100%;
|
||||
}
|
||||
|
||||
.cal-container,
|
||||
.cal-container * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* Time slots */
|
||||
|
||||
.cal-container .cal-time-slot-container {
|
||||
display: grid;
|
||||
/* grid-template-columns: repeat(24, 1fr); */
|
||||
grid-template-rows: 30px auto;
|
||||
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: calc(100% + 30px);
|
||||
padding: 0;
|
||||
border-bottom: 0px solid rgba(0, 0, 0, 0.5);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.cal-container .cal-time-slot {
|
||||
border-right: 1px solid rgba(0, 0, 0, 0.5);
|
||||
background-color: rgba(255, 255, 255, 0.8);
|
||||
}
|
||||
|
||||
/* .cal-container .cal-time-slot:hover {
|
||||
background-color: red;
|
||||
} */
|
||||
|
||||
.cal-container .cal-time-slot:nth-child(even) {
|
||||
background-color: rgba(71, 19, 43, 0);
|
||||
}
|
||||
|
||||
/* .cal-container .cal-time-slot:nth-child(even):hover {
|
||||
background-color: #D9D9D9;
|
||||
} */
|
||||
|
||||
.cal-container .cal-time-slot:last-child {
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
.cal-container .cal-time-slot-hour {
|
||||
padding: 0 0 0 calc(100% - 0.9rem + 7px);
|
||||
background-color: none; /* rgba(255, 223, 165, 0.08); */
|
||||
border-bottom: 0px solid rgba(71, 19, 43, 0.25);
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.cal-container .cal-time-slot-hour:nth-child(even) {
|
||||
background-color: none; /* rgba(255, 223, 165, 0.05);*/
|
||||
}
|
||||
|
||||
.cal-container .cal-time-slot-hour:first-child {
|
||||
color: transparent;
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
/* Events */
|
||||
|
||||
.cal-container .cal-event-container {
|
||||
display: grid;
|
||||
/* grid-template-columns: repeat(24, 1fr); */
|
||||
/* grid-template-rows: repeat(12, auto); */
|
||||
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
/* height: 100%; */
|
||||
padding: 0;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.cal-container .cal-event {
|
||||
position: relative;
|
||||
height: 42px;
|
||||
margin: 2px 0;
|
||||
padding: 5px;
|
||||
/* background-color: #EFEFEF; */
|
||||
border-radius: 3px;
|
||||
/* border: 1px solid #CCC; */
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
/* z-index: 500; */
|
||||
transition: 50ms ease-in;
|
||||
}
|
||||
|
||||
.cal-container .cal-event > * {
|
||||
display: none;
|
||||
margin: 5px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.cal-container .cal-event > .cal-event-name,
|
||||
.cal-container .cal-event > .cal-event-location,
|
||||
.cal-container .cal-event > .cal-event-perm-count {
|
||||
display: block;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.cal-container .cal-event > .cal-event-name {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.cal-container .cal-event > .cal-event-location {
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/*.cal-container .cal-event > .cal-event-location::before {
|
||||
content: " · ";
|
||||
}*/
|
||||
|
||||
.cal-container .cal-event > .cal-event-perm-count {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.cal-container
|
||||
.cal-event:not(.cal-event-subscribed)
|
||||
> .cal-event-perm-count.cal-perms-missing {
|
||||
width: calc(100% - 10px);
|
||||
right: auto;
|
||||
margin: 5px;
|
||||
padding: 5px;
|
||||
background-color: #fff;
|
||||
border: 2px solid #e44;
|
||||
color: #e44;
|
||||
font-weight: bold;
|
||||
border-radius: 3px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.cal-container .cal-event.cal-event-subscribed {
|
||||
border-width: 3px;
|
||||
border-color: #000;
|
||||
}
|
||||
|
||||
.cal-container .cal-event.cal-event-subscribed::after {
|
||||
content: "✔";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding: 1px;
|
||||
color: #fff;
|
||||
background-color: #000;
|
||||
border-top-right-radius: 3px;
|
||||
}
|
||||
|
||||
/* Event details popup */
|
||||
|
||||
.cal-container .cal-event-details {
|
||||
position: absolute;
|
||||
min-height: 100px;
|
||||
/* min-width: 40%; */
|
||||
max-width: 80%;
|
||||
padding: 20px;
|
||||
background-color: #333;
|
||||
color: #fff;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details:after {
|
||||
bottom: 100%;
|
||||
left: 50%;
|
||||
border: solid transparent;
|
||||
content: " ";
|
||||
height: 0;
|
||||
width: 0;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
border-bottom-color: #333;
|
||||
border-width: 20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details.above-event:after {
|
||||
top: 100%;
|
||||
left: 50%;
|
||||
border: solid transparent;
|
||||
content: " ";
|
||||
height: 0;
|
||||
width: 0;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
border-top-color: #333;
|
||||
border-width: 20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details * {
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-close-button {
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
margin: 0;
|
||||
padding: 5px;
|
||||
background: transparent;
|
||||
border: none;
|
||||
border-radius: 50%;
|
||||
font-size: 1.2rem;
|
||||
color: #bbb;
|
||||
transition: 100ms ease-out;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-close-button:hover {
|
||||
background-color: #484848;
|
||||
color: #efefef;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details a,
|
||||
.cal-container .cal-event-details a:hover {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-name {
|
||||
padding: 10px;
|
||||
border-radius: 4px;
|
||||
font-size: 1rem;
|
||||
color: #fff;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-name h3 {
|
||||
margin: 0 20px 20px 20px;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details table {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details td.cal-detail-label {
|
||||
padding: 0 10px 10px 0;
|
||||
font-weight: bold;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details td.cal-detail-value {
|
||||
padding: 0 0 10px 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-perm-area {
|
||||
margin: 10px 0;
|
||||
padding: 10px;
|
||||
background-color: #dfdfdf;
|
||||
color: #333;
|
||||
text-align: center;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-perm-title {
|
||||
margin: 0 0 10px 0;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-count {
|
||||
margin: 0 10px 0 0;
|
||||
font-size: 1.7rem;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.cal-container
|
||||
.cal-event-details
|
||||
.cal-detail-perm-area
|
||||
.cal-detail-perm-count.cal-perms-missing {
|
||||
color: #e44;
|
||||
}
|
||||
|
||||
.cal-container
|
||||
.cal-event-details
|
||||
.cal-detail-perm-area
|
||||
.cal-detail-perm-count.cal-perms-full {
|
||||
color: #393;
|
||||
}
|
||||
|
||||
.cal-container
|
||||
.cal-event-details
|
||||
.cal-detail-perm-area
|
||||
.cal-detail-perm-subscription-switch {
|
||||
margin: 0 0 0 10px;
|
||||
padding: 10px;
|
||||
font-size: 1.35rem;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.cal-container
|
||||
.cal-event-details
|
||||
.cal-detail-perm-area
|
||||
.cal-detail-perm-nb-missing-perms {
|
||||
margin: 20px 0 0 0;
|
||||
padding: 5px;
|
||||
background-color: #fff;
|
||||
border-radius: 4px;
|
||||
text-align: center;
|
||||
font-size: 1.1rem;
|
||||
color: #e44;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-description {
|
||||
margin: 20px 0 0 0;
|
||||
color: #ddd;
|
||||
font-size: 0.9rem;
|
||||
font-style: italic;
|
||||
text-align: justify;
|
||||
line-height: 130%;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-tag {
|
||||
display: inline-block;
|
||||
margin: 5px;
|
||||
padding: 5px;
|
||||
border: 1px solid #ddd;
|
||||
}
|
351
www/css/normalize.css
vendored
Normal file
|
@ -0,0 +1,351 @@
|
|||
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
||||
|
||||
/* Document
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Correct the line height in all browsers.
|
||||
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
||||
*/
|
||||
|
||||
html {
|
||||
line-height: 1.15; /* 1 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/* Sections
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the margin in all browsers.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the `main` element consistently in IE.
|
||||
*/
|
||||
|
||||
main {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the font size and margin on `h1` elements within `section` and
|
||||
* `article` contexts in Chrome, Firefox, and Safari.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in Firefox.
|
||||
* 2. Show the overflow in Edge and IE.
|
||||
*/
|
||||
|
||||
hr {
|
||||
box-sizing: content-box; /* 1 */
|
||||
height: 0; /* 1 */
|
||||
overflow: visible; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background on active links in IE 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Remove the bottom border in Chrome 57-
|
||||
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: none; /* 1 */
|
||||
text-decoration: underline; /* 2 */
|
||||
text-decoration: underline dotted; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font weight in Chrome, Edge, and Safari.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` elements from affecting the line height in
|
||||
* all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the border on images inside links in IE 10.
|
||||
*/
|
||||
|
||||
img {
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Change the font styles in all browsers.
|
||||
* 2. Remove the margin in Firefox and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
font-family: inherit; /* 1 */
|
||||
font-size: 100%; /* 1 */
|
||||
line-height: 1.15; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the overflow in IE.
|
||||
* 1. Show the overflow in Edge.
|
||||
*/
|
||||
|
||||
button,
|
||||
input {
|
||||
/* 1 */
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
||||
* 1. Remove the inheritance of text transform in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select {
|
||||
/* 1 */
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the inability to style clickable types in iOS and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
[type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner border and padding in Firefox.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore the focus styles unset by the previous rule.
|
||||
*/
|
||||
|
||||
button:-moz-focusring,
|
||||
[type="button"]:-moz-focusring,
|
||||
[type="reset"]:-moz-focusring,
|
||||
[type="submit"]:-moz-focusring {
|
||||
outline: 1px dotted ButtonText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the padding in Firefox.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
padding: 0.35em 0.75em 0.625em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the text wrapping in Edge and IE.
|
||||
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
||||
* 3. Remove the padding so developers are not caught out when they zero out
|
||||
* `fieldset` elements in all browsers.
|
||||
*/
|
||||
|
||||
legend {
|
||||
box-sizing: border-box; /* 1 */
|
||||
color: inherit; /* 2 */
|
||||
display: table; /* 1 */
|
||||
max-width: 100%; /* 1 */
|
||||
padding: 0; /* 3 */
|
||||
white-space: normal; /* 1 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the default vertical scrollbar in IE 10+.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in IE 10.
|
||||
* 2. Remove the padding in IE 10.
|
||||
*/
|
||||
|
||||
[type="checkbox"],
|
||||
[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the cursor style of increment and decrement buttons in Chrome.
|
||||
*/
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the odd appearance in Chrome and Safari.
|
||||
* 2. Correct the outline style in Safari.
|
||||
*/
|
||||
|
||||
[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
outline-offset: -2px; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner padding in Chrome and Safari on macOS.
|
||||
*/
|
||||
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inability to style clickable types in iOS and Safari.
|
||||
* 2. Change font properties to `inherit` in Safari.
|
||||
*/
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
-webkit-appearance: button; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
}
|
||||
|
||||
/* Interactive
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Add the correct display in Edge, IE 10+, and Firefox.
|
||||
*/
|
||||
|
||||
details {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
* Add the correct display in all browsers.
|
||||
*/
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
}
|
||||
|
||||
/* Misc
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10+.
|
||||
*/
|
||||
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10.
|
||||
*/
|
||||
|
||||
[hidden] {
|
||||
display: none;
|
||||
}
|
727
www/css/style.css
Normal file
|
@ -0,0 +1,727 @@
|
|||
/*--------------------------------------------------------*/
|
||||
/* FONTS
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
/* fira-sans-regular - latin */
|
||||
@font-face {
|
||||
font-family: "Fira Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src:
|
||||
local("Fira Sans Regular"),
|
||||
local("FiraSans-Regular"),
|
||||
url("../fonts/fira-sans-v10-latin-regular.woff2") format("woff2"),
|
||||
url("../fonts/fira-sans-v10-latin-regular.woff") format("woff");
|
||||
}
|
||||
|
||||
/* fira-sans-700 - latin */
|
||||
@font-face {
|
||||
font-family: "Fira Sans";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src:
|
||||
local("Fira Sans Bold"),
|
||||
local("FiraSans-Bold"),
|
||||
url("../fonts/fira-sans-v10-latin-700.woff2") format("woff2"),
|
||||
url("../fonts/fira-sans-v10-latin-700.woff") format("woff");
|
||||
}
|
||||
|
||||
/* fira-mono-regular - latin */
|
||||
@font-face {
|
||||
font-family: "Fira Mono";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src:
|
||||
local("Fira Mono Regular"),
|
||||
local("FiraMono-Regular"),
|
||||
url("../fonts/fira-mono-v8-latin-regular.woff2") format("woff2"),
|
||||
/* Chrome 26+, Opera 23+, Firefox 39+ */
|
||||
url("../fonts/fira-mono-v8-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
||||
}
|
||||
|
||||
/* permanent-marker-regular - latin */
|
||||
@font-face {
|
||||
font-family: "Permanent Marker";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src:
|
||||
local("Permanent Marker Regular"),
|
||||
local("PermanentMarker-Regular"),
|
||||
url("../fonts/permanent-marker-v9-latin-regular.woff2") format("woff2"),
|
||||
url("../fonts/permanent-marker-v9-latin-regular.woff") format("woff");
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* GENERAL RULES
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
font-family: "Fira Sans", sans-serif;
|
||||
font-weight: 400;
|
||||
line-height: 180%;
|
||||
color: #000000;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #fbfbfb;
|
||||
}
|
||||
|
||||
a,
|
||||
a:hover,
|
||||
a:active,
|
||||
a:visited {
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
html,
|
||||
body {
|
||||
font-size: 16px;
|
||||
line-height: 160%;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* HEADER
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#main-header {
|
||||
position: relative;
|
||||
height: 750px;
|
||||
margin-bottom: 40px;
|
||||
background-color: #fbfbfb;
|
||||
background-image: url("../img/header/interq4.svg");
|
||||
background-position: top center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 1200px) {
|
||||
#main-header {
|
||||
height: 600px;
|
||||
/* margin-bottom: 30px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 960px) {
|
||||
#main-header {
|
||||
height: 460px;
|
||||
/* margin-bottom: 30px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
#main-header {
|
||||
height: 420px;
|
||||
/* margin-bottom: 20px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 640px) {
|
||||
#main-header {
|
||||
height: 320px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
#main-header {
|
||||
height: 250px;
|
||||
/* margin-bottom: 20px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
#main-header {
|
||||
height: 150px;
|
||||
/* margin-bottom: 15px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 220px) {
|
||||
#main-header {
|
||||
height: 120px;
|
||||
/* margin-bottom: 15px; */
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* CONTENT
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
section {
|
||||
padding: 0 0 200px 0;
|
||||
|
||||
background-repeat: no-repeat;
|
||||
background-position: bottom center;
|
||||
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
section > * {
|
||||
max-width: 960px;
|
||||
|
||||
margin-left: calc(50% - 480px);
|
||||
padding-left: 60px;
|
||||
padding-right: 60px;
|
||||
}
|
||||
|
||||
section h2 {
|
||||
margin-bottom: 25px;
|
||||
padding: 40px 60px 30px 60px;
|
||||
|
||||
color: #000000;
|
||||
font-family: "Permanent Marker";
|
||||
font-size: 3.2rem;
|
||||
text-align: center;
|
||||
word-wrap: break-word;
|
||||
hyphens: auto;
|
||||
}
|
||||
|
||||
section:nth-child(2) {
|
||||
background-color: #fbfbfb;
|
||||
background-image: url(../img/theme/paint/paint-yellow.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position:
|
||||
0% 100%,
|
||||
0% 0%;
|
||||
}
|
||||
section:nth-child(3) {
|
||||
background-color: #fbfbfb;
|
||||
background-image: url(../img/theme/paint/paint-orange.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position:
|
||||
0% 100%,
|
||||
top left;
|
||||
}
|
||||
|
||||
section:nth-child(4) {
|
||||
background-color: #fbfbfb;
|
||||
background-image: url(../img/theme/paint/paint-yellow.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position:
|
||||
0% 100%,
|
||||
center right;
|
||||
}
|
||||
|
||||
|
||||
section p {
|
||||
padding-bottom: 20px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
section p.stand-out {
|
||||
/* font-weight: 700; */
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
section p a,
|
||||
section p a:visited {
|
||||
padding: 0px 2px;
|
||||
color: #000000;
|
||||
/* text-decoration: underline; */
|
||||
border-bottom: 3px solid #000;
|
||||
}
|
||||
|
||||
section p a:hover,
|
||||
section p a:active {
|
||||
background-color: #000000;
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
section > * {
|
||||
max-width: 960px;
|
||||
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-left: 40px;
|
||||
padding-right: 40px;
|
||||
}
|
||||
|
||||
section h2 {
|
||||
font-size: 2.6rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 580px) {
|
||||
section h2 {
|
||||
padding: 40px 40px 30px 40px;
|
||||
font-size: 2.4rem;
|
||||
}
|
||||
|
||||
section {
|
||||
background-image: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 380px) {
|
||||
section > * {
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
section h2 {
|
||||
padding: 40px 20px 30px 20px;
|
||||
font-size: 2.4rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
section h2 {
|
||||
padding: 30px 20px 20px 20px;
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* BUTTONS
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
.button {
|
||||
display: block;
|
||||
/* width: 80%; */
|
||||
|
||||
margin: 20px auto 0 auto;
|
||||
padding: 15px 20px;
|
||||
|
||||
background-color: transparent;
|
||||
|
||||
border: 3px solid #000000;
|
||||
|
||||
color: #000000;
|
||||
font-size: 1.4rem;
|
||||
font-weight: 400;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
background-color: #000000;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#instagram-button > span::before {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
background-image: url("../img/icons/instagram.svg");
|
||||
background-size: 32px 32px;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
#instagram-button:hover > span::before {
|
||||
background-image: url("../img/icons/instagram-white.svg");
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.button > span {
|
||||
line-height: 32px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
.button {
|
||||
width: 100%;
|
||||
padding: 10px 15px;
|
||||
|
||||
font-size: 1.1rem;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.button img {
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* PHOTOS
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
.banda_photos img {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
.banda_photos img {
|
||||
width: 60%;
|
||||
height: 60%;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* PRICE TABLE
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#calendar {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
#calendar {
|
||||
overflow-x: scroll;
|
||||
}
|
||||
|
||||
#cal-container {
|
||||
min-width: 1800px;
|
||||
margin: 0 0 40px 0; /* Fix the weird y-overflow of the calendar root */
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* LOCATION
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#mailing-address {
|
||||
margin: 0 0 20px 0;
|
||||
|
||||
font-size: 1.5rem;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
line-height: 32px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#mailing-address > span::before {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
background-image: url("../img/icons/location.svg");
|
||||
background-size: 32px 32px;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
#interactive-map {
|
||||
width: 100%;
|
||||
|
||||
margin: 20px 0;
|
||||
|
||||
border: none;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#public-transport-info {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr 1fr;
|
||||
grid-template-rows: 1fr 1fr 1fr;
|
||||
|
||||
margin-left: calc(50% - 480px - 50px);
|
||||
|
||||
font-size: 1.5rem;
|
||||
|
||||
line-height: 48px;
|
||||
vertical-align: middle;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#public-transport-info > * {
|
||||
margin: 5px;
|
||||
|
||||
justify-self: left;
|
||||
}
|
||||
|
||||
#public-transport-info img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
|
||||
margin: 0 5px 0 0;
|
||||
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
#transport-metro-icon,
|
||||
#transport-metro-stop,
|
||||
#transport-bus-1-icon,
|
||||
#transport-bus-1-stop {
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
#transport-rer-icon,
|
||||
#transport-rer-stop,
|
||||
#transport-bus-2-icon,
|
||||
#transport-bus-2-stop {
|
||||
grid-row: 2;
|
||||
}
|
||||
|
||||
#transport-noctilien-icon,
|
||||
#transport-noctilien-stop {
|
||||
grid-row: 3;
|
||||
}
|
||||
|
||||
#transport-metro-icon,
|
||||
#transport-rer-icon {
|
||||
grid-column: 1;
|
||||
justify-self: end;
|
||||
}
|
||||
|
||||
#transport-metro-stop,
|
||||
#transport-rer-stop {
|
||||
grid-column: 2;
|
||||
}
|
||||
|
||||
#transport-bus-1-icon,
|
||||
#transport-bus-2-icon,
|
||||
#transport-noctilien-icon {
|
||||
grid-column: 3;
|
||||
justify-self: end;
|
||||
}
|
||||
|
||||
#transport-bus-1-stop,
|
||||
#transport-bus-2-stop,
|
||||
#transport-noctilien-stop {
|
||||
grid-column: 4;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
#public-transport-info {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto;
|
||||
grid-template-rows: auto auto auto auto auto;
|
||||
align-items: center;
|
||||
|
||||
margin: 0;
|
||||
|
||||
line-height: 48px;
|
||||
}
|
||||
|
||||
#transport-metro-icon,
|
||||
#transport-metro-stop {
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
#transport-rer-icon,
|
||||
#transport-rer-stop {
|
||||
grid-row: 2;
|
||||
}
|
||||
|
||||
#transport-bus-1-icon,
|
||||
#transport-bus-1-stop {
|
||||
grid-row: 3;
|
||||
}
|
||||
|
||||
#transport-bus-2-icon,
|
||||
#transport-bus-2-stop {
|
||||
grid-row: 4;
|
||||
}
|
||||
|
||||
#transport-noctilien-icon,
|
||||
#transport-noctilien-stop {
|
||||
grid-row: 5;
|
||||
}
|
||||
|
||||
#transport-metro-icon,
|
||||
#transport-rer-icon,
|
||||
#transport-bus-1-icon,
|
||||
#transport-bus-2-icon,
|
||||
#transport-noctilien-icon {
|
||||
grid-column: 1;
|
||||
justify-self: end;
|
||||
}
|
||||
|
||||
#transport-metro-stop,
|
||||
#transport-rer-stop,
|
||||
#transport-bus-1-stop,
|
||||
#transport-bus-2-stop,
|
||||
#transport-noctilien-stop {
|
||||
grid-column: 2;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 580px) {
|
||||
#mailing-address {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
#public-transport-info {
|
||||
grid-template-columns: 4fr 6fr;
|
||||
|
||||
line-height: 32px;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
#public-transport-info img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 380px) {
|
||||
#public-transport-info {
|
||||
row-gap: 16px;
|
||||
}
|
||||
|
||||
#public-transport-info img {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* SPONSORS
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#sponsors {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#sponsors img {
|
||||
height: 100px;
|
||||
object-fit: cover;
|
||||
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
#sponsors img.sponsor-disc {
|
||||
height: 155px;
|
||||
border-radius: 78px;
|
||||
transition: 100ms ease-in;
|
||||
}
|
||||
|
||||
#sponsors img.sponsor-disc:hover {
|
||||
border: 5px solid #e7be42ff;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
#sponsors img {
|
||||
height: 60px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
#sponsors img.sponsor-disc {
|
||||
height: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* CONTACT
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#contact-email {
|
||||
font-family: "Fira Mono";
|
||||
font-size: 1.5rem;
|
||||
text-align: center;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
#contact-email > span::before {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
background-image: url("../img/icons/email.svg");
|
||||
background-size: 32px 32px;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
#contact-email {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
#contact-email > span::before {
|
||||
content: "";
|
||||
height: 0;
|
||||
width: 0;
|
||||
background: none;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* EQUIPE INTERQ
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#team h3 {
|
||||
margin: 0 0 10px 0;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.team-group {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.team-group figure {
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
.team-group figure img {
|
||||
width: 260px;
|
||||
}
|
||||
|
||||
.team-group figcaption {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
.team-group {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.team-group figure {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
.team-group figure img {
|
||||
width: 80%;
|
||||
height: 80%;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* SIGNATURE
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#signature {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* Tableau */
|
||||
td,
|
||||
th {
|
||||
border: 1px solid #333;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
margin: auto;
|
||||
}
|
111
www/css/tipso.css
Normal file
|
@ -0,0 +1,111 @@
|
|||
/* Tipso Bubble Styles */
|
||||
.tipso_bubble,
|
||||
.tipso_bubble > .tipso_arrow {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.tipso_bubble {
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
border-radius: 6px;
|
||||
z-index: 9999;
|
||||
}
|
||||
.tipso_style {
|
||||
/* cursor: help; */
|
||||
/* border-bottom: 1px dotted; */
|
||||
}
|
||||
.tipso_title {
|
||||
padding: 0;
|
||||
border-radius: 6px 6px 0 0;
|
||||
font-weight: 700;
|
||||
}
|
||||
.tipso_content {
|
||||
word-wrap: break-word;
|
||||
padding: 0;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* Tipso Bubble size classes - Similar to Foundation's syntax*/
|
||||
.tipso_bubble.tiny {
|
||||
font-size: 0.6rem;
|
||||
}
|
||||
.tipso_bubble.small {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
.tipso_bubble.default {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.tipso_bubble.large {
|
||||
font-size: 1.2rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.tipso_bubble.cal_small {
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
/* Tipso Bubble Div */
|
||||
.tipso_bubble > .tipso_arrow {
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border: 8px solid;
|
||||
pointer-events: none;
|
||||
}
|
||||
.tipso_bubble.top > .tipso_arrow {
|
||||
border-top-color: #000;
|
||||
border-right-color: transparent;
|
||||
border-left-color: transparent;
|
||||
border-bottom-color: transparent;
|
||||
top: 100%;
|
||||
left: 50%;
|
||||
margin-left: -8px;
|
||||
}
|
||||
.tipso_bubble.bottom > .tipso_arrow {
|
||||
border-bottom-color: #000;
|
||||
border-right-color: transparent;
|
||||
border-left-color: transparent;
|
||||
border-top-color: transparent;
|
||||
bottom: 100%;
|
||||
left: 50%;
|
||||
margin-left: -8px;
|
||||
}
|
||||
.tipso_bubble.left > .tipso_arrow {
|
||||
border-left-color: #000;
|
||||
border-top-color: transparent;
|
||||
border-bottom-color: transparent;
|
||||
border-right-color: transparent;
|
||||
top: 50%;
|
||||
left: 100%;
|
||||
margin-top: -8px;
|
||||
}
|
||||
.tipso_bubble.right > .tipso_arrow {
|
||||
border-right-color: #000;
|
||||
border-top-color: transparent;
|
||||
border-bottom-color: transparent;
|
||||
border-left-color: transparent;
|
||||
top: 50%;
|
||||
right: 100%;
|
||||
margin-top: -8px;
|
||||
}
|
||||
|
||||
.tipso_bubble .top_right_corner,
|
||||
.tipso_bubble.top_right_corner {
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
|
||||
.tipso_bubble .bottom_right_corner,
|
||||
.tipso_bubble.bottom_right_corner {
|
||||
border-top-left-radius: 0;
|
||||
}
|
||||
|
||||
.tipso_bubble .top_left_corner,
|
||||
.tipso_bubble.top_left_corner {
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
|
||||
.tipso_bubble .bottom_left_corner,
|
||||
.tipso_bubble.bottom_left_corner {
|
||||
border-top-right-radius: 0;
|
||||
}
|
BIN
www/fonts/fira-mono-v8-latin-regular.woff
Normal file
BIN
www/fonts/fira-mono-v8-latin-regular.woff2
Normal file
BIN
www/fonts/fira-sans-v10-latin-700.woff
Normal file
BIN
www/fonts/fira-sans-v10-latin-700.woff2
Normal file
BIN
www/fonts/fira-sans-v10-latin-regular.woff
Normal file
BIN
www/fonts/fira-sans-v10-latin-regular.woff2
Normal file
BIN
www/fonts/permanent-marker-v9-latin-regular.woff
Normal file
BIN
www/fonts/permanent-marker-v9-latin-regular.woff2
Normal file
229
www/img/content/contrats.svg
Normal file
|
@ -0,0 +1,229 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 301.6 59.8"
|
||||
style="enable-background:new 0 0 301.6 59.8;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="contrats.svg"
|
||||
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs38" /><sodipodi:namedview
|
||||
id="namedview38"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="4.316976"
|
||||
inkscape:cx="150.8"
|
||||
inkscape:cy="29.99785"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1000"
|
||||
inkscape:window-x="-11"
|
||||
inkscape:window-y="-11"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Calque_1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style1">
|
||||
.st0{fill:#271A88;}
|
||||
</style>
|
||||
<g
|
||||
id="g2"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(-108.8725,1.853149)">
|
||||
<g
|
||||
id="g1"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 231.3,21.5 c 3.5,4.1 4.9,9.6 9.9,12.3 0.9,0.5 1.8,0 2.2,-0.9 0.8,-2.1 0.5,-4.3 0.5,-6.5 -0.1,-2.9 -0.3,-5.8 -0.6,-8.7 -0.2,-1.9 -3.2,-1.9 -3,0 0.2,2.5 0.4,5 0.5,7.5 0.1,2.2 0.5,4.8 -0.3,6.9 0.7,-0.3 1.5,-0.6 2.2,-0.9 -4.6,-2.5 -6,-8.1 -9.3,-11.9 -1.3,-1.4 -3.4,0.7 -2.1,2.2 z"
|
||||
id="path1"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g4"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(-108.8725,1.853149)">
|
||||
<g
|
||||
id="g3"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 230.1,19.3 c -0.5,1.9 -0.1,3.6 0.2,5.5 0.5,2.5 0.7,5 0.6,7.5 0,1.7 2.4,2 2.9,0.4 0.2,-0.5 0.3,-1 0.5,-1.5 0.6,-1.8 -2.3,-2.6 -2.9,-0.8 -0.2,0.5 -0.3,1 -0.5,1.5 1,0.1 2,0.3 2.9,0.4 0,-1.9 0,-3.8 -0.3,-5.7 -0.3,-2.1 -1.2,-4.4 -0.7,-6.5 0.7,-1.9 -2.2,-2.7 -2.7,-0.8 z"
|
||||
id="path2"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g6"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(-108.8725,1.853149)">
|
||||
<g
|
||||
id="g5"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 223.7,19.8 c -3,-3.4 -8.1,-1.6 -9.6,2.3 -1.5,3.9 0.7,10.4 5,11.7 4.2,1.3 8.8,-2.5 8.7,-6.8 -0.2,-4.5 -4.3,-9.9 -9.2,-8.3 -1.8,0.6 -1.1,3.5 0.8,2.9 2.9,-0.9 5.3,2.9 5.4,5.4 0.1,2.3 -2.8,5.1 -5.2,3.8 -1.8,-1 -3,-4.1 -3,-6 0.1,-2.5 2.7,-5.3 4.9,-2.8 1.4,1.3 3.5,-0.8 2.2,-2.2 z"
|
||||
id="path4"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g10"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(-1.1582182,1.158218)">
|
||||
<g
|
||||
id="g9"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 194.7,30 c 0,1.2 0.4,2.4 1,3.5 0.4,0.7 1.4,0.9 2.1,0.5 0.7,-0.4 0.9,-1.3 0.5,-2.1 -0.4,-0.6 -0.6,-1.3 -0.6,-2 0,-0.8 -0.7,-1.5 -1.5,-1.5 -0.8,0.1 -1.5,0.8 -1.5,1.6 z"
|
||||
id="path8"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g12"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(-1.1582182,1.158218)">
|
||||
<g
|
||||
id="g11"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 187.3,20.4 c 3.4,-0.2 6.7,-0.3 10.1,-0.3 1.7,0 4.7,0.8 6.1,-0.6 0.5,-0.5 0.6,-1.6 0,-2.1 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.8,-0.6 -1.7,-0.6 -2.4,0.3 l -0.1,0.1 c -1.1,1.6 1.5,3.1 2.6,1.5 l 0.1,-0.1 c -0.8,0.1 -1.6,0.2 -2.4,0.3 0.1,0 0.1,0.1 0.2,0.1 0,-0.7 0,-1.4 0,-2.1 0.9,-0.3 0.7,-0.3 -0.6,-0.2 -0.7,0 -1.5,0 -2.2,0 -1.1,0 -2.2,0 -3.4,0 -2.6,0 -5.2,0.1 -7.8,0.3 -2,0 -2,3 0,2.9 z"
|
||||
id="path10"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g14"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(-1.1582182,1.158218)">
|
||||
<g
|
||||
id="g13"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 193.1,19.4 c 0.7,3.7 1.3,7.4 1.5,11.1 0.1,1.6 2.5,2.1 2.9,0.4 0.3,-0.9 0.1,-1.4 -0.5,-2.2 -1.2,-1.5 -3.3,0.6 -2.1,2.1 0.1,0.1 0.2,0.2 0.2,0.3 -0.1,-0.5 -0.3,-1 -0.4,-1.5 0,0.1 -0.1,0.3 -0.1,0.4 1,0.1 2,0.3 2.9,0.4 -0.3,-4 -0.8,-8 -1.6,-11.9 -0.3,-1.8 -3.2,-1 -2.8,0.9 z"
|
||||
id="path12"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(-1.1582182,1.158218)">
|
||||
<g
|
||||
id="g15"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 177,27.7 c 2.7,0 5.3,-0.3 7.9,-0.9 1.9,-0.4 1.1,-3.3 -0.8,-2.9 -2.4,0.5 -4.7,0.7 -7.1,0.8 -1.9,0 -1.9,3 0,3 z"
|
||||
id="path14"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g18"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(-1.1582182,1.158218)">
|
||||
<g
|
||||
id="g17"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 176.3,32.6 c 0.8,-3.8 1.3,-9.6 4,-12.7 1.2,-1.4 1.4,0 2,1.2 0.5,1 0.9,2.1 1.3,3.2 0.8,2.5 1.6,5 2.3,7.5 0.9,-0.4 1.8,-0.8 2.7,-1.2 -0.2,-0.4 -0.3,-0.8 -0.5,-1.2 -0.8,-1.8 -3.3,-0.2 -2.6,1.5 0.2,0.4 0.3,0.8 0.5,1.2 0.7,1.6 3.2,0.4 2.7,-1.2 -0.8,-2.9 -3.2,-16.2 -8.2,-14.9 -5.3,1.4 -6.3,11.5 -7.1,15.7 -0.4,2 2.5,2.8 2.9,0.9 z"
|
||||
id="path16"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g20"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(1.6215054,-20.152996)">
|
||||
<g
|
||||
id="g19"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 137,41.5 c 5,-0.2 10.1,-0.5 15.1,-0.7 1.9,-0.1 1.9,-3.1 0,-3 -5,0.2 -10.1,0.5 -15.1,0.7 -1.9,0.1 -1.9,3.1 0,3 z"
|
||||
id="path18"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g22"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(-18.378495,1.847004)">
|
||||
<g
|
||||
id="g21"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 162.9,17.3 c -0.4,2.2 0.3,3.9 0.9,6 0.7,2.7 0.9,5.4 0.9,8.2 0,1.9 2.9,1.9 3,0 0,-0.6 -0.1,-0.9 -0.4,-1.4 -1.1,-1.6 -3.7,-0.1 -2.6,1.5 v -0.1 c 1,0 2,0 3,0 0,-2 -0.1,-4 -0.4,-6 -0.3,-2.2 -1.8,-5.2 -1.5,-7.4 0.3,-1.9 -2.5,-2.7 -2.9,-0.8 z"
|
||||
id="path20"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
|
||||
|
||||
<g
|
||||
id="g28"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(-39.842705,2.084793)">
|
||||
<g
|
||||
id="g27"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 139.4,15.9 c -3.5,-0.6 -7.3,-0.5 -10,2.1 -2.4,2.3 -2.8,6.1 -2.1,9.3 0.8,3.3 3,5.5 6.3,6.2 2.9,0.7 6.2,0.9 7.9,-1.9 1,-1.7 -1.6,-3.2 -2.6,-1.5 -0.9,1.5 -3.6,0.8 -4.9,0.4 -2.4,-0.7 -3.4,-2.4 -3.8,-4.7 -0.9,-5.7 3.4,-7.9 8.5,-7 1.8,0.3 2.6,-2.6 0.7,-2.9 z"
|
||||
id="path26"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g30"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(91.730878,3.706298)">
|
||||
<g
|
||||
id="g29"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 124.5,17.3 c -2.9,-2.7 -10.7,-4.5 -10.7,1.6 0,1.9 1,4.4 2.9,5.2 1.7,0.8 3.6,0.2 4.3,2.6 1.1,3.8 -4.5,5.2 -5.8,1.4 -0.1,0.5 -0.3,1 -0.4,1.5 0.2,-0.2 0.3,-0.3 0.5,-0.5 1.4,-1.4 -0.7,-3.5 -2.1,-2.1 -0.2,0.2 -0.3,0.3 -0.5,0.5 -0.4,0.4 -0.6,1 -0.4,1.5 1.8,5.3 9.2,6.4 11.5,0.8 1,-2.4 0.2,-5.2 -1.8,-6.8 -1.1,-0.9 -2.1,-0.9 -3.3,-1.4 -1.7,-0.6 -2.2,-1.5 -0.7,-2.8 0.5,-1 1.2,-1.2 2,-0.6 0.9,0.3 1.7,0.7 2.5,1.3 1.3,1.2 3.4,-0.9 2,-2.2 z"
|
||||
id="path28"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
|
||||
|
||||
<g
|
||||
id="g36"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(78.295547,1.621505)">
|
||||
<g
|
||||
id="g35"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M 83,33.4 C 82.5,30 81.6,26.3 81.6,22.9 c 0,-7.1 7.6,-4.1 5.2,-0.4 -1,1.4 -3.2,2 -4.7,2.1 0.1,1 0.3,2 0.4,2.9 3.2,-0.8 5.2,4.2 6.2,6.4 0.9,-0.5 1.7,-1 2.6,-1.5 -0.4,-0.6 -0.8,-1.2 -1.3,-1.7 -1.1,-1.5 -3.7,0 -2.6,1.5 0.4,0.6 0.8,1.2 1.3,1.7 1.1,1.6 3.4,0.3 2.6,-1.5 -1.8,-3.8 -4.6,-9 -9.6,-7.7 -1.6,0.4 -1.3,3 0.4,2.9 3.4,-0.2 6.9,-1.9 8.4,-5.1 1.3,-3 -1,-5.7 -3.8,-6.7 -3,-1 -6.6,0.2 -7.7,3.4 -0.7,2 -0.2,4.3 0.1,6.4 0.4,2.9 0.8,5.7 1.2,8.6 0,1.9 2.9,1.1 2.7,-0.8 z"
|
||||
id="path34"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
|
||||
</svg>
|
After Width: | Height: | Size: 7.9 KiB |
293
www/img/content/nouscontacter.svg
Normal file
|
@ -0,0 +1,293 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 314.1 83.8"
|
||||
style="enable-background:new 0 0 314.1 83.8;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="nouscontacter.svg"
|
||||
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs36" /><sodipodi:namedview
|
||||
id="namedview36"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="4.1451766"
|
||||
inkscape:cx="143.05784"
|
||||
inkscape:cy="41.855877"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1000"
|
||||
inkscape:window-x="-11"
|
||||
inkscape:window-y="-11"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Calque_1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style1">
|
||||
.st0{fill:#271A88;}
|
||||
</style>
|
||||
<g
|
||||
id="g2"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g1"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 189.8,60.5 c 0,-0.1 0,-0.2 0,-0.3 0,-0.8 -0.7,-1.5 -1.5,-1.5 -0.8,0 -1.5,0.7 -1.5,1.5 0,0.1 0,0.2 0,0.3 0,0.8 0.7,1.5 1.5,1.5 0.8,0 1.5,-0.7 1.5,-1.5 z"
|
||||
id="path1"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g4"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g3"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 238.3,54.7 c 2.4,-0.3 4.8,-0.7 7.1,-1.3 1.9,-0.5 1.1,-3.4 -0.8,-2.9 -2.1,0.5 -4.2,0.9 -6.3,1.2 -1.9,0.2 -1.9,3.2 0,3 z"
|
||||
id="path2"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g6"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g5"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 247.7,45.4 c -3.5,-0.3 -7.4,-1.1 -10,1.9 -2.1,2.4 -2.3,6.1 -1.8,9 0.6,2.9 2.7,4.7 5.6,5 2.2,0.3 7,0.2 6.9,-2.9 0,-1.9 -3,-1.9 -3,0 0.3,-0.4 0.1,-0.6 -0.3,-0.3 -0.6,0.1 -1.2,0.2 -1.8,0.2 -0.7,0 -1.4,0 -2.1,-0.2 -2.5,-0.7 -2.6,-3.6 -2.4,-5.8 0.2,-2.2 1.2,-4 3.6,-4.4 1.7,-0.2 3.6,0.2 5.2,0.3 2.1,0.4 2,-2.6 0.1,-2.8 z"
|
||||
id="path4"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g8"
|
||||
transform="translate(2.4124425,-20.988249)"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<g
|
||||
id="g7"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 253.9,58.6 c -0.3,-1.3 0.1,-2.5 0,-3.8 -0.1,-1.2 -0.4,-2.5 -0.5,-3.7 -0.1,-0.7 0,-1.3 0.1,-1.9 1.7,-1.3 2.7,-1.1 2.9,0.4 0.1,1.8 -1.5,1.8 -3.1,1.6 0,1 0,2 0,3 3.2,0.2 4.6,3.8 6.2,6.1 1,1.4 3.1,0.6 2.7,-1.2 -0.2,-0.8 -0.5,-1.2 -1.2,-1.6 -1.7,-0.8 -3.3,1.7 -1.5,2.6 0,-0.1 -0.1,-0.1 -0.1,-0.2 0.9,-0.4 1.8,-0.8 2.7,-1.2 -2.3,-3.4 -4.2,-7.3 -8.8,-7.6 -2,-0.1 -1.9,2.8 0,3 2.5,0.3 6.5,-0.4 6.3,-3.6 -0.1,-2.3 -1.3,-5.2 -3.8,-5.8 -2.8,-0.7 -5,1.9 -5.4,4.4 -0.2,1.4 0,2.8 0.2,4.1 0.3,2.1 -0.2,4.2 0.3,6.2 0.5,1.9 3.4,1.1 3,-0.8 z"
|
||||
id="path6"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g10"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g9"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 220.3,49.6 c 3.7,-0.3 7.4,-0.6 11.1,-0.8 1.8,-0.1 3.6,-0.1 3.8,-2.2 0.2,-1.9 -2.8,-1.9 -3,0 0,0.1 0,0.2 0,0.3 0.2,-0.4 0.5,-0.9 0.7,-1.3 -0.6,0.4 -2.5,0.3 -3.1,0.4 -1.1,0.1 -2.1,0.2 -3.2,0.2 -2.1,0.2 -4.2,0.3 -6.4,0.5 -1.9,0 -1.9,3 0.1,2.9 z"
|
||||
id="path8"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g12"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g11"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 226.3,47.7 c 0.3,2.1 0.6,4.2 0.9,6.2 0.2,1.3 1.2,4.5 0.8,5.7 0.8,-0.2 1.7,-0.4 2.5,-0.7 l -0.1,-0.1 c 0,0.7 0,1.4 0,2.1 0,0 0,0 0.1,-0.1 1.2,-1.5 -0.9,-3.6 -2.1,-2.1 0,0 0,0 -0.1,0.1 -0.5,0.6 -0.7,1.6 0,2.1 l 0.1,0.1 c 0.9,0.8 2.1,0.5 2.5,-0.7 0.6,-1.6 -0.4,-4.2 -0.6,-5.9 -0.4,-2.6 -0.7,-5.1 -1.1,-7.7 -0.3,-1.7 -3.2,-0.9 -2.9,1 z"
|
||||
id="path10"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g14"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g13"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 218.7,44.9 c -6.3,-2 -11.5,6 -9,11.5 1.1,2.3 3.4,4 6,4.2 2.2,0.2 5.6,-0.8 4.9,-3.6 -0.4,-1.9 -3.3,-1.1 -2.9,0.8 0,-0.1 -3.2,-0.6 -3.6,-0.8 -1.2,-0.7 -2,-2 -2.1,-3.4 -0.2,-3 2.5,-6.9 5.8,-5.8 2,0.6 2.8,-2.3 0.9,-2.9 z"
|
||||
id="path12"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g15"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 202.3,56.6 c 1,0 2,0 3,0 1.9,0 1.9,-3 0,-3 -1,0 -2,0 -3,0 -2,0 -2,3 0,3 z"
|
||||
id="path14"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g18"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g17"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 199.7,61.7 c 2.7,-4.7 1.1,-10.8 4.4,-15.1 -0.9,0 -1.7,0 -2.6,0 1.5,2.4 2.3,5 3.2,7.7 0.2,0.5 2.4,6.4 2.9,5.7 0.4,-0.2 0.9,-0.5 1.3,-0.7 -0.1,0 -0.1,0 -0.2,0 0.5,0.5 1,1 1.5,1.5 0,-0.1 0,-0.1 0,-0.2 -0.4,0.5 -0.7,1 -1.1,1.4 0.1,0 0.1,0 0.2,0 1.9,-0.3 1.1,-3.2 -0.8,-2.9 -0.1,0 -0.1,0 -0.2,0 -0.6,0.1 -1.1,0.8 -1.1,1.4 0,0.1 0,0.1 0,0.2 0,0.8 0.7,1.5 1.5,1.5 3.3,-0.2 0.8,-3.8 0.2,-5.3 -1.7,-3.9 -2.5,-8.2 -4.8,-11.9 -0.6,-1 -1.9,-0.9 -2.6,0 -3.4,4.5 -1.7,10.4 -4.4,15.1 -0.9,1.8 1.7,3.3 2.6,1.6 z"
|
||||
id="path16"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g20"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g19"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 179.5,49.2 c 5.1,-0.6 10.2,-1 15.3,-1.2 1.9,-0.1 1.9,-3.1 0,-3 -5.1,0.2 -10.2,0.6 -15.3,1.2 -1.9,0.2 -1.9,3.2 0,3 z"
|
||||
id="path18"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g22"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g21"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 185.7,46.2 c 0.3,4.1 0.6,8.2 0.8,12.3 0.1,1.9 3.1,1.9 3,0 -0.3,-4.1 -0.6,-8.2 -0.8,-12.3 -0.1,-1.9 -3.1,-1.9 -3,0 z"
|
||||
id="path20"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g24"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g23"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 169.2,60 c -0.2,-1.5 -2.3,-11.4 -0.9,-12.1 -0.5,0 -1,0 -1.5,0 2.5,1.2 3.4,5 4.3,7.4 0.8,2.3 1.7,4.4 3.2,6.3 0.4,0.5 1.3,0.6 1.8,0.2 2.1,-1.4 2.3,-4 2.5,-6.4 0.3,-3.5 -0.1,-6.9 -1,-10.2 -0.5,-1.9 -3.4,-1.1 -2.9,0.8 0.6,2.2 1,4.4 1,6.7 0,1.5 0.3,5.6 -1.1,6.6 0.6,0.1 1.2,0.2 1.8,0.2 -2,-2.6 -2.6,-5.8 -3.9,-8.8 -0.8,-1.8 -2.2,-4.8 -4.2,-5.4 -5.9,-1.9 -2.4,12.4 -2.1,14.7 0.3,1.9 3.3,1.9 3,0 z"
|
||||
id="path22"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g26"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g25"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 158.9,46.3 c -3.8,-2.9 -10,-0.4 -10.9,4.2 -0.9,4.4 2,9.3 6.4,10.5 4.4,1.2 8.9,-1.7 9.5,-6.2 0.6,-4.5 -2.3,-9.8 -7,-10.4 -1.9,-0.3 -2.7,2.6 -0.8,2.9 5.7,0.8 7,11.2 0.2,11 -2.8,-0.1 -4.8,-2.4 -5.3,-5 -0.4,-2 0.3,-3.7 2.1,-4.6 1.4,-0.7 3,-0.7 4.3,0.3 1.6,1 3.1,-1.6 1.5,-2.7 z"
|
||||
id="path24"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g28"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g27"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 146.8,46.1 c -5.5,-2.2 -11,2.6 -10.1,8.3 0.9,5.7 8.3,8.8 12.8,5 1.5,-1.2 -0.7,-3.4 -2.1,-2.1 -2.9,2.5 -7.5,-0.5 -7.8,-3.9 -0.3,-3.6 3.1,-5.8 6.4,-4.5 1.8,0.8 2.5,-2.1 0.8,-2.8 z"
|
||||
id="path26"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g30"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g29"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 122,44.1 c -2.7,-0.7 -6,-0.8 -8.4,0.9 -2,1.3 -2.5,3.8 -1,5.7 0.7,0.9 1.8,1.5 2.9,1.8 1.6,0.5 5.8,0.3 4.6,3.2 -0.6,1.5 -3,2.1 -4.4,2.1 -1.9,0.1 -3.6,-0.6 -5.1,-1.8 -1.5,-1.2 -3,1.4 -1.5,2.6 3.9,3 11.4,3.3 13.8,-1.8 1.1,-2.3 0.3,-4.8 -1.9,-6 -1.3,-0.8 -2.9,-0.5 -4.2,-1.1 -1.1,-0.1 -1.3,-1 -0.7,-2.7 0.5,-0.2 1,-0.3 1.5,-0.3 1.3,-0.2 2.4,0 3.6,0.3 1.8,0.5 2.6,-2.4 0.8,-2.9 z"
|
||||
id="path28"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g32"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g31"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 95.7,45.5 c -0.4,4.3 0.4,17.7 7.3,16.6 7.7,-1.2 5.8,-11.1 3.9,-16 -0.7,-1.8 -3.6,-1 -2.9,0.8 0.9,2.3 1.9,4.7 1.8,7.2 0,0.9 -0.2,1.7 -0.6,2.5 -0.7,1.7 -1.3,2.4 -3.1,1.7 -3.9,-1.4 -3.8,-9.3 -3.5,-12.8 0.3,-2 -2.7,-1.9 -2.9,0 z"
|
||||
id="path30"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g34"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g33"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 88.7,44.5 c -3.6,-3.2 -8.3,-0.1 -9,4.1 -0.7,4.3 1.4,10.1 5.9,11.6 4.9,1.6 8.6,-2.1 8.3,-6.9 -0.4,-5.2 -4.2,-9.6 -9.6,-9.6 -1.9,0 -1.9,3 0,3 2.9,0 5.2,1.8 6.2,4.5 0.9,2.7 0.7,7 -3.2,6.3 -2.6,-0.4 -3.9,-3.1 -4.4,-5.4 -0.3,-1.3 -0.4,-2.7 0.1,-4 0.5,-1.3 2.2,-2.7 3.7,-1.5 1.4,1.3 3.5,-0.8 2,-2.1 z"
|
||||
id="path32"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g36"
|
||||
style="fill:#e7be42;fill-opacity:1"
|
||||
transform="translate(2.4124425,-20.988249)">
|
||||
<g
|
||||
id="g35"
|
||||
style="fill:#e7be42;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 66.7,60.5 c 0,-2.5 -0.3,-5 -0.9,-7.5 -0.2,-1 -0.7,-2 -0.8,-3 -0.5,-3.8 0.8,-0.7 1.4,0.3 1.7,3 4.3,8.8 7.9,10.3 7.7,3.1 2.2,-15.1 1.2,-17.5 -0.8,-1.8 -3.4,-0.2 -2.6,1.5 1.2,2.6 2,5.3 2.3,8.1 0.2,1.2 0.4,2.6 0.2,3.7 -0.3,1.6 -0.1,1.3 -1.3,0 -1.9,-2.1 -3.4,-4.3 -4.7,-6.8 -0.8,-1.5 -1.5,-3.2 -3,-4.2 -1.9,-1.2 -3.7,-0.4 -4.4,1.8 -0.5,1.5 -0.1,3.1 0.2,4.5 0.7,3 1.3,5.7 1.4,8.8 0.1,1.9 3.1,1.9 3.1,0 z"
|
||||
id="path34"
|
||||
style="fill:#e7be42;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 10 KiB |
185
www/img/content/photos.svg
Normal file
|
@ -0,0 +1,185 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 378.5 91.2"
|
||||
style="enable-background:new 0 0 378.5 91.2;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="photos.svg"
|
||||
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs54" /><sodipodi:namedview
|
||||
id="namedview54"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="3.4398943"
|
||||
inkscape:cx="168.60983"
|
||||
inkscape:cy="82.124616"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1000"
|
||||
inkscape:window-x="-11"
|
||||
inkscape:window-y="-11"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Calque_1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style1">
|
||||
.st0{fill:#FFCA0D;stroke:#FFCA0D;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
</style>
|
||||
|
||||
|
||||
<g
|
||||
id="g6"
|
||||
transform="translate(102.61943,-4.9420123)"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<g
|
||||
id="g5"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 110.8,38.6 c 0,-0.4 0.1,-0.8 0.1,-1.3 -1,0 -2,0 -3,0 0.2,4 0.2,7.9 0,11.9 -0.1,2 -1.4,5.9 0,7.5 0.3,0.4 1,0.6 1.5,0.4 0.1,0 0.1,0 0.2,-0.1 0.8,-0.3 1.2,-1 1,-1.8 -0.1,-0.7 -0.6,-1.1 -1.3,-1.3 -1.8,-0.7 -2.6,2.2 -0.8,2.9 0.1,0 0.1,0 0.2,0.1 -0.3,-0.3 -0.7,-0.7 -1,-1 0,0.1 0,0.1 0,0.2 0.3,-0.6 0.7,-1.2 1,-1.8 -0.1,0 -0.1,0 -0.2,0.1 0.5,0.1 1,0.3 1.5,0.4 0.3,0.3 0.7,-2.8 0.7,-3.2 0.1,-1.6 0.2,-3.3 0.2,-4.9 0.1,-3 0,-6 -0.1,-9.1 -0.1,-1.9 -2.8,-1.9 -3,0 0,0.4 -0.1,0.8 -0.1,1.3 -0.1,1.6 2.9,1.6 3.1,-0.3 z"
|
||||
id="path4"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</g><g
|
||||
id="g6-4"
|
||||
transform="matrix(1,0,0,1.1226661,65.816306,-9.9647897)"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<g
|
||||
id="g5-0"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 110.8,38.6 c 0,-0.4 0.1,-0.8 0.1,-1.3 -1,0 -2,0 -3,0 0.2,4 0.2,7.9 0,11.9 -0.1,2 -1.4,5.9 0,7.5 0.3,0.4 1,0.6 1.5,0.4 0.1,0 0.1,0 0.2,-0.1 0.8,-0.3 1.2,-1 1,-1.8 -0.1,-0.7 -0.6,-1.1 -1.3,-1.3 -1.8,-0.7 -2.6,2.2 -0.8,2.9 0.1,0 0.1,0 0.2,0.1 -0.3,-0.3 -0.7,-0.7 -1,-1 0,0.1 0,0.1 0,0.2 0.3,-0.6 0.7,-1.2 1,-1.8 -0.1,0 -0.1,0 -0.2,0.1 0.5,0.1 1,0.3 1.5,0.4 0.3,0.3 0.7,-2.8 0.7,-3.2 0.1,-1.6 0.2,-3.3 0.2,-4.9 0.1,-3 0,-6 -0.1,-9.1 -0.1,-1.9 -2.8,-1.9 -3,0 0,0.4 -0.1,0.8 -0.1,1.3 -0.1,1.6 2.9,1.6 3.1,-0.3 z"
|
||||
id="path4-8"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
|
||||
</g>
|
||||
</g><g
|
||||
id="g6-3"
|
||||
transform="matrix(1,0,0,1.1226661,56.29288,-9.599189)"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<g
|
||||
id="g5-6"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 110.8,38.6 c 0,-0.4 0.1,-0.8 0.1,-1.3 -1,0 -2,0 -3,0 0.2,4 0.2,7.9 0,11.9 -0.1,2 -1.4,5.9 0,7.5 0.3,0.4 1,0.6 1.5,0.4 0.1,0 0.1,0 0.2,-0.1 0.8,-0.3 1.2,-1 1,-1.8 -0.1,-0.7 -0.6,-1.1 -1.3,-1.3 -1.8,-0.7 -2.6,2.2 -0.8,2.9 0.1,0 0.1,0 0.2,0.1 -0.3,-0.3 -0.7,-0.7 -1,-1 0,0.1 0,0.1 0,0.2 0.3,-0.6 0.7,-1.2 1,-1.8 -0.1,0 -0.1,0 -0.2,0.1 0.5,0.1 1,0.3 1.5,0.4 0.3,0.3 0.7,-2.8 0.7,-3.2 0.1,-1.6 0.2,-3.3 0.2,-4.9 0.1,-3 0,-6 -0.1,-9.1 -0.1,-1.9 -2.8,-1.9 -3,0 0,0.4 -0.1,0.8 -0.1,1.3 -0.1,1.6 2.9,1.6 3.1,-0.3 z"
|
||||
id="path4-3"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g8"
|
||||
transform="translate(102.61943,-4.9420123)"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<g
|
||||
id="g7"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 101,40.9 c 5.6,-1 11.2,-2.1 16.8,-3.1 1.9,-0.3 1.1,-3.2 -0.8,-2.9 -5.6,1 -11.2,2.1 -16.8,3.1 -1.9,0.4 -1.1,3.2 0.8,2.9 z"
|
||||
id="path6"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</g><g
|
||||
id="g8-9"
|
||||
transform="translate(61.315681,5.2814632)"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<g
|
||||
id="g7-4"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 101,40.9 c 5.6,-1 11.2,-2.1 16.8,-3.1 1.9,-0.3 1.1,-3.2 -0.8,-2.9 -5.6,1 -11.2,2.1 -16.8,3.1 -1.9,0.4 -1.1,3.2 0.8,2.9 z"
|
||||
id="path6-7"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g10"
|
||||
transform="matrix(1.0560236,0,0,1.0835602,122.02513,-8.8193358)"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<g
|
||||
id="g9"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 128.9,37.8 c -2.6,-1.7 -5.8,-2.6 -8.7,-1 -2.3,1.3 -3.8,4 -3,6.6 0.9,2.8 3.3,3.7 6,3.4 1.6,-0.2 3.5,-0.2 4.4,1.6 1,1.9 -0.5,3.6 -2.3,4.3 -2.5,0.9 -5.9,0.2 -7.9,-1.3 -1.6,-1.1 -3.1,1.5 -1.5,2.6 4.3,3.2 14.7,3.2 15.1,-3.9 0.1,-2.7 -1.7,-5.1 -4.2,-6 -1.6,-0.6 -3.3,-0.3 -4.9,-0.7 -2,0.1 -2.4,-1 -1.2,-3.2 0.5,-0.6 1.2,-1 2,-1 1.8,-0.5 3.3,0.3 4.7,1.2 1.6,1 3.1,-1.6 1.5,-2.6 z"
|
||||
id="path8"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g14-9"
|
||||
transform="matrix(1.0560236,0,0,1.0835602,30.666285,-8.0629963)"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<g
|
||||
id="g13-3"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 193.8,38.1 c -9.9,-7.4 -19,15.5 -6.6,17.9 5,1 10.9,-3.5 12.1,-8.3 1.4,-5.7 -2.5,-10.8 -7.9,-12.1 -1.9,-0.5 -2.7,2.4 -0.8,2.9 8,2 7.3,11.3 0.2,14.1 -11.3,4.4 -6.3,-17.6 1.4,-11.8 1.6,1 3.1,-1.6 1.6,-2.7 z"
|
||||
id="path12-0"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-miterlimit:10" />
|
||||
</g>
|
||||
</g>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g46"
|
||||
transform="translate(124.13172,-3.1977727)"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<g
|
||||
id="g45"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<path
|
||||
class="st0"
|
||||
d="m 25.4,57.3 c -1,-4.3 -0.6,-9.3 -1,-13.7 -0.1,-1.4 -0.4,-3 -0.1,-4.4 -0.2,-1.5 0.5,-2.3 2.3,-2.5 1.3,-1.6 2.3,-1.6 3,0 3.5,3.6 -1.9,7.7 -5.4,5.5 -1.6,-1 -3.2,1.6 -1.5,2.6 4.2,2.6 8.1,1.5 10.5,-2.9 2,-3.6 -0.7,-8.1 -4.1,-9.9 -4.4,-2.3 -7.2,2.7 -7.8,6.5 -0.5,3.4 0.4,6.7 0.7,10 0.2,3.2 -0.2,6.3 0.5,9.5 0.5,2 3.4,1.2 2.9,-0.7 z"
|
||||
id="path44"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
|
||||
<g
|
||||
id="g50"
|
||||
transform="translate(135.75998,-3.4884792)"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<g
|
||||
id="g49"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none">
|
||||
<path
|
||||
class="st0"
|
||||
d="M 58.3,34.9 C 46,28.7 42.7,53.1 52.6,57.2 c 5.6,2.3 10,-3 10.9,-8 1.1,-6.3 -1.8,-12.5 -7.2,-15.9 -1.6,-1 -3.1,1.6 -1.5,2.6 3.3,2.1 5.6,5.4 5.9,9.4 0.3,3.4 -0.6,8.2 -4.4,9.2 -9.5,2.4 -8.2,-21.2 0.4,-16.9 1.8,0.7 3.3,-1.8 1.6,-2.7 z"
|
||||
id="path48"
|
||||
style="fill:#cb4c34;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
|
||||
|
||||
</svg>
|
After Width: | Height: | Size: 6.9 KiB |
288
www/img/content/presentation.svg
Normal file
|
@ -0,0 +1,288 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 301.6 59.8"
|
||||
style="enable-background:new 0 0 301.6 59.8;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="presentation.svg"
|
||||
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs38" /><sodipodi:namedview
|
||||
id="namedview38"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="4.316976"
|
||||
inkscape:cx="237.43472"
|
||||
inkscape:cy="25.133334"
|
||||
inkscape:window-width="958"
|
||||
inkscape:window-height="988"
|
||||
inkscape:window-x="950"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Calque_1" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style1">
|
||||
.st0{fill:#271A88;}
|
||||
</style>
|
||||
<g
|
||||
id="g2"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g1"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M231.3,21.5c3.5,4.1,4.9,9.6,9.9,12.3c0.9,0.5,1.8,0,2.2-0.9c0.8-2.1,0.5-4.3,0.5-6.5 c-0.1-2.9-0.3-5.8-0.6-8.7c-0.2-1.9-3.2-1.9-3,0c0.2,2.5,0.4,5,0.5,7.5c0.1,2.2,0.5,4.8-0.3,6.9c0.7-0.3,1.5-0.6,2.2-0.9 c-4.6-2.5-6-8.1-9.3-11.9C232.1,17.9,230,20,231.3,21.5L231.3,21.5z"
|
||||
id="path1"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g4"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g3"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M230.1,19.3c-0.5,1.9-0.1,3.6,0.2,5.5c0.5,2.5,0.7,5,0.6,7.5c0,1.7,2.4,2,2.9,0.4c0.2-0.5,0.3-1,0.5-1.5 c0.6-1.8-2.3-2.6-2.9-0.8c-0.2,0.5-0.3,1-0.5,1.5c1,0.1,2,0.3,2.9,0.4c0-1.9,0-3.8-0.3-5.7c-0.3-2.1-1.2-4.4-0.7-6.5 C233.5,18.2,230.6,17.4,230.1,19.3L230.1,19.3z"
|
||||
id="path2"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g6"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g5"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M223.7,19.8c-3-3.4-8.1-1.6-9.6,2.3c-1.5,3.9,0.7,10.4,5,11.7c4.2,1.3,8.8-2.5,8.7-6.8 c-0.2-4.5-4.3-9.9-9.2-8.3c-1.8,0.6-1.1,3.5,0.8,2.9c2.9-0.9,5.3,2.9,5.4,5.4c0.1,2.3-2.8,5.1-5.2,3.8c-1.8-1-3-4.1-3-6 c0.1-2.5,2.7-5.3,4.9-2.8C222.9,23.3,225,21.2,223.7,19.8L223.7,19.8z"
|
||||
id="path4"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g8"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g7"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M207.4,19c-0.1,2.8-0.1,5.6-0.2,8.4c0,1.5-0.7,4.4,0.3,5.7c0.5,0.7,1.2,0.9,2.1,0.5c0.1,0,0.1-0.1,0.2-0.1 c0.6-0.3,0.9-1.1,0.7-1.7c0-0.1,0-0.1-0.1-0.2c-0.5-1.9-3.4-1.1-2.9,0.8c0,0.1,0,0.1,0.1,0.2c0.2-0.6,0.5-1.1,0.7-1.7 c-0.1,0-0.1,0.1-0.2,0.1c0.7,0.2,1.4,0.4,2.1,0.5c0,0.6,0,0.3,0-0.7c0-0.7,0-1.3,0-2c0-1,0-2,0.1-2.9c0.1-2.3,0.1-4.6,0.2-6.9 C210.4,17.1,207.4,17.1,207.4,19L207.4,19z"
|
||||
id="path6"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g10"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g9"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M194.7,30c0,1.2,0.4,2.4,1,3.5c0.4,0.7,1.4,0.9,2.1,0.5s0.9-1.3,0.5-2.1c-0.4-0.6-0.6-1.3-0.6-2 c0-0.8-0.7-1.5-1.5-1.5C195.4,28.5,194.7,29.2,194.7,30L194.7,30z"
|
||||
id="path8"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g12"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g11"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M187.3,20.4c3.4-0.2,6.7-0.3,10.1-0.3c1.7,0,4.7,0.8,6.1-0.6c0.5-0.5,0.6-1.6,0-2.1c-0.1,0-0.1-0.1-0.2-0.1 c-0.8-0.6-1.7-0.6-2.4,0.3l-0.1,0.1c-1.1,1.6,1.5,3.1,2.6,1.5l0.1-0.1c-0.8,0.1-1.6,0.2-2.4,0.3c0.1,0,0.1,0.1,0.2,0.1 c0-0.7,0-1.4,0-2.1c0.9-0.3,0.7-0.3-0.6-0.2c-0.7,0-1.5,0-2.2,0c-1.1,0-2.2,0-3.4,0c-2.6,0-5.2,0.1-7.8,0.3 C185.3,17.5,185.3,20.5,187.3,20.4L187.3,20.4z"
|
||||
id="path10"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g14"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g13"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M193.1,19.4c0.7,3.7,1.3,7.4,1.5,11.1c0.1,1.6,2.5,2.1,2.9,0.4c0.3-0.9,0.1-1.4-0.5-2.2 c-1.2-1.5-3.3,0.6-2.1,2.1c0.1,0.1,0.2,0.2,0.2,0.3c-0.1-0.5-0.3-1-0.4-1.5c0,0.1-0.1,0.3-0.1,0.4c1,0.1,2,0.3,2.9,0.4 c-0.3-4-0.8-8-1.6-11.9C195.6,16.7,192.7,17.5,193.1,19.4L193.1,19.4z"
|
||||
id="path12"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g15"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M177,27.7c2.7,0,5.3-0.3,7.9-0.9c1.9-0.4,1.1-3.3-0.8-2.9c-2.4,0.5-4.7,0.7-7.1,0.8 C175.1,24.7,175.1,27.7,177,27.7L177,27.7z"
|
||||
id="path14"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g18"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g17"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M176.3,32.6c0.8-3.8,1.3-9.6,4-12.7c1.2-1.4,1.4,0,2,1.2c0.5,1,0.9,2.1,1.3,3.2c0.8,2.5,1.6,5,2.3,7.5 c0.9-0.4,1.8-0.8,2.7-1.2c-0.2-0.4-0.3-0.8-0.5-1.2c-0.8-1.8-3.3-0.2-2.6,1.5c0.2,0.4,0.3,0.8,0.5,1.2c0.7,1.6,3.2,0.4,2.7-1.2 c-0.8-2.9-3.2-16.2-8.2-14.9c-5.3,1.4-6.3,11.5-7.1,15.7C173,33.7,175.9,34.5,176.3,32.6L176.3,32.6z"
|
||||
id="path16"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g20"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g19"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M157,19.5c5-0.2,10.1-0.5,15.1-0.7c1.9-0.1,1.9-3.1,0-3c-5,0.2-10.1,0.5-15.1,0.7 C155.1,16.6,155.1,19.6,157,19.5L157,19.5z"
|
||||
id="path18"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g22"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g21"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M162.9,17.3c-0.4,2.2,0.3,3.9,0.9,6c0.7,2.7,0.9,5.4,0.9,8.2c0,1.9,2.9,1.9,3,0c0-0.6-0.1-0.9-0.4-1.4 c-1.1-1.6-3.7-0.1-2.6,1.5v-0.1c1,0,2,0,3,0c0-2-0.1-4-0.4-6c-0.3-2.2-1.8-5.2-1.5-7.4C166.1,16.2,163.3,15.4,162.9,17.3 L162.9,17.3z"
|
||||
id="path20"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g24"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g23"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M146.2,32.5c0.6-5.5,1-10.9-0.6-16.3c-0.9,0.4-1.8,0.8-2.7,1.2c1.5,2.9,3.7,5.4,5.6,8 c1.4,1.9,2.8,4.7,4.9,5.9c-0.2-0.4-0.5-0.9-0.7-1.3c0,1.1,0.2,1.5,1,2.2c0.9,0.7,2.7,0.3,2.6-1.1c-0.3-2.4-0.7-4.9-0.9-7.4 c-0.1-2.3,0.6-4.6,0.7-6.9c0.1-1.9-2.9-1.9-3,0c-0.1,2.3-0.9,4.6-0.7,6.9c0.2,2.5,0.6,4.9,0.9,7.4c0.9-0.4,1.7-0.7,2.6-1.1 c-0.2-0.2-0.5-1-0.7-1.3c-1-1.5-2.5-3-3.7-4.4c-2.1-2.7-4.4-5.4-6-8.4c-0.8-1.5-3.2-0.5-2.7,1.2c1.4,5.1,1,10.3,0.5,15.5 C143,34.4,146,34.4,146.2,32.5L146.2,32.5z"
|
||||
id="path22"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g26"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g25"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M130.6,27.7c2-0.4,4-0.5,6.1-0.4c1.9,0.1,1.9-2.9,0-3c-2.3-0.2-4.6,0-6.9,0.5C128,25.1,128.8,28,130.6,27.7 L130.6,27.7z"
|
||||
id="path24"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g28"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g27"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M139.4,15.9c-3.5-0.6-7.3-0.5-10,2.1c-2.4,2.3-2.8,6.1-2.1,9.3c0.8,3.3,3,5.5,6.3,6.2 c2.9,0.7,6.2,0.9,7.9-1.9c1-1.7-1.6-3.2-2.6-1.5c-0.9,1.5-3.6,0.8-4.9,0.4c-2.4-0.7-3.4-2.4-3.8-4.7c-0.9-5.7,3.4-7.9,8.5-7 C140.5,19.1,141.3,16.2,139.4,15.9L139.4,15.9z"
|
||||
id="path26"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g30"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g29"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M124.5,17.3c-2.9-2.7-10.7-4.5-10.7,1.6c0,1.9,1,4.4,2.9,5.2c1.7,0.8,3.6,0.2,4.3,2.6 c1.1,3.8-4.5,5.2-5.8,1.4c-0.1,0.5-0.3,1-0.4,1.5c0.2-0.2,0.3-0.3,0.5-0.5c1.4-1.4-0.7-3.5-2.1-2.1c-0.2,0.2-0.3,0.3-0.5,0.5 c-0.4,0.4-0.6,1-0.4,1.5c1.8,5.3,9.2,6.4,11.5,0.8c1-2.4,0.2-5.2-1.8-6.8c-1.1-0.9-2.1-0.9-3.3-1.4c-1.7-0.6-2.2-1.5-0.7-2.8 c0.5-1,1.2-1.2,2-0.6c0.9,0.3,1.7,0.7,2.5,1.3C123.8,20.7,125.9,18.6,124.5,17.3L124.5,17.3z"
|
||||
id="path28"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g32"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g31"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M97.8,27.1c2.6-0.2,5.3-0.4,7.9-0.6c1.4-0.1,1.9-1.5,1.1-2.6c-0.1-0.1-0.1-0.2-0.2-0.3 c0.1,0.4,0.3,0.7,0.4,1.1c0-0.1,0-0.2,0-0.3c0.1-1.9-2.9-1.9-3,0c0,0.7,0.2,1.1,0.6,1.6c0.4-0.9,0.7-1.7,1.1-2.6 c-2.6,0.2-5.3,0.4-7.9,0.6C95.8,24.3,95.8,27.3,97.8,27.1L97.8,27.1z"
|
||||
id="path30"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g34"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g33"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M106.7,16c-2.5-0.9-6,0-8.1,1.4c-2.7,1.8-3,5.2-2.9,8.2c0.2,7.1,7.3,9.4,13.3,7.6c-0.6-0.6-1.2-1.2-1.8-1.8 c-0.1,0.1-0.1,0.2-0.2,0.4c0.3-0.3,0.7-0.7,1-1c-0.1,0-0.3,0-0.4,0.1c-1.9,0.3-1.1,3.2,0.8,2.9c0.9-0.1,1.3-0.6,1.6-1.5 c0.4-1.1-0.8-2.1-1.8-1.8c-4,1.2-9.4,0.3-9.5-4.7c-0.1-2.1,0-4.7,2-5.9c1.4-0.8,3.8-1.4,5.3-0.8C107.7,19.6,108.5,16.7,106.7,16 L106.7,16z"
|
||||
id="path32"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g36"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g35"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M83,33.4c-0.5-3.4-1.4-7.1-1.4-10.5c0-7.1,7.6-4.1,5.2-0.4c-1,1.4-3.2,2-4.7,2.1c0.1,1,0.3,2,0.4,2.9 c3.2-0.8,5.2,4.2,6.2,6.4c0.9-0.5,1.7-1,2.6-1.5c-0.4-0.6-0.8-1.2-1.3-1.7c-1.1-1.5-3.7,0-2.6,1.5c0.4,0.6,0.8,1.2,1.3,1.7 c1.1,1.6,3.4,0.3,2.6-1.5c-1.8-3.8-4.6-9-9.6-7.7c-1.6,0.4-1.3,3,0.4,2.9c3.4-0.2,6.9-1.9,8.4-5.1c1.3-3-1-5.7-3.8-6.7 c-3-1-6.6,0.2-7.7,3.4c-0.7,2-0.2,4.3,0.1,6.4c0.4,2.9,0.8,5.7,1.2,8.6C80.3,36.1,83.2,35.3,83,33.4L83,33.4z"
|
||||
id="path34"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g38"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<g
|
||||
id="g37"
|
||||
style="fill:#cb4c34;fill-opacity:1">
|
||||
<path
|
||||
class="st0"
|
||||
d="M66.6,33.6c-0.4-3.2-0.6-6.3-0.7-9.5c-0.1-3.1-0.4-7.3,4-6.8c3.7,0.4,5.9,3.6,2.2,6c-2.3,1.5-5,1.5-7.5,0.5 c-1.8-0.7-2.6,2.2-0.8,2.9c3.9,1.6,8.5,0.9,11.6-2.1c3-2.9,2.5-6.6-1-8.9c-2.8-1.8-8-2.4-10.3,0.7c-1.3,1.8-1.2,4.3-1.2,6.4 c0.1,3.6,0.3,7.2,0.7,10.8C63.8,35.5,66.8,35.5,66.6,33.6L66.6,33.6z"
|
||||
id="path36"
|
||||
style="fill:#cb4c34;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 10 KiB |
1169
www/img/header/banda_header2.svg
Normal file
After Width: | Height: | Size: 56 KiB |
8
www/img/icons/email.svg
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.2" baseProfile="tiny" id="Calque_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24"
|
||||
xml:space="preserve">
|
||||
<path d="M20,4H4C2.9,4,2,4.9,2,6l0,12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,8l-8,5L4,8V6l8,5l8-5V8z"/>
|
||||
<path fill="none" d="M0,0h24v24H0V0z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 507 B |
13
www/img/icons/facebook-white.svg
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.2" baseProfile="tiny" id="Calque_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24"
|
||||
xml:space="preserve">
|
||||
<path fill-rule="evenodd" fill="#FBFBFB" d="M2.8,2.8c6.1,0,12.3,0,18.4,0c0,0.2,0,0.4,0,0.5c0,5.8,0,11.6,0,17.4
|
||||
c0,0.4-0.1,0.5-0.5,0.5c-1.6,0-3.1,0-4.7,0c-0.1,0-0.3,0-0.4,0c0-0.2,0-0.3,0-0.4c0-2.1,0-4.1,0-6.2c0-0.4,0.1-0.5,0.5-0.5
|
||||
c0.6,0,1.3,0,1.9,0c0.1-1,0.3-2,0.4-3c-1,0-1.8,0-2.8,0c0-0.7,0-1.3,0-2c0-0.6,0.4-0.9,1-0.9c0.5,0,1,0,1.5,0c0.3,0,0.4-0.1,0.4-0.3
|
||||
c0-0.7,0-1.4,0-2c0-0.3-0.1-0.4-0.4-0.4c-0.8,0-1.5,0-2.3,0c-1.9,0.1-3.1,1.5-3.1,2.9c0,0.8,0,1.6-0.1,2.4c0,0.3-0.1,0.4-0.4,0.4
|
||||
c-0.6,0-1.1,0-1.7,0c-0.3,0-0.4,0.1-0.4,0.3c0,0.8,0,1.6,0,2.3c0,0.2,0.1,0.3,0.3,0.3c0.5,0,1.1,0,1.6,0c0.4,0,0.5,0.1,0.5,0.5
|
||||
c0,2.1,0,4.1,0,6.1c0,0.4-0.1,0.5-0.5,0.5c-2.9,0-5.8,0-8.7,0c-0.4,0-0.5-0.1-0.5-0.5c0-5.8,0-11.6,0-17.4C2.8,3.1,2.8,3,2.8,2.8z"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
12
www/img/icons/facebook.svg
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.2" baseProfile="tiny" id="Calque_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24"
|
||||
xml:space="preserve">
|
||||
<path fill-rule="evenodd" d="M2.8,2.8c6.1,0,12.3,0,18.4,0c0,0.2,0,0.4,0,0.5c0,5.8,0,11.6,0,17.4c0,0.4-0.1,0.5-0.5,0.5
|
||||
c-1.6,0-3.1,0-4.7,0c-0.1,0-0.3,0-0.4,0c0-0.2,0-0.3,0-0.4c0-2.1,0-4.1,0-6.2c0-0.4,0.1-0.5,0.5-0.5c0.6,0,1.3,0,1.9,0
|
||||
c0.1-1,0.3-2,0.4-3c-1,0-1.8,0-2.8,0c0-0.7,0-1.3,0-2c0-0.6,0.4-0.9,1-0.9c0.5,0,1,0,1.5,0c0.3,0,0.4-0.1,0.4-0.3c0-0.7,0-1.4,0-2
|
||||
c0-0.3-0.1-0.4-0.4-0.4c-0.8,0-1.5,0-2.3,0c-1.9,0.1-3.1,1.5-3.1,2.9c0,0.8,0,1.6-0.1,2.4c0,0.3-0.1,0.4-0.4,0.4c-0.6,0-1.1,0-1.7,0
|
||||
c-0.3,0-0.4,0.1-0.4,0.3c0,0.8,0,1.6,0,2.3c0,0.2,0.1,0.3,0.3,0.3c0.5,0,1.1,0,1.6,0c0.4,0,0.5,0.1,0.5,0.5c0,2.1,0,4.1,0,6.1
|
||||
c0,0.4-0.1,0.5-0.5,0.5c-2.9,0-5.8,0-8.7,0c-0.4,0-0.5-0.1-0.5-0.5c0-5.8,0-11.6,0-17.4C2.8,3.1,2.8,3,2.8,2.8z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1 KiB |
1
www/img/icons/instagram-white.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg fill="#FFFFFF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="50px" height="50px"><path d="M 16 3 C 8.8324839 3 3 8.8324839 3 16 L 3 34 C 3 41.167516 8.8324839 47 16 47 L 34 47 C 41.167516 47 47 41.167516 47 34 L 47 16 C 47 8.8324839 41.167516 3 34 3 L 16 3 z M 16 5 L 34 5 C 40.086484 5 45 9.9135161 45 16 L 45 34 C 45 40.086484 40.086484 45 34 45 L 16 45 C 9.9135161 45 5 40.086484 5 34 L 5 16 C 5 9.9135161 9.9135161 5 16 5 z M 37 11 A 2 2 0 0 0 35 13 A 2 2 0 0 0 37 15 A 2 2 0 0 0 39 13 A 2 2 0 0 0 37 11 z M 25 14 C 18.936712 14 14 18.936712 14 25 C 14 31.063288 18.936712 36 25 36 C 31.063288 36 36 31.063288 36 25 C 36 18.936712 31.063288 14 25 14 z M 25 16 C 29.982407 16 34 20.017593 34 25 C 34 29.982407 29.982407 34 25 34 C 20.017593 34 16 29.982407 16 25 C 16 20.017593 20.017593 16 25 16 z"/></svg>
|
After Width: | Height: | Size: 832 B |
19
www/img/icons/instagram.svg
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg fill="#000000" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="800px" height="800px" viewBox="0 0 169.063 169.063"
|
||||
xml:space="preserve">
|
||||
<g>
|
||||
<path d="M122.406,0H46.654C20.929,0,0,20.93,0,46.655v75.752c0,25.726,20.929,46.655,46.654,46.655h75.752
|
||||
c25.727,0,46.656-20.93,46.656-46.655V46.655C169.063,20.93,148.133,0,122.406,0z M154.063,122.407
|
||||
c0,17.455-14.201,31.655-31.656,31.655H46.654C29.2,154.063,15,139.862,15,122.407V46.655C15,29.201,29.2,15,46.654,15h75.752
|
||||
c17.455,0,31.656,14.201,31.656,31.655V122.407z"/>
|
||||
<path d="M84.531,40.97c-24.021,0-43.563,19.542-43.563,43.563c0,24.02,19.542,43.561,43.563,43.561s43.563-19.541,43.563-43.561
|
||||
C128.094,60.512,108.552,40.97,84.531,40.97z M84.531,113.093c-15.749,0-28.563-12.812-28.563-28.561
|
||||
c0-15.75,12.813-28.563,28.563-28.563s28.563,12.813,28.563,28.563C113.094,100.281,100.28,113.093,84.531,113.093z"/>
|
||||
<path d="M129.921,28.251c-2.89,0-5.729,1.17-7.77,3.22c-2.051,2.04-3.23,4.88-3.23,7.78c0,2.891,1.18,5.73,3.23,7.78
|
||||
c2.04,2.04,4.88,3.22,7.77,3.22c2.9,0,5.73-1.18,7.78-3.22c2.05-2.05,3.22-4.89,3.22-7.78c0-2.9-1.17-5.74-3.22-7.78
|
||||
C135.661,29.421,132.821,28.251,129.921,28.251z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
9
www/img/icons/location.svg
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.2" baseProfile="tiny" id="Calque_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24"
|
||||
xml:space="preserve">
|
||||
<path fill="none" d="M0,0h24v24H0V0z"/>
|
||||
<path d="M12,2C8.1,2,5,5.1,5,9c0,5.3,7,13,7,13s7-7.8,7-13C19,5.1,15.9,2,12,2z M12,11.5c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5
|
||||
s2.5,1.1,2.5,2.5S13.4,11.5,12,11.5z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 548 B |
17
www/img/icons/ratp/bus-21.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
|
||||
<g>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#82DC73;" width="120" height="77"/>
|
||||
<g>
|
||||
<path d="M22.204,68.378v-7.873c1.524-6.941,8.381-13.291,16.338-20.232c3.979-3.471,8.296-7.789,8.296-13.545
|
||||
c0-5.164-3.386-9.481-9.905-9.481c-5.249,0-8.889,3.809-10.328,5.418l-6.264-8.296c5.756-4.995,11.09-7.365,19.132-7.365
|
||||
c10.498,0,20.402,6.095,20.402,18.286c0,10.243-6.519,15.068-13.714,21.587c-3.047,2.794-9.058,8.043-9.82,11.514h24.635v9.989
|
||||
H22.204z"/>
|
||||
<path d="M80.948,68.378V21.394c-3.64,2.878-9.396,5.671-13.376,7.45l-4.063-9.143c6.264-2.624,13.799-6.603,19.725-11.09h10.412
|
||||
v59.767H80.948z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
17
www/img/icons/ratp/bus-24.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
|
||||
<g>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#A0006E;" width="120" height="77"/>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M16.422,68.378v-7.873c1.524-6.941,8.381-13.291,16.338-20.232
|
||||
c3.979-3.471,8.296-7.789,8.296-13.545c0-5.164-3.386-9.481-9.905-9.481c-5.249,0-8.889,3.809-10.328,5.418l-6.264-8.296
|
||||
c5.756-4.995,11.09-7.365,19.132-7.365c10.498,0,20.402,6.095,20.402,18.286c0,10.243-6.519,15.068-13.714,21.587
|
||||
c-3.047,2.794-9.058,8.043-9.82,11.514h24.635v9.989H16.422z"/>
|
||||
<path style="fill:#FFFFFF;" d="M97.143,55.934v12.444H85.291V55.934H58.37v-11.09L81.566,8.611h15.576v38.01h7.026v9.313H97.143z
|
||||
M85.291,19.108h-0.17c-0.254,1.016-1.947,4.656-4.316,8.381L68.613,46.621h16.678V19.108z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
17
www/img/icons/ratp/bus-27.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
|
||||
<g>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#FF5A00;" width="120" height="77"/>
|
||||
<g>
|
||||
<path d="M19.694,68.378v-7.873c1.524-6.941,8.381-13.291,16.338-20.232c3.979-3.471,8.296-7.789,8.296-13.545
|
||||
c0-5.164-3.386-9.481-9.905-9.481c-5.249,0-8.889,3.809-10.328,5.418l-6.264-8.296c5.756-4.995,11.09-7.365,19.132-7.365
|
||||
c10.498,0,20.402,6.095,20.402,18.286c0,10.243-6.519,15.068-13.714,21.587c-3.048,2.794-9.058,8.043-9.82,11.514h24.635v9.989
|
||||
H19.694z"/>
|
||||
<path d="M81.512,68.378H67.881c0-7.873,2.117-12.952,7.365-22.688l14.562-27.09H60.771v-9.99h41.819v9.735
|
||||
C89.469,41.119,81.512,58.981,81.512,68.378z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
13
www/img/icons/ratp/metro-7.svg
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Premier_plan" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||
y="0px" width="92px" height="92px" viewBox="0 0 92 92" style="enable-background:new 0 0 92 92;" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<circle style="fill-rule:evenodd;clip-rule:evenodd;fill:#FF82B4;" cx="46" cy="46" r="46"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M64.83,29.471v-8.274H29.286v8.49h24.679L41.589,52.712
|
||||
c-4.461,8.274-6.26,12.592-6.26,19.283h11.584C46.914,64.009,53.678,48.826,64.83,29.471z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 808 B |
25
www/img/icons/ratp/noctilien-122.svg
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="120px" height="77px" viewBox="0 0 120 77" enable-background="new 0 0 120 77" xml:space="preserve">
|
||||
<rect fill-rule="evenodd" clip-rule="evenodd" fill="#3C91DC" width="120" height="77"/>
|
||||
<rect fill-rule="evenodd" clip-rule="evenodd" fill="#0A0082" width="120" height="68.75"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M34.341,38.708V8.516h-6.154v20.402h-0.085
|
||||
c-0.089-0.373-0.371-0.975-0.845-1.807c-0.475-0.832-1.12-1.841-1.937-3.026L14.623,8.516h-6.11v30.192h6.196V19.081h0.086
|
||||
c0.124,0.36,0.399,0.954,0.823,1.78c0.424,0.826,1.02,1.772,1.786,2.838l10.868,15.008H34.341z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M52.421,62.018V34.909c-2.101,1.661-5.422,3.272-7.717,4.298l-2.345-5.275
|
||||
c3.614-1.514,7.961-3.809,11.38-6.398h6.008v34.484H52.421z"/>
|
||||
<path fill="#FFFFFF" d="M65.314,62.018v-4.543c0.879-4.005,4.836-7.668,9.428-11.674c2.295-2.002,4.786-4.493,4.786-7.814
|
||||
c0-2.979-1.954-5.471-5.715-5.471c-3.028,0-5.128,2.198-5.959,3.126l-3.614-4.786c3.321-2.882,6.398-4.25,11.039-4.25
|
||||
c6.057,0,11.771,3.517,11.771,10.551c0,5.91-3.761,8.693-7.913,12.455c-1.758,1.611-5.226,4.64-5.665,6.643h14.214v5.764H65.314z"
|
||||
/>
|
||||
<path fill="#FFFFFF" d="M92.666,62.018v-4.543c0.879-4.005,4.836-7.668,9.427-11.674c2.296-2.002,4.786-4.493,4.786-7.814
|
||||
c0-2.979-1.953-5.471-5.715-5.471c-3.027,0-5.128,2.198-5.959,3.126l-3.613-4.786c3.32-2.882,6.398-4.25,11.038-4.25
|
||||
c6.057,0,11.771,3.517,11.771,10.551c0,5.91-3.761,8.693-7.913,12.455c-1.758,1.611-5.227,4.64-5.666,6.643h14.214v5.764H92.666z"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
19
www/img/icons/ratp/noctilien-14.svg
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
|
||||
<g>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#82DC73;" width="120" height="77"/>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#0A0082;" width="120" height="68.75"/>
|
||||
</g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M34.341,38.708V8.517h-6.154v20.402h-0.085
|
||||
c-0.089-0.373-0.371-0.975-0.845-1.807c-0.475-0.832-1.12-1.841-1.937-3.026L14.623,8.517h-6.11v30.191h6.196V19.082h0.086
|
||||
c0.124,0.36,0.399,0.954,0.823,1.78c0.424,0.826,1.02,1.772,1.786,2.838l10.868,15.008H34.341z"/>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M62.141,61.902V28.07c-2.621,2.072-6.767,4.084-9.632,5.364l-2.926-6.583
|
||||
c4.511-1.89,9.937-4.755,14.203-7.986h7.498v43.037H62.141z"/>
|
||||
<path style="fill:#FFFFFF;" d="M105.894,52.941v8.961h-8.534v-8.961H77.975v-7.986l16.702-26.09h11.217v27.371h5.06v6.705H105.894z
|
||||
M97.359,26.424h-0.122c-0.183,0.731-1.402,3.353-3.109,6.035l-8.777,13.777h12.009V26.424z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
20
www/img/icons/ratp/noctilien-21.svg
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
|
||||
<g>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#82DC73;" width="120" height="77"/>
|
||||
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#0A0082;" width="120" height="68.75"/>
|
||||
</g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M34.341,38.708V8.517h-6.154v20.402h-0.085
|
||||
c-0.089-0.373-0.371-0.975-0.845-1.807c-0.475-0.832-1.12-1.841-1.937-3.026L14.623,8.517h-6.11v30.191h6.196V19.082h0.086
|
||||
c0.124,0.36,0.399,0.954,0.823,1.78c0.424,0.826,1.02,1.772,1.786,2.838l10.868,15.008H34.341z"/>
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M48.023,61.902v-5.669c1.097-4.999,6.034-9.571,11.765-14.569c2.865-2.5,5.974-5.608,5.974-9.753
|
||||
c0-3.719-2.438-6.828-7.132-6.828c-3.779,0-6.4,2.743-7.438,3.901l-4.511-5.974c4.146-3.597,7.986-5.304,13.777-5.304
|
||||
c7.559,0,14.69,4.389,14.69,13.167c0,7.376-4.693,10.85-9.875,15.544c-2.194,2.012-6.522,5.791-7.071,8.29h17.739v7.193H48.023z"/>
|
||||
<path style="fill:#FFFFFF;" d="M92.056,61.902V28.07c-2.621,2.072-6.767,4.084-9.632,5.364l-2.926-6.583
|
||||
c4.511-1.89,9.937-4.755,14.203-7.986h7.498v43.037H92.056z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
20
www/img/icons/ratp/rer-B.svg
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
||||
<svg version="1.1" baseProfile="tiny" id="Premier_plan"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="92px" height="92px"
|
||||
viewBox="0 0 92 92" xml:space="preserve">
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M46,5.333c-22.412,0-40.655,18.208-40.655,40.752c0,22.372,18.242,40.581,40.655,40.581
|
||||
s40.654-18.209,40.654-40.581C86.654,23.542,68.412,5.333,46,5.333z"/>
|
||||
<path fill="#3C91DC" d="M46,92C20.575,92,0,71.463,0,46.083C0,20.537,20.575,0,46,0c25.426,0,46,20.537,46,46.083
|
||||
C92,71.463,71.426,92,46,92z M46,6.846c-21.578,0-39.142,17.531-39.142,39.237c0,21.54,17.563,39.071,39.142,39.071
|
||||
s39.143-17.531,39.143-39.071C85.143,24.377,67.578,6.846,46,6.846z"/>
|
||||
<path fill="#3C91DC" d="M62.917,55.029c0-6.084-3.778-9.61-8.286-10.219v-0.121c3.352-0.608,6.885-3.954,6.885-8.394
|
||||
c0-9.306-8.592-10.888-15.599-10.888H29.831v42.94h15.416C53.412,68.35,62.917,65.855,62.917,55.029z M52.438,37.573
|
||||
c0,4.927-5.059,4.865-8.288,4.865h-4.753v-9.853h4.631C47.137,32.586,52.438,32.464,52.438,37.573z M53.352,54.785
|
||||
c0,5.597-3.961,6.447-8.41,6.447h-5.545V49.251h5.058C47.563,49.251,53.352,49.434,53.352,54.785z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
10
www/img/icons/ticket.svg
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.2" baseProfile="tiny" id="Calque_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24"
|
||||
xml:space="preserve">
|
||||
<path fill="none" d="M0,0h24v24H0V0z"/>
|
||||
<path d="M20,12c0-1.1,0.9-2,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v4c1.1,0,2,0.9,2,2s-0.9,2-2,2v4c0,1.1,0.9,2,2,2h16
|
||||
c1.1,0,2-0.9,2-2v-4C20.9,14,20,13.1,20,12z M15.6,16.8L12,14.5l-3.6,2.3l1.1-4.1L6.2,10l4.2-0.3L12,5.8l1.5,3.9l4.2,0.3l-3.3,2.7
|
||||
L15.6,16.8z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 644 B |
BIN
www/img/photos/banda/photobanda1.jpg
Normal file
After Width: | Height: | Size: 150 KiB |
BIN
www/img/photos/banda/photobanda2.jpg
Normal file
After Width: | Height: | Size: 172 KiB |
BIN
www/img/photos/banda/photobanda3.jpg
Normal file
After Width: | Height: | Size: 153 KiB |
BIN
www/img/photos/banda/photobanda4.jpg
Normal file
After Width: | Height: | Size: 188 KiB |
BIN
www/img/sponsors/a-ulm.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
www/img/sponsors/bda.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
www/img/sponsors/cof.png
Normal file
After Width: | Height: | Size: 19 KiB |
1031
www/img/sponsors/cof.svg
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
www/img/sponsors/ens.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
www/img/sponsors/kfet.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
www/img/sponsors/pls.png
Normal file
After Width: | Height: | Size: 9.9 KiB |
13
www/img/sponsors/pls.svg
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 322.8 328.6" style="enable-background:new 0 0 322.8 328.6;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g id="TITRE">
|
||||
<circle class="st0" cx="161.2" cy="163.9" r="156.3"/>
|
||||
</g>
|
||||
<image style="overflow:visible;enable-background:new ;" width="597" height="219" xlink:href="pls.png" transform="matrix(0.5252 0 0 0.5252 5.5 106.4389)">
|
||||
</image>
|
||||
</svg>
|
After Width: | Height: | Size: 725 B |
18
www/img/theme/elements/visage.svg
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 209.1 526.8" style="enable-background:new 0 0 209.1 526.8;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#940001;}
|
||||
.st1{fill:#570001;}
|
||||
</style>
|
||||
<path class="st0" d="M-0.9,245.8c0,0,13.4,0.4,16.6,4.1s3.6,5,4.2,9.7s2.6,8.5,3.6,9.8s2.8,3.2,3.9,5s1,2.9-1.4,3.5
|
||||
s-3.6-0.4-4.9,0.9c-1.2,1.3-1,2.4-0.8,5.6c0.1,3.2,0.7,7.1-0.1,9.6c-1.3,4-4.3,5-4.3,5c-4.3,1.5-6.4,0.9-10.1,0s-19.5-5.8-21.6-9.3
|
||||
s1.1-28.6,1.1-28.6L-0.9,245.8z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st1" d="M7.9,267.6c2.2,1.7,5.2,1.5,7.3-0.1c0.5-0.4-0.2-1.1-0.7-0.7c-1.8,1.4-4.3,1.3-6.1,0
|
||||
C7.9,266.3,7.4,267.2,7.9,267.6L7.9,267.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 907 B |
59
www/img/theme/paint/paint-orange.svg
Normal file
|
@ -0,0 +1,59 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 595.3 22"
|
||||
style="enable-background:new 0 0 595.3 22;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="paint-orange.svg"
|
||||
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
|
||||
id="defs1" /><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="2.1871326"
|
||||
inkscape:cx="297.64999"
|
||||
inkscape:cy="11.201881"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1000"
|
||||
inkscape:window-x="-11"
|
||||
inkscape:window-y="-11"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Calque_1-2" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style1">
|
||||
.st0{fill:#FCC81C;}
|
||||
</style>
|
||||
<title
|
||||
id="title1">Fichier 1xxx</title>
|
||||
<g
|
||||
id="g1">
|
||||
<g
|
||||
id="Calque_1-2">
|
||||
<path
|
||||
class="st0"
|
||||
d="M116.2,18.6l-2.8,0c-0.9-0.2-1.8-0.3-2.7-0.4c-1.7-0.1-3.5-0.1-5.3-0.4c-5.3-0.7-10.5-1.5-15.8-2.2 c-4.5-0.6-9-1-13.5-1.6c-6.7-0.8-13.7-0.9-20.6-0.5c-3.3,0.3-6.6,0-9.4-0.9c-3.8-1.3-8.2-1.5-11.6,0c-2.2,1-4.8,1.5-7.5,1.9 c-3,0.5-5.9,1.2-9.4,1C11.8,15.2,0,15,0,15L0,1.4l595.4,0v13.7c-0.6,0-1.1,0-1.7,0c-4.9-0.1-9.5-3.9-13.9-5 c-3-0.8-6.5-0.7-9.4,0.2c-0.9,0.3-2,0.5-3.1,0.5c-3.1-0.2-6.2-0.6-9.3-0.8c-4.3-0.3-8.7-0.5-13.1-0.6c-4.4-0.1-8.9-0.4-13.2-0.1 c-8.1,0.5-16.2,1.2-24.3,1.9c-3,0.3-6.1-0.3-8-1.5c-3.8-2.5-6.7-3.1-12.4-2.1c-2.3,0.5-4.7,0.8-7.2,1c-4.3,0.3-8.8,0.2-13.1,0.6 c-3.5,0.4-7.1,0.1-10.2-0.8c-4.3-1.2-8.8-2-13.9-1.8c-5.7,0.2-11.4,0.5-17.1,0.5c-4.3,0-8.6-0.4-12.8-0.5c-4.2-0.1-8.9-0.1-13.3,0 c-6.7,0-13.4,0.7-19.7,1.9c-7.6,1.5-8.2,1.4-13.6-1.5c-2.1-1.2-5.7-1.6-8.7-1c-3,0.5-4.5,1.7-4.8,3.3c-0.1,0.6-0.6,1.1-1.4,1.5 c-4.6,2.2-10.9,2.5-16.5,0.8c-4.3-1.3-8.6-1.8-13.3-0.7s-8.9,2.7-14.1,3.4c-4.5,0.7-9.2,0.9-13.8,0.8c-2.5-0.2-4.9-0.4-7.3-0.7 c-2.1-0.3-4.2-0.8-6.3-0.9c-5.4-0.3-11,0.4-16.3-0.6c-1.2-0.2-2.4-0.3-3.6-0.3c-9.8-0.2-19.5-0.4-29.3-0.6 c-5.2-0.1-10.3-0.2-15.5-0.3c-2.3-0.1-4.7-0.2-7-0.3c-7.2-0.5-14.4-0.5-21.4,0.6c-2.4,0.4-5.2,0-6.6-1.1c-3.8-2.5-11-3-16-1.1 c-1.5,0.6-2.6,1.3-3.4,2.1c-0.5,0.6-1.4,1.1-2.5,1.4c-2.4,0.7-4.2,1.9-5,3.2c-0.3,0.4-0.9,0.7-1.7,0.8c-2.6,0.2-5.2,0.2-7.8,0.3 c-2.5,0.1-4-0.4-5.2-1.5c-2.9-2.5-8.8-3.8-13.8-2C121.5,15.3,119.1,17.1,116.2,18.6z"
|
||||
id="path1"
|
||||
style="fill:#b35d24;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<metadata
|
||||
id="metadata1"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:title>Fichier 1xxx</dc:title></cc:Work></rdf:RDF></metadata></svg>
|
After Width: | Height: | Size: 3 KiB |
65
www/img/theme/paint/paint-red.svg
Normal file
After Width: | Height: | Size: 1.2 MiB |
23
www/img/theme/paint/paint-white.svg
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.2" baseProfile="tiny" id="Calque_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 595.3 17"
|
||||
xml:space="preserve">
|
||||
<title>Fichier 1xxx</title>
|
||||
<g>
|
||||
<g id="Calque_1-2">
|
||||
<path fill="#FBFBFB" d="M124.7,5.8c5,1.8,10.9,0.5,13.8-2c1.2-1.1,2.7-1.6,5.2-1.5c2.6,0.1,5.2,0.1,7.8,0.3
|
||||
c0.8,0.1,1.4,0.4,1.7,0.8c0.8,1.4,2.6,2.5,5,3.2c1.1,0.3,1.9,0.8,2.5,1.4c0.8,0.8,2,1.5,3.4,2.1c5,1.9,12.2,1.4,16-1.1
|
||||
c1.4-1.1,4.2-1.5,6.6-1.1c7,1.1,14.2,1.1,21.4,0.6c2.3-0.1,4.7-0.3,7-0.3c5.2-0.1,10.3-0.2,15.5-0.3c9.8-0.2,19.5-0.4,29.3-0.6
|
||||
c1.2,0,2.4-0.1,3.6-0.3c5.3-1,10.9-0.3,16.3-0.6c2.1-0.1,4.2-0.6,6.3-0.9c2.4-0.3,4.8-0.6,7.3-0.7c4.7-0.1,9.3,0.1,13.8,0.8
|
||||
c5.3,0.7,9.4,2.3,14.1,3.4s9.1,0.6,13.3-0.7c5.6-1.7,11.9-1.4,16.5,0.8c0.8,0.4,1.3,0.9,1.4,1.5c0.3,1.6,1.8,2.7,4.8,3.3
|
||||
c3,0.6,6.5,0.2,8.7-1c5.5-2.9,6.1-3,13.6-1.5c6.3,1.2,12.9,1.8,19.7,1.9c4.4,0.1,9,0.1,13.3,0c4.3-0.1,8.6-0.5,12.8-0.5
|
||||
c5.7,0,11.4,0.3,17.1,0.5c5.1,0.2,9.6-0.6,13.9-1.8c3.1-0.9,6.7-1.2,10.2-0.8c4.3,0.4,8.7,0.3,13.1,0.6c2.5,0.2,4.9,0.5,7.2,1
|
||||
c5.7,1,8.7,0.5,12.4-2.1c1.9-1.2,5-1.8,8-1.5c8.1,0.6,16.1,1.4,24.3,1.9c4.3,0.2,8.8,0,13.2-0.1s8.8-0.4,13.1-0.6
|
||||
c3.1-0.2,6.2-0.6,9.3-0.8c1.1,0,2.2,0.2,3.1,0.5c2.9,0.9,6.4,0.9,9.4,0.2c4.4-1.1,9-4.9,13.9-5c0.6,0,1.1,0,1.7,0v13.6H0L0,4.8
|
||||
c0,0,11.8-0.2,17.6-0.5c3.5-0.2,6.4,0.5,9.4,1c2.6,0.4,5.3,0.9,7.5,1.9c3.4,1.5,7.8,1.4,11.6,0c2.8-0.9,6.1-1.2,9.4-0.9
|
||||
C62.3,6.9,69.3,6.7,76,5.9c4.5-0.5,9.1-1,13.5-1.6c5.3-0.7,10.5-1.5,15.8-2.2c1.7-0.2,3.5-0.2,5.3-0.4c0.9-0.1,1.8-0.2,2.7-0.4
|
||||
h2.8C118.9,2.9,121.4,4.7,124.7,5.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
54
www/img/theme/paint/paint-yellow.svg
Normal file
|
@ -0,0 +1,54 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Calque_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 595.3 22"
|
||||
style="enable-background:new 0 0 595.3 22;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="paint-yellow.svg"
|
||||
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs1" /><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="2.1871326"
|
||||
inkscape:cx="297.64999"
|
||||
inkscape:cy="11.201881"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1000"
|
||||
inkscape:window-x="-11"
|
||||
inkscape:window-y="-11"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Calque_1-2" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style1">
|
||||
.st0{fill:#FCC81C;}
|
||||
</style>
|
||||
<title
|
||||
id="title1">Fichier 1xxx</title>
|
||||
<g
|
||||
id="g1">
|
||||
<g
|
||||
id="Calque_1-2">
|
||||
<path
|
||||
class="st0"
|
||||
d="M116.2,18.6l-2.8,0c-0.9-0.2-1.8-0.3-2.7-0.4c-1.7-0.1-3.5-0.1-5.3-0.4c-5.3-0.7-10.5-1.5-15.8-2.2 c-4.5-0.6-9-1-13.5-1.6c-6.7-0.8-13.7-0.9-20.6-0.5c-3.3,0.3-6.6,0-9.4-0.9c-3.8-1.3-8.2-1.5-11.6,0c-2.2,1-4.8,1.5-7.5,1.9 c-3,0.5-5.9,1.2-9.4,1C11.8,15.2,0,15,0,15L0,1.4l595.4,0v13.7c-0.6,0-1.1,0-1.7,0c-4.9-0.1-9.5-3.9-13.9-5 c-3-0.8-6.5-0.7-9.4,0.2c-0.9,0.3-2,0.5-3.1,0.5c-3.1-0.2-6.2-0.6-9.3-0.8c-4.3-0.3-8.7-0.5-13.1-0.6c-4.4-0.1-8.9-0.4-13.2-0.1 c-8.1,0.5-16.2,1.2-24.3,1.9c-3,0.3-6.1-0.3-8-1.5c-3.8-2.5-6.7-3.1-12.4-2.1c-2.3,0.5-4.7,0.8-7.2,1c-4.3,0.3-8.8,0.2-13.1,0.6 c-3.5,0.4-7.1,0.1-10.2-0.8c-4.3-1.2-8.8-2-13.9-1.8c-5.7,0.2-11.4,0.5-17.1,0.5c-4.3,0-8.6-0.4-12.8-0.5c-4.2-0.1-8.9-0.1-13.3,0 c-6.7,0-13.4,0.7-19.7,1.9c-7.6,1.5-8.2,1.4-13.6-1.5c-2.1-1.2-5.7-1.6-8.7-1c-3,0.5-4.5,1.7-4.8,3.3c-0.1,0.6-0.6,1.1-1.4,1.5 c-4.6,2.2-10.9,2.5-16.5,0.8c-4.3-1.3-8.6-1.8-13.3-0.7s-8.9,2.7-14.1,3.4c-4.5,0.7-9.2,0.9-13.8,0.8c-2.5-0.2-4.9-0.4-7.3-0.7 c-2.1-0.3-4.2-0.8-6.3-0.9c-5.4-0.3-11,0.4-16.3-0.6c-1.2-0.2-2.4-0.3-3.6-0.3c-9.8-0.2-19.5-0.4-29.3-0.6 c-5.2-0.1-10.3-0.2-15.5-0.3c-2.3-0.1-4.7-0.2-7-0.3c-7.2-0.5-14.4-0.5-21.4,0.6c-2.4,0.4-5.2,0-6.6-1.1c-3.8-2.5-11-3-16-1.1 c-1.5,0.6-2.6,1.3-3.4,2.1c-0.5,0.6-1.4,1.1-2.5,1.4c-2.4,0.7-4.2,1.9-5,3.2c-0.3,0.4-0.9,0.7-1.7,0.8c-2.6,0.2-5.2,0.2-7.8,0.3 c-2.5,0.1-4-0.4-5.2-1.5c-2.9-2.5-8.8-3.8-13.8-2C121.5,15.3,119.1,17.1,116.2,18.6z"
|
||||
id="path1"
|
||||
style="fill:#d1ab5a;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
181
www/index.html
Normal file
|
@ -0,0 +1,181 @@
|
|||
<!doctype html>
|
||||
<html lang="fr">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0," />
|
||||
|
||||
<meta name="description" content="Site de la bandarretdurgence — Le club de la banda de l'ENS" />
|
||||
<meta name="keywords" content="ENS Banda" />
|
||||
|
||||
<title>La Bandarretdurgence</title>
|
||||
|
||||
<link rel="stylesheet" href="css/normalize.css" />
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
<link rel="stylesheet" href="css/tipso.css" />
|
||||
<link rel="stylesheet" href="css/calendar.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<style>
|
||||
header {
|
||||
width: 100%;
|
||||
text-align: center; /* Pour centrer l'image horizontalement */
|
||||
}
|
||||
header img {
|
||||
width: 100%; /* Pour que l'image occupe toute la largeur de son conteneur */
|
||||
max-width: 100%; /* Pour s'assurer que l'image ne dépasse pas la largeur de la page */
|
||||
height: auto; /* Pour que la hauteur de l'image soit ajustée proportionnellement à sa largeur */
|
||||
}
|
||||
</style>
|
||||
|
||||
<header>
|
||||
<img src="img/header/banda_header2.svg" alt="titre" />
|
||||
</header>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<img src="img/content/presentation.svg" alt="Présentation" />
|
||||
<div>
|
||||
<p>
|
||||
<br /><br /><br />
|
||||
La Bandarrêtdurgence c'est un morceau du Sud-Ouest à Paris !
|
||||
Jeunes musiciens dynamiques et chahuteurs, on anime les soirées
|
||||
des bars à tapas comme les matchs du <strong>sport roi</strong>. Tu nous trouveras le plus souvent
|
||||
en sagement en répétition dans le 5ème arrondissement comme depuis le début de l'aventure en 2018 !
|
||||
Mais nous préférons par dessus tout réjouir petits et grands en jouant en manche dans le quartier
|
||||
(et le plus souvent, accoudés au comptoir le plus proche une fois la soirée arrivée.). </br >Finalement, le but ultime et avoué est de rejoindre
|
||||
nos compatriotes du Sud-Ouest pour les férias et fêtes de villages de l'été : de Toulouse à Gourdon, on s'y donne à coeur joie !
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Qu'est-ce qu'on y joue à la Bandarrêtdurgence me direz-vous ? Et bien on y retrouve de tout ce qu'on aime pardi !
|
||||
De la bonne chanson française avec Joe Dassin et Claude François, les incontournables traditionnels pasodobles espangols,
|
||||
les meilleurs tubes qui vous feront chanter à pleins poumons jusqu'au bout des <strong>démons de minuit</strong>.
|
||||
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Tu es musicien.ne et cherche une banda conviviale pour venir jouer ? </br>
|
||||
Nous recrutons à tous les pupitres !</br>
|
||||
Nous répétons les mercredis soirs au 45 rue d'Ulm dans le 5ème arrondissement. Contacte-nous par mail ou sur un réseau social et nous t'accueillerons avec plaisir.
|
||||
Il n'y a pas de niveau musical requis mais la bonne humeur et l'enthousiasme sont de mises.
|
||||
</p>
|
||||
|
||||
|
||||
<a href="https://www.instagram.com/bandarretdurgence/" target="_blank">
|
||||
<div id="instagram-button" class="button">
|
||||
<span>Page Instagram</span>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="https://www.facebook.com/Bandarretdurgence.Paris" target="_blank">
|
||||
<div id="facebook-button" class="button">
|
||||
<span>Page Facebook</span>
|
||||
</div>
|
||||
|
||||
|
||||
<p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section id="Contrats">
|
||||
<img src="img/content/inscriptions.svg" alt="Contrats" />
|
||||
<div>
|
||||
<p>
|
||||
<br /><br />
|
||||
Tu nous y a peut-être vu ou entendu : </br>
|
||||
- au rugby club de Suresnes</br>
|
||||
- au rugby club du XVe </br>
|
||||
- à la maison basque de Saint-Ouen </br>
|
||||
- aux aubades de Montastruc </br>
|
||||
- à la Saint Jean et à la fête du pain de Gourdon avec la Dede's banda </br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="photos">
|
||||
<img src="img/content/photos.svg" alt="Photos" />
|
||||
<div>
|
||||
<p>
|
||||
Ils sont beaux ils jouent bien ils s'amusent et vous divertissent : ce sont nos plus beaux moments de banda sous vos yeux !
|
||||
</p>
|
||||
</div>
|
||||
<div class="banda">
|
||||
<p align="center">
|
||||
<img src="img/photos/banda/photobanda1.jpg" alt="Danse de salon" />
|
||||
</p>
|
||||
<p align="center">
|
||||
<img src="img/photos/banda/photobanda2.jpg" />
|
||||
</p>
|
||||
<p align="center">
|
||||
<img src="img/photos/banda/photobanda3.jpg" alt="Pompom" />
|
||||
</p>
|
||||
<p align="center">
|
||||
<img src="img/photos/banda/photobanda4.jpg" alt="Concert" />
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<img src="img/content/nouscontacter.svg" alt="Nous contacter" />
|
||||
<div>
|
||||
<p id="contact-email">
|
||||
<span><a href="mailto:bandarretdurgence@gmail.com">bandarretdurgence@gmail.com</a></span>
|
||||
</p>
|
||||
</div>
|
||||
<br />
|
||||
|
||||
|
||||
<br />
|
||||
<div id="sponsors">
|
||||
<a href="https://www.ens.fr/">
|
||||
<img class="sponsor-disc" src="img/sponsors/ens.png" alt="ENS" />
|
||||
</a>
|
||||
<a href="https://www.cof.ens.fr">
|
||||
<img class="sponsor-disc" src="img/sponsors/cof.png" alt="COF" />
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<p id="signature">© Louise Harari, Louise Nassor, Camille Gobert</p>
|
||||
</body>
|
||||
|
||||
<script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
|
||||
<script type="text/javascript" src="js/tipso.min.js"></script>
|
||||
<script type="text/javascript" src="js/calendar.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(window).ready(() => {
|
||||
// Starry background init (used in 2019 but not in 2021 because there was no starry background behind the header)
|
||||
// const canvas = document.getElementById("main-header-stars");
|
||||
// const sky = new StarrySky(canvas);
|
||||
|
||||
// Calendar init
|
||||
let calendar1 = new Calendar({
|
||||
containerNode: $("#cal-container-1"),
|
||||
startDate: new Date(2024, 3, 12, 18),
|
||||
endDate: new Date(2024, 3, 13, 3),
|
||||
groupEventsByLocation: true,
|
||||
});
|
||||
|
||||
let calendar2 = new Calendar({
|
||||
containerNode: $("#cal-container-2"),
|
||||
startDate: new Date(2024, 3, 13, 11),
|
||||
endDate: new Date(2024, 3, 14, 4),
|
||||
groupEventsByLocation: true,
|
||||
});
|
||||
|
||||
let calendar3 = new Calendar({
|
||||
containerNode: $("#cal-container-3"),
|
||||
startDate: new Date(2024, 3, 14, 10),
|
||||
endDate: new Date(2024, 3, 14, 14),
|
||||
groupEventsByLocation: true,
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</html>
|