823 lines
No EOL
16 KiB
CSS
823 lines
No EOL
16 KiB
CSS
@charset "UTF-8";
|
||
:root {
|
||
--font-title: "Borna", Arial, sans-serif;
|
||
--font: "Nunito", Arial, sans-serif;
|
||
--fs-small: 11px;
|
||
--fs-normal: 14px;
|
||
font-size: 14px;
|
||
--unit: 24px;
|
||
--padding-body: 32px;
|
||
--padding-inner: 16px;
|
||
--radius-small: 3px;
|
||
--radius-btn: 6px;
|
||
--header-h: 60px;
|
||
--white: white;
|
||
--color-bg: white;
|
||
--color-violet: #6e62a4;
|
||
--color-violet-medium: #9b92c4;
|
||
--color-violet-light: #e1dfec;
|
||
--color-yellow: #c4a233;
|
||
--color-yellow-medium: #e0c46a;
|
||
--color-yellow-light: #f5f0d5;
|
||
--color-map: #ad8422;
|
||
--color-blue: #0f70c0;
|
||
--color-blue-medium: #5aa0da;
|
||
--color-blue-light: #d1e5f7;
|
||
--color-orange: #f17f2d;
|
||
--color-orange-medium: #f3a066;
|
||
--color-orange-light: #f3e7e0;
|
||
--color-green: #007953;
|
||
--color-green-medium: #a1ccbe;
|
||
--color-green-light: #d5ebe4;
|
||
--color-green-black: #016042;
|
||
--color-txt: rgb(41, 41, 41);
|
||
--color-txt-light: #a5a9a9;
|
||
--color-light: #DCDDDD;
|
||
--color-x-light: #eaebeb;
|
||
--color: var(--color-green);
|
||
--color-medium: var(--color-green-medium);
|
||
--color-light: var(--color-green-light);
|
||
}
|
||
|
||
[data-type=livret] {
|
||
--color: var(--color-violet);
|
||
--color-medium: var(--color-violet-medium);
|
||
--color-light: var(--color-violet-light);
|
||
}
|
||
|
||
[data-type=base-connaissance] {
|
||
--color: var(--color-yellow);
|
||
--color-medium: var(--color-yellow-medium);
|
||
--color-light: var(--color-yellow-light);
|
||
}
|
||
|
||
[data-type=atelier] {
|
||
--color: var(--color-orange);
|
||
--color-medium: var(--color-orange-medium);
|
||
--color-light: var(--color-orange-light);
|
||
}
|
||
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-font-smoothing: antialiased;
|
||
-o-font-smoothing: antialiased;
|
||
scroll-behavior: smooth;
|
||
}
|
||
|
||
body {
|
||
font-family: var(--font);
|
||
font-size: var(--fs-normal);
|
||
line-height: 1.2;
|
||
color: var(--color-text);
|
||
/* -webkit-print-color-adjust:exact !important;
|
||
print-color-adjust:exact !important; */
|
||
}
|
||
|
||
main {
|
||
min-height: calc(100vh - var(--header-h));
|
||
margin-top: var(--header-h);
|
||
/* padding: var(--padding-body); */
|
||
}
|
||
|
||
button {
|
||
background: none;
|
||
border: none;
|
||
}
|
||
|
||
#site-header {
|
||
height: var(--header-h);
|
||
width: 100vw;
|
||
background-color: var(--white);
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding: 0 var(--padding-body);
|
||
gap: calc(var(--unit) * 2);
|
||
}
|
||
#site-header a {
|
||
text-decoration: none;
|
||
}
|
||
#site-header h1 {
|
||
font-family: var(--font-title);
|
||
color: var(--color-txt);
|
||
text-decoration: none;
|
||
font-size: 1.2rem;
|
||
}
|
||
|
||
#site-header ul {
|
||
list-style: none;
|
||
}
|
||
|
||
/*----------------*/
|
||
/* search bar */
|
||
/*----------------*/
|
||
.search {
|
||
display: flex;
|
||
flex-direction: row-reverse;
|
||
height: calc(var(--unit) * 1.5);
|
||
flex-grow: 2;
|
||
}
|
||
|
||
.search__toggle {
|
||
display: none;
|
||
}
|
||
|
||
.search__label {
|
||
cursor: pointer;
|
||
-webkit-user-select: none;
|
||
-moz-user-select: none;
|
||
user-select: none;
|
||
width: calc(var(--unit) * 1.5);
|
||
height: calc(var(--unit) * 1.5);
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
}
|
||
|
||
.search__input {
|
||
display: none;
|
||
}
|
||
|
||
.search__icon {
|
||
width: var(--unit);
|
||
}
|
||
|
||
.search__icon--open {
|
||
display: block;
|
||
}
|
||
|
||
.search__icon--close {
|
||
display: none;
|
||
}
|
||
|
||
.search__toggle:checked ~ .search__input {
|
||
display: block;
|
||
}
|
||
|
||
.search__toggle:checked ~ .search__label .search__icon--open {
|
||
display: none;
|
||
}
|
||
|
||
.search__toggle:checked ~ .search__label .search__icon--close {
|
||
display: block;
|
||
}
|
||
|
||
#btn__connexion {
|
||
font-weight: 500;
|
||
font-size: 1rem;
|
||
background-color: var(--color-txt);
|
||
color: white;
|
||
display: inline-flex;
|
||
align-items: center;
|
||
height: calc(var(--unit) * 1.25);
|
||
padding: 0px 1ch;
|
||
border-radius: var(--radius-btn);
|
||
cursor: pointer;
|
||
}
|
||
|
||
#site-nav a {
|
||
text-decoration: none;
|
||
color: currentColor;
|
||
}
|
||
|
||
#site-nav li {
|
||
font-weight: 500;
|
||
color: var(--color-txt);
|
||
}
|
||
|
||
.arrow {
|
||
--size: 12px;
|
||
height: var(--size);
|
||
width: var(--size);
|
||
position: relative;
|
||
top: 2px;
|
||
display: inline-block;
|
||
}
|
||
.arrow svg {
|
||
height: var(--size);
|
||
width: var(--size);
|
||
transform: rotate(0deg);
|
||
transform-origin: center;
|
||
transition: transform 0.2s ease-in-out;
|
||
fill: var(--color-txt);
|
||
}
|
||
|
||
#site-nav .nav-level-1_ul {
|
||
display: flex;
|
||
gap: calc(var(--padding-inner) * 2);
|
||
}
|
||
|
||
#site-nav .nav-level-1_li {
|
||
display: block;
|
||
/* float: left; */
|
||
padding: var(--padding-inner);
|
||
position: relative;
|
||
text-decoration: none;
|
||
}
|
||
#site-nav .nav-level-1_li:hover {
|
||
color: var(--color);
|
||
}
|
||
#site-nav .nav-level-1_li:hover .arrow svg {
|
||
transform: rotate(90deg);
|
||
fill: var(--color);
|
||
}
|
||
|
||
#site-nav li:hover {
|
||
cursor: pointer;
|
||
}
|
||
|
||
.nav-level-2_ul {
|
||
visibility: hidden;
|
||
opacity: 0;
|
||
position: absolute;
|
||
left: 0;
|
||
display: none;
|
||
border-top: 1px solid var(--color);
|
||
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
||
margin-top: var(--padding-inner);
|
||
min-width: 24ch;
|
||
}
|
||
|
||
.nav-level-1_ul li:hover > .nav-level-2_ul,
|
||
.nav-level-2_ul:hover {
|
||
visibility: visible;
|
||
opacity: 1;
|
||
display: block;
|
||
}
|
||
|
||
.nav-level-2_li {
|
||
width: 100%;
|
||
padding: calc(var(--padding-inner) * 0.75) var(--padding-inner);
|
||
}
|
||
|
||
.nav-level-2_li:hover {
|
||
background-color: var(--color-light);
|
||
}
|
||
|
||
#site-footer {
|
||
background-color: var(--color-x-light);
|
||
min-height: 200px;
|
||
padding: var(--padding-body);
|
||
}
|
||
|
||
.btn--solid {
|
||
font-weight: 600;
|
||
font-size: 1.2rem;
|
||
background-color: var(--color);
|
||
color: var(--white);
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
height: calc(var(--unit) * 1.5);
|
||
border-radius: var(--radius-btn);
|
||
cursor: pointer;
|
||
}
|
||
.btn--solid a {
|
||
color: white;
|
||
text-decoration: none;
|
||
padding: 0px 1ch;
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
|
||
.see-more {
|
||
--hover-bg: var(--color-bg);
|
||
font-weight: 500;
|
||
color: var(--color-txt);
|
||
color: currentColor;
|
||
text-decoration: none;
|
||
}
|
||
.see-more span {
|
||
display: none;
|
||
}
|
||
.see-more::after {
|
||
content: "→";
|
||
position: relative;
|
||
display: inline-block;
|
||
padding-left: 0.75ch;
|
||
left: 0;
|
||
transition: left 0.4s ease-in-out;
|
||
}
|
||
.see-more:hover {
|
||
text-decoration: underline;
|
||
}
|
||
.see-more:hover::after {
|
||
left: 0.5ch;
|
||
-webkit-text-decoration: underline var(--hover-bg);
|
||
text-decoration: underline var(--hover-bg);
|
||
}
|
||
|
||
.slideshow {
|
||
height: 100%;
|
||
width: 100%;
|
||
margin-left: 0;
|
||
overflow: visible;
|
||
--arrow-space: 40px;
|
||
}
|
||
.slideshow * {
|
||
position: relative;
|
||
}
|
||
|
||
.slideshow-container {
|
||
height: 100%;
|
||
width: 100%;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.slideshow-inner {
|
||
width: calc(100% * var(--items));
|
||
height: 100%;
|
||
}
|
||
|
||
.slideshow-item {
|
||
width: calc(100% / var(--items));
|
||
height: 100%;
|
||
float: left;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
.slideshow-item figure {
|
||
width: calc(100% - var(--arrow-space) * 2);
|
||
height: calc(100% - var(--unit));
|
||
}
|
||
.slideshow-item figure img {
|
||
width: 100%;
|
||
height: 100%;
|
||
-o-object-fit: cover;
|
||
object-fit: cover;
|
||
}
|
||
.slideshow-item figcaption {
|
||
width: calc(100% - var(--arrow-space) * 2);
|
||
font-size: var(--fs-small);
|
||
height: calc(var(--unit) * 2);
|
||
padding-top: calc(var(--padding-inner) * 0.5);
|
||
}
|
||
|
||
/* Display slides (input checked)
|
||
--------------------------------------------------------
|
||
-------------------------------------------------------- */
|
||
.slideshow-inner {
|
||
transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
|
||
transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
|
||
}
|
||
|
||
.slideshow-item {
|
||
transition: all 0.5s ease-out;
|
||
}
|
||
|
||
/* Controls (arrows)
|
||
--------------------------------------------------------
|
||
-------------------------------------------------------- */
|
||
.slideshow-controls {
|
||
position: absolute;
|
||
top: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
|
||
.slide_controls {
|
||
width: 40px;
|
||
height: 100%;
|
||
position: absolute;
|
||
top: 0;
|
||
cursor: pointer;
|
||
will-change: z-index;
|
||
}
|
||
|
||
.slide_controls-previous {
|
||
left: 0;
|
||
}
|
||
|
||
.slide_controls-next {
|
||
right: 0;
|
||
}
|
||
|
||
span.controls {
|
||
height: 100%;
|
||
position: absolute;
|
||
width: 100%;
|
||
}
|
||
|
||
span.controls::before,
|
||
span.controls::after {
|
||
padding: 10px;
|
||
top: 50%;
|
||
transform: translateY(-50%);
|
||
position: absolute;
|
||
font-size: 20px;
|
||
z-index: 9;
|
||
}
|
||
|
||
.slide_controls-previous:hover ~ span.controls:before,
|
||
.slide_controls-next:hover ~ span.controls:after {
|
||
opacity: 0.7;
|
||
}
|
||
|
||
span.controls::before {
|
||
content: "❬";
|
||
left: -1px;
|
||
}
|
||
|
||
span.controls::after {
|
||
content: "❭";
|
||
right: -1px;
|
||
}
|
||
|
||
/* Position slide + Control arrows display -------------------------------------------- */
|
||
#slide-input-1:checked ~ .slideshow-inner {
|
||
left: 0%;
|
||
}
|
||
|
||
#slide-input-2:checked ~ .slideshow-inner {
|
||
left: -100%;
|
||
}
|
||
|
||
#slide-input-3:checked ~ .slideshow-inner {
|
||
left: -200%;
|
||
}
|
||
|
||
#slide-input-1:checked ~ .slideshow-controls label {
|
||
z-index: -1;
|
||
}
|
||
|
||
#slide-input-1:checked ~ .slideshow-controls label:nth-of-type(1),
|
||
#slide-input-1:checked ~ .slideshow-controls label:nth-of-type(2) {
|
||
z-index: 11;
|
||
}
|
||
|
||
#slide-input-2:checked ~ .slideshow-controls label {
|
||
z-index: -1;
|
||
}
|
||
|
||
#slide-input-2:checked ~ .slideshow-controls label:nth-of-type(3),
|
||
#slide-input-2:checked ~ .slideshow-controls label:nth-of-type(4) {
|
||
z-index: 11;
|
||
}
|
||
|
||
#slide-input-3:checked ~ .slideshow-controls label {
|
||
z-index: -1;
|
||
}
|
||
|
||
#slide-input-3:checked ~ .slideshow-controls label:nth-of-type(5),
|
||
#slide-input-3:checked ~ .slideshow-controls label:nth-of-type(6) {
|
||
z-index: 11;
|
||
}
|
||
|
||
.item-nav {
|
||
border: 1px solid var(--color-txt-light);
|
||
border-radius: var(--radius-small);
|
||
background-color: var(--white);
|
||
padding: var(--padding-inner);
|
||
padding-bottom: calc(var(--padding-inner) * 0.5);
|
||
min-height: calc(var(--unit) * 5);
|
||
max-width: 440px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
cursor: pointer;
|
||
}
|
||
.item-nav .title {
|
||
font-family: var(--font-title);
|
||
font-size: 1.4rem;
|
||
line-height: 1.1;
|
||
padding-right: 1ch;
|
||
font-weight: normal;
|
||
}
|
||
.item-nav .btn--go-to {
|
||
width: var(--unit);
|
||
height: var(--unit);
|
||
align-self: end;
|
||
font-family: var(--font-title);
|
||
position: relative;
|
||
font-size: 14px;
|
||
left: calc(var(--unit) * -0.25);
|
||
transition: left 0.4s ease-in-out;
|
||
}
|
||
.item-nav .description {
|
||
margin-top: 0.5em;
|
||
flex-grow: 2;
|
||
padding-right: 2ch;
|
||
}
|
||
.item-nav:hover {
|
||
border-color: var(--color-txt);
|
||
}
|
||
.item-nav:hover .btn--go-to {
|
||
left: calc(var(--unit) * 0.25);
|
||
}
|
||
|
||
#home__livrets {
|
||
--color: var(--color-violet);
|
||
--color-medium: var(--color-violet-medium);
|
||
--color-light: var(--color-violet-light);
|
||
background-color: var(--color-medium);
|
||
}
|
||
|
||
#home__base-connaissance {
|
||
--color: var(--color-yellow);
|
||
--color-medium: var(--color-yellow-medium);
|
||
--color-light: var(--color-yellow-light);
|
||
background-color: var(--color-medium);
|
||
}
|
||
|
||
#home__ateliers {
|
||
--color: var(--color-orange);
|
||
--color-medium: var(--color-orange-medium);
|
||
--color-light: var(--color-orange-light);
|
||
background-color: var(--color);
|
||
}
|
||
|
||
#main_home section {
|
||
padding: calc(var(--unit) * 3) var(--padding-body);
|
||
}
|
||
#main_home section .section--inner {
|
||
max-width: 1100px;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.item-nav__group {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: var(--unit);
|
||
}
|
||
|
||
.section--title {
|
||
font-size: 2.8rem;
|
||
font-family: var(--font-title);
|
||
margin-bottom: calc(var(--unit) * 3);
|
||
}
|
||
|
||
.slideshow {
|
||
width: 100%;
|
||
height: calc(var(--unit) * 13);
|
||
}
|
||
.slideshow figure {
|
||
height: calc(var(--unit) * 11);
|
||
}
|
||
|
||
.highlight-block {
|
||
background-color: var(--color);
|
||
border: 1px solid var(--color-txt-light);
|
||
border-radius: var(--radius-small);
|
||
padding: calc(var(--padding-inner) * 1.5) var(--padding-inner);
|
||
width: 100%;
|
||
height: 100%;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
gap: var(--unit);
|
||
}
|
||
.highlight-block figure {
|
||
width: 100%;
|
||
max-width: 160px;
|
||
aspect-ratio: 4/5;
|
||
border: 1px solid var(--color-medium);
|
||
border-radius: var(--radius-small);
|
||
overflow: hidden;
|
||
}
|
||
.highlight-block figure img {
|
||
width: 100%;
|
||
height: 100%;
|
||
-o-object-fit: cover;
|
||
object-fit: cover;
|
||
}
|
||
.highlight-block .label {
|
||
font-weight: 600;
|
||
margin-bottom: calc(var(--unit) * 0.5);
|
||
/* text-decoration: 1px underline;
|
||
text-underline-offset: 3px; */
|
||
color: var(--color);
|
||
display: inline-flex;
|
||
align-items: center;
|
||
background-color: var(--color-light);
|
||
height: var(--unit);
|
||
padding: 0px 1ch;
|
||
border-radius: var(--radius-btn);
|
||
}
|
||
.highlight-block .title {
|
||
font-family: var(--font-title);
|
||
font-size: 1.4rem;
|
||
font-weight: normal;
|
||
margin-top: 0.5em;
|
||
margin-bottom: 0.25em;
|
||
color: var(--color-light);
|
||
}
|
||
.highlight-block .details {
|
||
margin-bottom: calc(var(--unit) * 0.75);
|
||
color: var(--color-light);
|
||
font-weight: 500;
|
||
}
|
||
.highlight-block .content {
|
||
position: relative;
|
||
}
|
||
.highlight-block .see-more {
|
||
position: absolute;
|
||
bottom: 0;
|
||
font-size: var(--fs-small);
|
||
--hover-bg: var(--color);
|
||
}
|
||
|
||
.home--section-tool .section--inner {
|
||
display: grid;
|
||
grid-template-columns: 4fr 5fr;
|
||
-moz-column-gap: calc(var(--unit) * 3);
|
||
column-gap: calc(var(--unit) * 3);
|
||
}
|
||
.home--section-tool .section--inner .section--title {
|
||
grid-column: 1/end;
|
||
width: 100%;
|
||
}
|
||
.home--section-tool .section--inner .item-nav {
|
||
grid-column: 1;
|
||
}
|
||
.home--section-tool .section--inner .highlight-block, .home--section-tool .section--inner .slideshow {
|
||
grid-column: 2;
|
||
grid-row: 2;
|
||
}
|
||
|
||
#home__hero {
|
||
margin-bottom: 0;
|
||
padding-bottom: calc(var(--unit) * 1.5) !important;
|
||
/* button{ display: none;} */
|
||
}
|
||
#home__hero .section--inner {
|
||
display: block;
|
||
text-align: center;
|
||
width: 100%;
|
||
max-width: 100%;
|
||
}
|
||
#home__hero .section--title {
|
||
font-size: 3.6em;
|
||
margin-bottom: calc(var(--unit) * 1.5);
|
||
color: var(--color);
|
||
}
|
||
#home__hero .description {
|
||
font-size: 1.6rem;
|
||
max-width: 48ch;
|
||
margin: 0 auto;
|
||
margin-bottom: calc(var(--unit) * 1.5);
|
||
}
|
||
#home__hero .search--container {
|
||
display: none;
|
||
}
|
||
#home__hero .nav-hero {
|
||
list-style: none;
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: var(--unit);
|
||
margin-top: calc(var(--unit) * 1);
|
||
margin-bottom: calc(var(--unit) * 3);
|
||
}
|
||
#home__hero .nav-hero li {
|
||
font-weight: 500;
|
||
font-size: 1rem;
|
||
min-width: 12ch;
|
||
text-align: center;
|
||
border: 1.5px solid var(--color);
|
||
color: var(--color);
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
height: calc(var(--unit) * 1.5);
|
||
padding: 0px 1.5ch;
|
||
border-radius: var(--radius-btn);
|
||
cursor: pointer;
|
||
}
|
||
#home__hero .nav-hero li:hover {
|
||
background-color: var(--color-light);
|
||
}
|
||
#home__hero .nav-hero a {
|
||
text-decoration: none;
|
||
color: var(--color);
|
||
font-weight: bold;
|
||
/* &::after{
|
||
content: " ↓"
|
||
} */
|
||
}
|
||
#home__hero .see-more {
|
||
display: block;
|
||
padding-top: calc(var(--unit) * 1.5);
|
||
}
|
||
|
||
#home__a-propos p, #home__a-propos li {
|
||
font-size: 1.6rem;
|
||
margin-bottom: 1em;
|
||
position: relative;
|
||
}
|
||
#home__a-propos p strong, #home__a-propos li strong {
|
||
color: var(--color-green);
|
||
}
|
||
#home__a-propos ol li::marker {
|
||
display: none;
|
||
content: "";
|
||
}
|
||
#home__a-propos ol {
|
||
padding-left: 5ch;
|
||
counter-reset: ol;
|
||
}
|
||
#home__a-propos ol li {
|
||
counter-increment: ol 1;
|
||
position: relative;
|
||
}
|
||
#home__a-propos ol li::before {
|
||
font-size: 1.2rem;
|
||
font-weight: bold;
|
||
content: counter(ol);
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
width: 2ch;
|
||
height: 2ch;
|
||
border-radius: 50%;
|
||
border: 2px solid var(--color-green);
|
||
color: var(--color-green);
|
||
background-color: var(--color-green-light);
|
||
position: absolute;
|
||
left: -4ch;
|
||
top: 4px;
|
||
}
|
||
#home__a-propos .btn--solid {
|
||
margin-top: calc(var(--unit) * 2);
|
||
}
|
||
|
||
.container-logos {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
align-items: center;
|
||
gap: 40px 60px;
|
||
}
|
||
|
||
.container-logos .logo {
|
||
width: 200px;
|
||
height: 60px;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.container-logos .logo > * {
|
||
max-width: 100%;
|
||
max-height: 100%;
|
||
width: auto;
|
||
height: auto;
|
||
-o-object-fit: contain;
|
||
object-fit: contain;
|
||
}
|
||
|
||
.container-logos .logo img,
|
||
.container-logos .logo svg {
|
||
max-width: 100%;
|
||
max-height: 100%;
|
||
width: auto;
|
||
height: auto;
|
||
-o-object-fit: contain;
|
||
object-fit: contain;
|
||
}
|
||
|
||
#logo-inria {
|
||
width: 150px;
|
||
}
|
||
|
||
#logo-cnrs {
|
||
width: 90px;
|
||
height: 80px;
|
||
}
|
||
|
||
#logo-sorbonne {
|
||
height: 65px;
|
||
width: 160px;
|
||
}
|
||
|
||
#logo-saclay {
|
||
width: 160px;
|
||
transform: translateY(-10px);
|
||
}
|
||
|
||
#logo-rennes {
|
||
width: 81px;
|
||
height: 90px;
|
||
}
|
||
|
||
#logo-plantagroeco {
|
||
width: 220px;
|
||
}
|
||
|
||
#logo-SBF {
|
||
width: 146px;
|
||
height: 120px;
|
||
}
|
||
|
||
#logo-upec {
|
||
width: 161px;
|
||
height: 70px;
|
||
}
|
||
|
||
#logo-paris {
|
||
width: 80px;
|
||
height: 70px;
|
||
}/*# sourceMappingURL=style.css.map */ |