déploiement resources
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
@charset "UTF-8";
|
||||
@import url(//fonts.googleapis.com/css?family=Montserrat:400|Raleway:300,400,600|Inconsolata);
|
||||
#header #logo h3, #header #navbar .panel-activation, #footer p {
|
||||
position: relative;
|
||||
@@ -798,6 +799,16 @@ ul.pagination {
|
||||
#body > script:first-child + .grav-lightslider {
|
||||
margin-top: -3rem; }
|
||||
|
||||
#sb-site {
|
||||
background: none !important; }
|
||||
#sb-site #body {
|
||||
background: none !important;
|
||||
padding-bottom: 2rem !important; }
|
||||
|
||||
#header.scrolled {
|
||||
padding-left: 2rem;
|
||||
padding-right: 2rem; }
|
||||
|
||||
#header #navbar ul.navigation li a {
|
||||
font-family: "Sarabun", sans-serif;
|
||||
font-weight: 400;
|
||||
@@ -828,6 +839,11 @@ ul.pagination {
|
||||
padding: 0.5rem;
|
||||
max-height: 3rem;
|
||||
margin: auto; }
|
||||
#logo #gouv {
|
||||
padding-right: 4rem; }
|
||||
|
||||
#body p:empty {
|
||||
display: none; }
|
||||
|
||||
.callout {
|
||||
padding-top: 0.5rem; }
|
||||
@@ -880,31 +896,8 @@ ul.pagination {
|
||||
padding-top: 8rem;
|
||||
padding-bottom: 8rem; }
|
||||
|
||||
.paralax {
|
||||
position: absolute !important;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between; }
|
||||
.paralax #photo1 {
|
||||
position: relative;
|
||||
top: -60px; }
|
||||
.paralax #photo2 {
|
||||
z-index: 0;
|
||||
width: 700px !important;
|
||||
position: relative;
|
||||
top: 260px; }
|
||||
.paralax #photo3 {
|
||||
z-index: 0;
|
||||
width: 700px !important;
|
||||
position: relative;
|
||||
top: 500px; }
|
||||
.paralax #photo4 {
|
||||
z-index: 0;
|
||||
width: 700px !important;
|
||||
position: relative;
|
||||
top: 300px; }
|
||||
.parallax-window {
|
||||
background: transparent; }
|
||||
|
||||
.programme {
|
||||
z-index: 1;
|
||||
@@ -920,7 +913,8 @@ ul.pagination {
|
||||
.programme p {
|
||||
font-family: "Sarabun", sans-serif;
|
||||
font-weight: 500;
|
||||
font-style: italic; }
|
||||
font-style: italic;
|
||||
padding-bottom: 1.5rem; }
|
||||
|
||||
.programme:hover {
|
||||
background-color: #000;
|
||||
@@ -930,6 +924,42 @@ ul.pagination {
|
||||
.programme:hover h4 {
|
||||
color: #fff; }
|
||||
|
||||
/*CSS pour afficher/masquer un texte via un bouton*/
|
||||
/*Style du module TEXTE*/
|
||||
.texte-cache {
|
||||
position: relative;
|
||||
max-height: 400px;
|
||||
/*Hauteur du texte visible avant le clic*/
|
||||
overflow: hidden;
|
||||
/*On cache tout ce qui dépasse des 500px*/
|
||||
transition: max-height 1s ease;
|
||||
/* Transition CSS entre l'ouverture et la fermeture*/ }
|
||||
|
||||
/*Style du module TEXTE lorsqu'il est ouvert*/
|
||||
.texte-cache.ouvert {
|
||||
max-height: 100vh;
|
||||
/* On lui définit une hauteur max de tout l'écran si nécessaire pour qu'il affiche tout son contenu*/ }
|
||||
|
||||
/*On stylise l'effet de flou lorsque le module TEXTE est fermé, donc il n'a pas la classe "ouvert"*/
|
||||
.texte-cache:not(.ouvert)::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 400px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0; }
|
||||
|
||||
.bouton-ouverture {
|
||||
position: relative;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
border: solid;
|
||||
background-color: transparent;
|
||||
text-transform: uppercase;
|
||||
left: 45%;
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 5rem; }
|
||||
|
||||
.gouvernance {
|
||||
background-color: #000;
|
||||
color: #ffffff;
|
||||
@@ -938,13 +968,17 @@ ul.pagination {
|
||||
padding-top: 2rem; }
|
||||
|
||||
.mozaique_personnes {
|
||||
background-color: #d5d2d1; }
|
||||
background-color: #d5d2d1;
|
||||
padding-bottom: 4rem; }
|
||||
.mozaique_personnes .equipe {
|
||||
display: flex !important;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
width: 54%;
|
||||
margin: auto; }
|
||||
width: 100%;
|
||||
padding-left: 22%;
|
||||
padding-right: 15%;
|
||||
margin: auto;
|
||||
justify-items: center; }
|
||||
.mozaique_personnes .equipe h3 {
|
||||
padding-top: 3rem;
|
||||
min-width: 100%;
|
||||
@@ -1006,7 +1040,7 @@ ul.pagination {
|
||||
background-color: transparent;
|
||||
text-transform: uppercase;
|
||||
align-self: flex-end;
|
||||
margin-right: 2rem; }
|
||||
margin: auto; }
|
||||
|
||||
.modal {
|
||||
position: fixed;
|
||||
@@ -1042,6 +1076,56 @@ ul.pagination {
|
||||
.modal .container a.close:hover {
|
||||
color: black; }
|
||||
|
||||
#new-footer {
|
||||
display: flex;
|
||||
flex-direction: column; }
|
||||
#new-footer .tothetop {
|
||||
position: absolute;
|
||||
height: 1rem;
|
||||
bottom: 16rem;
|
||||
text-align: center;
|
||||
left: 0;
|
||||
right: 0; }
|
||||
#new-footer .tothetop span {
|
||||
font-size: 1.7rem;
|
||||
line-height: 2,5rem;
|
||||
background: #fff;
|
||||
width: 4rem;
|
||||
height: 5rem;
|
||||
border-radius: 3px;
|
||||
display: inline-block;
|
||||
text-align: top; }
|
||||
#new-footer .footer {
|
||||
display: flex;
|
||||
flex-direction: row; }
|
||||
#new-footer .footer .footer-logos {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
width: 70%;
|
||||
align-items: center;
|
||||
margin-left: 3rem; }
|
||||
#new-footer .footer .footer-logos img {
|
||||
min-height: 4rem;
|
||||
max-height: 4rem;
|
||||
padding-right: 1rem; }
|
||||
#new-footer .footer .contact {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 30%;
|
||||
margin-top: 1.5rem;
|
||||
align-items: flex-start; }
|
||||
#new-footer .footer .contact img {
|
||||
margin-bottom: 1rem;
|
||||
max-height: 2rem; }
|
||||
#new-footer .footer .contact svg {
|
||||
margin-bottom: 1rem; }
|
||||
#new-footer .footer .contact h6 {
|
||||
margin: 0 !important;
|
||||
font-weight: 600; }
|
||||
#new-footer .footer .contact p {
|
||||
margin: 0; }
|
||||
|
||||
.modular.header-image #header {
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
box-shadow: none; }
|
||||
|
||||
Reference in New Issue
Block a user