theming : fonts, more layout, colors, logo, etc
This commit is contained in:
@@ -10,6 +10,7 @@ engine = "phptemplate"
|
||||
|
||||
;----------// Styles
|
||||
stylesheets[all][] = "bower_components/normalize-css/normalize.css"
|
||||
stylesheets[all][] = "fonts/aileron/aileron.css"
|
||||
stylesheets[all][] = "css/dist/styles.css"
|
||||
; non-semantic helper classes
|
||||
; Please define your styles before this section.
|
||||
|
||||
+65
-82
@@ -1,14 +1,10 @@
|
||||
/**
|
||||
/**
|
||||
* Primary Drupal Styles
|
||||
* Author: Bachir Soussi Chiadmi
|
||||
*/
|
||||
body {
|
||||
font-size: 16px;
|
||||
font-family: Arial, "MS Trebuchet", sans-serif; }
|
||||
|
||||
a {
|
||||
color: #007BC2;
|
||||
text-decoration: none; }
|
||||
font-family: "aileron", Arial, "MS Trebuchet", sans-serif; }
|
||||
|
||||
h1 {
|
||||
font-size: 1.6em; }
|
||||
@@ -56,67 +52,85 @@ body.no-sidebars #center {
|
||||
width: 18%; }
|
||||
|
||||
#header, #main, #footer {
|
||||
padding: 1em; }
|
||||
|
||||
body {
|
||||
background-color: #DFDFDF; }
|
||||
padding: 0; }
|
||||
|
||||
#container {
|
||||
width: 1024px;
|
||||
margin: 0 auto;
|
||||
background-color: #FFF; }
|
||||
margin: 0 auto; }
|
||||
|
||||
#header, #footer {
|
||||
background-color: #535353;
|
||||
color: #fff; }
|
||||
#header h1 {
|
||||
display: block;
|
||||
height: 335px;
|
||||
background-image: url(../../images/logo.png);
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
text-indent: -2000px;
|
||||
overflow: hidden;
|
||||
margin: 0; }
|
||||
|
||||
.block, .panel-pane {
|
||||
border: 1px solid #D1D1D1;
|
||||
padding: 0.5em;
|
||||
margin: 0.5em;
|
||||
border-radius: 5px;
|
||||
background-color: #EAEAEA; }
|
||||
#header h2 {
|
||||
text-align: center;
|
||||
color: #20c498; }
|
||||
|
||||
.footer-block .block {
|
||||
background-color: #353535;
|
||||
border: 1px solid #1a1a1a; }
|
||||
#node-63 {
|
||||
color: #1f04a1; }
|
||||
|
||||
.panel-2col-stacked {
|
||||
background-position: center;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat; }
|
||||
.panel-2col-stacked .field-name-field-emvideo img {
|
||||
width: 100%; }
|
||||
.panel-2col-stacked .panel-col-top h2 {
|
||||
color: #fb3f08; }
|
||||
.panel-2col-stacked .center-wrapper .panel-col-first {
|
||||
width: 70%; }
|
||||
.panel-2col-stacked .center-wrapper .panel-col-last {
|
||||
width: 30%; }
|
||||
.panel-2col-stacked .center-wrapper .panel-col-last .field-name-body {
|
||||
display: none; }
|
||||
.panel-2col-stacked .panel-col-bottom .field-name-field-episodes > .field-items {
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-ms-flex-flow: row nowrap;
|
||||
flex-flow: row nowrap;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between; }
|
||||
.panel-2col-stacked .panel-col-bottom .field-name-field-episodes > .field-items > .field-item {
|
||||
display: block;
|
||||
width: 19%; }
|
||||
.panel-2col-stacked .panel-col-bottom .field-name-body {
|
||||
display: none; }
|
||||
|
||||
#mini-panel-th_matique {
|
||||
background-image: url(../../images/fond-theme-0.png); }
|
||||
|
||||
#mini-panel-th_matique-1 {
|
||||
background-image: url(../../images/fond-theme-0.png); }
|
||||
|
||||
#mini-panel-th_matique-2 {
|
||||
background-image: url(../../images/fond-theme-0.png); }
|
||||
|
||||
#mini-panel-th_matique-3 {
|
||||
background-image: url(../../images/fond-theme-0.png); }
|
||||
|
||||
#mini-panel-th_matique-4 {
|
||||
background-image: url(../../images/fond-theme-0.png); }
|
||||
|
||||
#mini-panel-th_matique-5 {
|
||||
background-image: url(../../images/fond-theme-0.png); }
|
||||
|
||||
#footer-bottom {
|
||||
text-align: center; }
|
||||
|
||||
#footer-bottom .block {
|
||||
background-color: transparent;
|
||||
border: 0 solid #999;
|
||||
font-size: 0.7em; }
|
||||
|
||||
#content {
|
||||
padding: 1em; }
|
||||
|
||||
.logo h1, h1.page-title {
|
||||
font-size: 2em; }
|
||||
|
||||
#header ul.menu li,
|
||||
#content-top ul.menu li,
|
||||
#content-bottom ul.menu li,
|
||||
#footer ul.menu li {
|
||||
display: inline-block;
|
||||
vertical-align: top; }
|
||||
|
||||
.views-row {
|
||||
margin-bottom: 1em; }
|
||||
|
||||
.views-field-title {
|
||||
font-size: 1.1em;
|
||||
font-weight: bold; }
|
||||
|
||||
.views-field-title a {
|
||||
color: #444444;
|
||||
text-decoration: none; }
|
||||
|
||||
li, .item-list ul li {
|
||||
list-style: none inside url();
|
||||
margin-left: 0; }
|
||||
|
||||
/** Messages. */
|
||||
div.messages {
|
||||
padding: 9px;
|
||||
@@ -155,15 +169,12 @@ ul.primary, .views-admin-links ul {
|
||||
list-style: none;
|
||||
margin: 5px;
|
||||
height: auto;
|
||||
line-height: normal;
|
||||
border-bottom: 1px solid #bbb; }
|
||||
line-height: normal; }
|
||||
|
||||
ul.primary li, .views-admin-links li {
|
||||
display: inline; }
|
||||
|
||||
ul.primary li a, .views-admin-links li a {
|
||||
background-color: #ddd;
|
||||
border-color: #bbb;
|
||||
border-width: 1px;
|
||||
border-style: solid solid none solid;
|
||||
height: auto;
|
||||
@@ -174,34 +185,6 @@ ul.primary li a, .views-admin-links li a {
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px; }
|
||||
|
||||
ul.primary li.active a {
|
||||
background-color: #fff;
|
||||
border: 1px solid #bbb;
|
||||
border-bottom: #fff 1px solid; }
|
||||
|
||||
ul.primary li a:hover, .views-admin-links li a:hover {
|
||||
background-color: #eee;
|
||||
border-color: #ccc;
|
||||
border-bottom-color: #eee; }
|
||||
|
||||
ul.secondary {
|
||||
border-bottom: 1px solid #bbb;
|
||||
padding: 0.5em 1em;
|
||||
margin: 5px; }
|
||||
|
||||
ul.secondary li {
|
||||
display: inline;
|
||||
padding: 0 1em;
|
||||
border-right: 1px solid #ccc;
|
||||
/* LTR */ }
|
||||
|
||||
ul.secondary a {
|
||||
padding: 0;
|
||||
text-decoration: none; }
|
||||
|
||||
ul.secondary a.active {
|
||||
border-bottom: 4px solid #999; }
|
||||
|
||||
/** Form */
|
||||
#node-form .form-region-main {
|
||||
border-right: 1px solid #BFBFBF;
|
||||
|
||||
@@ -1,13 +1,16 @@
|
||||
/**
|
||||
/**
|
||||
* Primary Drupal Styles
|
||||
* Author: Bachir Soussi Chiadmi
|
||||
*/
|
||||
|
||||
|
||||
body{font-size:16px; font-family: Arial, "MS Trebuchet", sans-serif;}
|
||||
body{
|
||||
font-size:16px;
|
||||
font-family: "aileron", Arial, "MS Trebuchet", sans-serif;
|
||||
}
|
||||
|
||||
|
||||
a{color: #007BC2; text-decoration: none;}
|
||||
// a{color: #007BC2; text-decoration: none;}
|
||||
|
||||
|
||||
h1{font-size:1.6em;}
|
||||
@@ -19,7 +22,14 @@ h6{font-size:1.1em;}
|
||||
|
||||
input{font-family: Arial, "MS Trebuchet", sans-serif; font-size:0.8em;}
|
||||
|
||||
|
||||
// __
|
||||
// _________ / /___ __________
|
||||
// / ___/ __ \/ / __ \/ ___/ ___/
|
||||
// / /__/ /_/ / / /_/ / / (__ )
|
||||
// \___/\____/_/\____/_/ /____/
|
||||
$vert : #20c498;
|
||||
$bleu : #1f04a1;
|
||||
$rouge : #fb3f08;
|
||||
|
||||
/** layout */
|
||||
#center, #sidebar-first, #sidebar-second, .footer-block .region, .header-block{ display:inline-block; vertical-align: top;}
|
||||
@@ -32,43 +42,129 @@ body.no-sidebars #center { width: 100%; }
|
||||
#sidebar-first { width: 24%; }
|
||||
#sidebar-second { width: 18%; }
|
||||
|
||||
#header, #main, #footer{ padding:1em; }
|
||||
#header, #main, #footer{ padding:0; }
|
||||
|
||||
body{background-color: #DFDFDF;}
|
||||
body{
|
||||
|
||||
#container{width:1024px; margin:0 auto; background-color: #FFF;}
|
||||
|
||||
#header, #footer{background-color: #535353; color:#fff;}
|
||||
|
||||
.block, .panel-pane{
|
||||
border: 1px solid #D1D1D1; padding:0.5em; margin:0.5em;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
background-color: #EAEAEA;
|
||||
}
|
||||
|
||||
#container{
|
||||
width:1024px; margin:0 auto;
|
||||
}
|
||||
|
||||
#header{
|
||||
h1{
|
||||
display:block;
|
||||
height:335px;
|
||||
background-image: url(../../images/logo.png);
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
text-indent: -2000px;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
}
|
||||
h2{
|
||||
text-align: center;
|
||||
color:$vert;
|
||||
}
|
||||
}
|
||||
|
||||
// about
|
||||
#node-63{
|
||||
color:$bleu;
|
||||
}
|
||||
|
||||
// thematique
|
||||
.panel-2col-stacked{
|
||||
|
||||
background-position: center;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
.field-name-field-emvideo img{
|
||||
width: 100%;
|
||||
}
|
||||
.panel-col-top h2{
|
||||
color: $rouge;
|
||||
}
|
||||
.center-wrapper{
|
||||
.panel-col-first{
|
||||
width:70%;
|
||||
}
|
||||
.panel-col-last{
|
||||
width:30%;
|
||||
.field-name-body{
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.panel-col-bottom{
|
||||
.field-name-field-episodes{
|
||||
// letter-spacing: -0.25em;
|
||||
&>.field-items{
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
justify-content: space-between;
|
||||
&>.field-item{
|
||||
display: block;
|
||||
// letter-spacing: normal;
|
||||
// display: inline-block;
|
||||
width:19%;
|
||||
// padding-right:1%;
|
||||
}
|
||||
}
|
||||
}
|
||||
.field-name-body{
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
}
|
||||
#mini-panel-th_matique{
|
||||
background-image: url(../../images/fond-theme-0.png);
|
||||
}
|
||||
#mini-panel-th_matique-1{
|
||||
background-image: url(../../images/fond-theme-0.png);
|
||||
}
|
||||
#mini-panel-th_matique-2{
|
||||
background-image: url(../../images/fond-theme-0.png);
|
||||
}
|
||||
#mini-panel-th_matique-3{
|
||||
background-image: url(../../images/fond-theme-0.png);
|
||||
}
|
||||
#mini-panel-th_matique-4{
|
||||
background-image: url(../../images/fond-theme-0.png);
|
||||
}
|
||||
#mini-panel-th_matique-5{
|
||||
background-image: url(../../images/fond-theme-0.png);
|
||||
}
|
||||
|
||||
|
||||
#footer{
|
||||
|
||||
}
|
||||
|
||||
// .block, .panel-pane{
|
||||
// border: 1px solid #D1D1D1; padding:0.5em; margin:0.5em;
|
||||
// -moz-border-radius: 5px;
|
||||
// -webkit-border-radius: 5px;
|
||||
// border-radius: 5px;
|
||||
// background-color: #EAEAEA;
|
||||
// }
|
||||
|
||||
.footer-block .block{
|
||||
background-color: #353535; border: 1px solid #1a1a1a;
|
||||
// background-color: #353535; border: 1px solid #1a1a1a;
|
||||
}
|
||||
#footer-bottom{ text-align: center;}
|
||||
#footer-bottom .block{ background-color: transparent; border: 0 solid #999; font-size:0.7em;}
|
||||
#footer-bottom .block{
|
||||
background-color: transparent;
|
||||
// border: 0 solid #999;
|
||||
font-size:0.7em;
|
||||
}
|
||||
|
||||
#content{padding:1em;}
|
||||
|
||||
.logo h1, h1.page-title{font-size:2em;}
|
||||
|
||||
#header ul.menu li,
|
||||
#content-top ul.menu li,
|
||||
#content-bottom ul.menu li,
|
||||
#footer ul.menu li{display:inline-block; vertical-align:top; }
|
||||
|
||||
.views-row{margin-bottom:1em;}
|
||||
|
||||
.views-field-title{font-size:1.1em; font-weight:bold;}
|
||||
.views-field-title a{color: #444444; text-decoration:none;}
|
||||
|
||||
li, .item-list ul li{list-style: none inside url(); margin-left:0;}
|
||||
|
||||
/** Messages. */
|
||||
|
||||
@@ -81,7 +177,7 @@ div.messages {
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
|
||||
|
||||
}
|
||||
|
||||
div.warning {
|
||||
@@ -111,7 +207,7 @@ div.status {
|
||||
/** Tab navigation */
|
||||
|
||||
ul.primary, .views-admin-links ul {
|
||||
font:13px/1.231 sans-serif; *font-size:small;
|
||||
font:13px/1.231 sans-serif; *font-size:small;
|
||||
border-collapse: collapse;
|
||||
padding: 0 0 0 1em; /* LTR */
|
||||
white-space: nowrap;
|
||||
@@ -119,15 +215,15 @@ ul.primary, .views-admin-links ul {
|
||||
margin: 5px;
|
||||
height: auto;
|
||||
line-height: normal;
|
||||
border-bottom: 1px solid #bbb;
|
||||
// border-bottom: 1px solid #bbb;
|
||||
}
|
||||
ul.primary li, .views-admin-links li{
|
||||
display: inline;
|
||||
|
||||
|
||||
}
|
||||
ul.primary li a, .views-admin-links li a {
|
||||
background-color: #ddd;
|
||||
border-color: #bbb;
|
||||
// background-color: #ddd;
|
||||
// border-color: #bbb;
|
||||
border-width: 1px;
|
||||
border-style: solid solid none solid;
|
||||
height: auto;
|
||||
@@ -141,35 +237,35 @@ ul.primary li a, .views-admin-links li a {
|
||||
-webkit-border-top-right-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
}
|
||||
ul.primary li.active a {
|
||||
background-color: #fff;
|
||||
border: 1px solid #bbb;
|
||||
border-bottom: #fff 1px solid;
|
||||
}
|
||||
ul.primary li a:hover, .views-admin-links li a:hover{
|
||||
background-color: #eee;
|
||||
border-color: #ccc;
|
||||
border-bottom-color: #eee;
|
||||
}
|
||||
|
||||
ul.secondary {
|
||||
border-bottom: 1px solid #bbb;
|
||||
padding: 0.5em 1em;
|
||||
margin: 5px;
|
||||
}
|
||||
ul.secondary li {
|
||||
display: inline;
|
||||
padding: 0 1em;
|
||||
border-right: 1px solid #ccc; /* LTR */
|
||||
}
|
||||
ul.secondary a {
|
||||
padding: 0;
|
||||
text-decoration: none;
|
||||
}
|
||||
ul.secondary a.active {
|
||||
border-bottom: 4px solid #999;
|
||||
}
|
||||
// ul.primary li.active a {
|
||||
// background-color: #fff;
|
||||
// border: 1px solid #bbb;
|
||||
// border-bottom: #fff 1px solid;
|
||||
// }
|
||||
// ul.primary li a:hover, .views-admin-links li a:hover{
|
||||
// background-color: #eee;
|
||||
// border-color: #ccc;
|
||||
// border-bottom-color: #eee;
|
||||
// }
|
||||
|
||||
// ul.secondary {
|
||||
// border-bottom: 1px solid #bbb;
|
||||
// padding: 0.5em 1em;
|
||||
// margin: 5px;
|
||||
// }
|
||||
// ul.secondary li {
|
||||
// display: inline;
|
||||
// padding: 0 1em;
|
||||
// border-right: 1px solid #ccc; /* LTR */
|
||||
// }
|
||||
// ul.secondary a {
|
||||
// padding: 0;
|
||||
// text-decoration: none;
|
||||
// }
|
||||
// ul.secondary a.active {
|
||||
// border-bottom: 4px solid #999;
|
||||
// }
|
||||
//
|
||||
|
||||
/** Form */
|
||||
|
||||
@@ -228,7 +324,7 @@ input.form-text{max-width:95%;}
|
||||
|
||||
/** TABLE */
|
||||
|
||||
table{width:100%;
|
||||
table{width:100%;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -0,0 +1,115 @@
|
||||
/* Generated by Font Squirrel (https://www.fontsquirrel.com) on February 6, 2017 */
|
||||
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-thin-webfont.woff2') format('woff2'),
|
||||
url('aileron-thin-webfont.woff') format('woff');
|
||||
font-weight: 200;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-thinitalic-webfont.woff2') format('woff2'),
|
||||
url('aileron-thinitalic-webfont.woff') format('woff');
|
||||
font-weight: 200;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-ultralight-webfont.woff2') format('woff2'),
|
||||
url('aileron-ultralight-webfont.woff') format('woff');
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-ultralightitalic-webfont.woff2') format('woff2'),
|
||||
url('aileron-ultralightitalic-webfont.woff') format('woff');
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-light-webfont.woff2') format('woff2'),
|
||||
url('aileron-light-webfont.woff') format('woff');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-lightitalic-webfont.woff2') format('woff2'),
|
||||
url('aileron-lightitalic-webfont.woff') format('woff');
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-regular-webfont.woff2') format('woff2'),
|
||||
url('aileron-regular-webfont.woff') format('woff');
|
||||
font-weight: 500;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-italic-webfont.woff2') format('woff2'),
|
||||
url('aileron-italic-webfont.woff') format('woff');
|
||||
font-weight: 500;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-semibold-webfont.woff2') format('woff2'),
|
||||
url('aileron-semibold-webfont.woff') format('woff');
|
||||
font-weight: 600;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-semibolditalic-webfont.woff2') format('woff2'),
|
||||
url('aileron-semibolditalic-webfont.woff') format('woff');
|
||||
font-weight: 600;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-bold-webfont.woff2') format('woff2'),
|
||||
url('aileron-bold-webfont.woff') format('woff');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-bolditalic-webfont.woff2') format('woff2'),
|
||||
url('aileron-bolditalic-webfont.woff') format('woff');
|
||||
font-weight: 700;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-black-webfont.woff2') format('woff2'),
|
||||
url('aileron-black-webfont.woff') format('woff');
|
||||
font-weight: 800;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-blackitalic-webfont.woff2') format('woff2'),
|
||||
url('aileron-blackitalic-webfont.woff') format('woff');
|
||||
font-weight: 800;
|
||||
font-style: italic;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-heavy-webfont.woff2') format('woff2'),
|
||||
url('aileron-heavy-webfont.woff') format('woff');
|
||||
font-weight: 900;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'aileron';
|
||||
src: url('aileron-heavyitalic-webfont.woff2') format('woff2'),
|
||||
url('aileron-heavyitalic-webfont.woff') format('woff');
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
/* Generated by Font Squirrel (https://www.fontsquirrel.com) on February 6, 2017 */
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.1 MiB |
@@ -0,0 +1,476 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1250"
|
||||
height="950"
|
||||
viewBox="0 0 330.72916 251.35417"
|
||||
version="1.1"
|
||||
id="svg11763"
|
||||
inkscape:version="0.92.0 r"
|
||||
sodipodi:docname="fond-theme-0.svg">
|
||||
<defs
|
||||
id="defs11757">
|
||||
<pattern
|
||||
inkscape:collect="always"
|
||||
xlink:href="#Wavy-4-4"
|
||||
id="pattern49170-7"
|
||||
patternTransform="matrix(1.0398782,0.77266377,-0.49581233,0.66728175,134.21514,10.824178)" />
|
||||
<pattern
|
||||
inkscape:stockid="Wavy"
|
||||
id="Wavy-4-4"
|
||||
height="5.1805778"
|
||||
width="30.066020"
|
||||
patternUnits="userSpaceOnUse"
|
||||
inkscape:collect="always"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
id="path7533-3"
|
||||
d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
|
||||
style="fill:black;stroke:none;" />
|
||||
</pattern>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Colorize"
|
||||
id="filter49166-5-7-3-3">
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="SourceGraphic"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
id="feComposite49152-6-9-3-6" />
|
||||
<feColorMatrix
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1"
|
||||
id="feColorMatrix49154-17-0-7-8" />
|
||||
<feFlood
|
||||
flood-opacity="0.921569"
|
||||
flood-color="rgb(254,159,27)"
|
||||
result="flood1"
|
||||
id="feFlood49156-2-0-9-4" />
|
||||
<feBlend
|
||||
in="flood1"
|
||||
in2="colormatrix1"
|
||||
mode="normal"
|
||||
result="blend1"
|
||||
id="feBlend49158-29-2-4-6" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
mode="normal"
|
||||
result="blend2"
|
||||
id="feBlend49160-2-2-9-6" />
|
||||
<feColorMatrix
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2"
|
||||
id="feColorMatrix49162-8-6-9-7" />
|
||||
<feComposite
|
||||
in="colormatrix2"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="fbSourceGraphic"
|
||||
id="feComposite49164-12-9-1-2" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix51387-4-0-9-7" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite51389-7-3-4-4"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix51391-8-5-2-1"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood51393-6-5-0-0"
|
||||
flood-opacity="0.968627"
|
||||
flood-color="rgb(13,27,229)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend51395-3-8-6-0"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend51397-7-7-5-6"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix51399-7-1-9-4"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite51401-2-7-5-4"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix32703-0-6-3" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite32705-6-1-7"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix32707-0-1-3"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood32709-4-4-4"
|
||||
flood-opacity="1"
|
||||
flood-color="rgb(32,248,248)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend32711-1-3-7"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend32713-3-7-2"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix32715-0-2-1"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite32717-2-7-7"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix32847-3-9" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite32849-3-5"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix32851-9-6"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood32853-2-8"
|
||||
flood-opacity="1"
|
||||
flood-color="rgb(32,107,248)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend32855-4-9"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend32857-4-5"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix32859-4-5"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite32861-9-2"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix33002-9-1" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33004-3-5"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33006-8-9"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood33008-3-9"
|
||||
flood-opacity="1"
|
||||
flood-color="rgb(248,120,32)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend33010-2-1"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend33012-9-6"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33014-5-2"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33016-4-1"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix33018-3-0" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33020-9-5"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33022-4-3"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood33024-9-2"
|
||||
flood-opacity="1"
|
||||
flood-color="rgb(248,173,32)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend33026-5-1"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend33028-5-9"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33030-7-7"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33032-3-6"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix33096-9-8" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33098-0-2"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33100-7-0"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood33102-2-6"
|
||||
flood-opacity="1"
|
||||
flood-color="rgb(248,136,32)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend33104-7-4"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend33106-2-3"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33108-9-3"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33110-0-6"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix33112-5-9" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33114-0-0"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33116-4-4"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood33118-1-8"
|
||||
flood-opacity="1"
|
||||
flood-color="rgb(248,164,32)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend33120-7-5"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend33122-9-1"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33124-3-2"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33126-6-9"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="composite2" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="-178.57143"
|
||||
inkscape:cy="560"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1025"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="28"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata11760">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Calque 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-45.645817)">
|
||||
<path
|
||||
style="display:inline;opacity:0.6;fill:url(#pattern49170-7);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter49166-5-7-3-3);shape-rendering:crispEdges;enable-background:new"
|
||||
d="M 890.36764,94.436508 473.14511,98.701998 195.1429,241.74136 124.85331,641.10691 336.4633,1038.8016 l 781.073,-53.94784 205.5012,-318.19737 50.3489,-249.59886 -248.9324,-271.953 z"
|
||||
id="path49125-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-33.034105,22.150413)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,479 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1250"
|
||||
height="950"
|
||||
viewBox="0 0 330.72916 251.35417"
|
||||
version="1.1"
|
||||
id="svg11763"
|
||||
inkscape:version="0.92.0 r"
|
||||
sodipodi:docname="fond-theme-1.svg"
|
||||
inkscape:export-filename="/home/bach/Sites/clameurs.org/sites/all/themes/figureslibres/clameurs/images/fond-theme-0.png"
|
||||
inkscape:export-xdpi="72"
|
||||
inkscape:export-ydpi="72">
|
||||
<defs
|
||||
id="defs11757">
|
||||
<pattern
|
||||
inkscape:collect="always"
|
||||
xlink:href="#Wavy-4-4"
|
||||
id="pattern49170-7"
|
||||
patternTransform="matrix(1.0398782,0.77266377,-0.49581233,0.66728175,134.21514,10.824178)" />
|
||||
<pattern
|
||||
inkscape:stockid="Wavy"
|
||||
id="Wavy-4-4"
|
||||
height="5.1805778"
|
||||
width="30.066020"
|
||||
patternUnits="userSpaceOnUse"
|
||||
inkscape:collect="always"
|
||||
inkscape:isstock="true">
|
||||
<path
|
||||
id="path7533-3"
|
||||
d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
|
||||
style="fill:black;stroke:none;" />
|
||||
</pattern>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Colorize"
|
||||
id="filter49166-5-7-3-3">
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="SourceGraphic"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
id="feComposite49152-6-9-3-6" />
|
||||
<feColorMatrix
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1"
|
||||
id="feColorMatrix49154-17-0-7-8" />
|
||||
<feFlood
|
||||
flood-opacity="0.921569"
|
||||
flood-color="rgb(254,159,27)"
|
||||
result="flood1"
|
||||
id="feFlood49156-2-0-9-4" />
|
||||
<feBlend
|
||||
in="flood1"
|
||||
in2="colormatrix1"
|
||||
mode="normal"
|
||||
result="blend1"
|
||||
id="feBlend49158-29-2-4-6" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
mode="normal"
|
||||
result="blend2"
|
||||
id="feBlend49160-2-2-9-6" />
|
||||
<feColorMatrix
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2"
|
||||
id="feColorMatrix49162-8-6-9-7" />
|
||||
<feComposite
|
||||
in="colormatrix2"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="fbSourceGraphic"
|
||||
id="feComposite49164-12-9-1-2" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix51387-4-0-9-7" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite51389-7-3-4-4"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix51391-8-5-2-1"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood51393-6-5-0-0"
|
||||
flood-opacity="0.968627"
|
||||
flood-color="rgb(13,27,229)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend51395-3-8-6-0"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend51397-7-7-5-6"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix51399-7-1-9-4"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite51401-2-7-5-4"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix32703-0-6-3" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite32705-6-1-7"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix32707-0-1-3"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood32709-4-4-4"
|
||||
flood-opacity="1"
|
||||
flood-color="rgb(32,248,248)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend32711-1-3-7"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend32713-3-7-2"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix32715-0-2-1"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite32717-2-7-7"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix32847-3-9" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite32849-3-5"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix32851-9-6"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood32853-2-8"
|
||||
flood-opacity="1"
|
||||
flood-color="rgb(32,107,248)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend32855-4-9"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend32857-4-5"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix32859-4-5"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite32861-9-2"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix33002-9-1" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33004-3-5"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33006-8-9"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood33008-3-9"
|
||||
flood-opacity="1"
|
||||
flood-color="rgb(248,120,32)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend33010-2-1"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend33012-9-6"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33014-5-2"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33016-4-1"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix33018-3-0" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33020-9-5"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33022-4-3"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood33024-9-2"
|
||||
flood-opacity="1"
|
||||
flood-color="rgb(248,173,32)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend33026-5-1"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend33028-5-9"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33030-7-7"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33032-3-6"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix33096-9-8" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33098-0-2"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33100-7-0"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood33102-2-6"
|
||||
flood-opacity="1"
|
||||
flood-color="rgb(248,136,32)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend33104-7-4"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend33106-2-3"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33108-9-3"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33110-0-6"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
result="fbSourceGraphicAlpha"
|
||||
in="fbSourceGraphic"
|
||||
values="0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"
|
||||
id="feColorMatrix33112-5-9" />
|
||||
<feComposite
|
||||
k4="0"
|
||||
k3="0"
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33114-0-0"
|
||||
operator="arithmetic"
|
||||
k1="0"
|
||||
k2="1"
|
||||
result="composite1"
|
||||
in="fbSourceGraphic" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33116-4-4"
|
||||
in="composite1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix1" />
|
||||
<feFlood
|
||||
id="feFlood33118-1-8"
|
||||
flood-opacity="1"
|
||||
flood-color="rgb(248,164,32)"
|
||||
result="flood1" />
|
||||
<feBlend
|
||||
in2="colormatrix1"
|
||||
id="feBlend33120-7-5"
|
||||
in="flood1"
|
||||
mode="normal"
|
||||
result="blend1" />
|
||||
<feBlend
|
||||
in2="blend1"
|
||||
id="feBlend33122-9-1"
|
||||
mode="normal"
|
||||
result="blend2" />
|
||||
<feColorMatrix
|
||||
id="feColorMatrix33124-3-2"
|
||||
in="blend2"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="colormatrix2" />
|
||||
<feComposite
|
||||
in2="fbSourceGraphic"
|
||||
id="feComposite33126-6-9"
|
||||
in="colormatrix2"
|
||||
operator="in"
|
||||
result="composite2" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="-178.57143"
|
||||
inkscape:cy="560"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1025"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="28"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata11760">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Calque 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-45.645817)">
|
||||
<path
|
||||
style="display:inline;opacity:0.6;fill:url(#pattern49170-7);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter49166-5-7-3-3);shape-rendering:crispEdges;enable-background:new"
|
||||
d="M 890.36764,94.436508 473.14511,98.701998 195.1429,241.74136 124.85331,641.10691 336.4633,1038.8016 l 781.073,-53.94784 205.5012,-318.19737 50.3489,-249.59886 -248.9324,-271.953 z"
|
||||
id="path49125-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-33.034105,22.150413)" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 66 KiB |
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 113 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 457 B |
@@ -25,7 +25,7 @@ if ($vars['site_name']) {
|
||||
// $site_fields[] = check_plain($vars['site_slogan']);
|
||||
// }
|
||||
|
||||
$vars['site_title'] = '<h1>'. implode(' ', $site_fields) .'</h1>';
|
||||
$vars['site_title'] = implode(' ', $site_fields);
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user