142 lines
2.3 KiB
CSS
Executable File
142 lines
2.3 KiB
CSS
Executable File
:root {
|
|
--footer-bg: #191a1c;
|
|
--title-grey: #424242;
|
|
--pavillon-red: #c5141d;
|
|
}
|
|
|
|
* {
|
|
font-family: 'Roboto', sans-serif;
|
|
/*margin: 0 !important;
|
|
padding: 0 !important;*/
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
body {
|
|
background-image: url('img/fond-site.jpg');
|
|
background-size: cover;
|
|
}
|
|
|
|
span {
|
|
color: var(--pavillon-red);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.section-label {
|
|
background-color: var(--pavillon-red);
|
|
color: #FFF;
|
|
padding: 5px 10px;
|
|
margin: 0 auto;
|
|
width: 100px;
|
|
transform: translateY(50%);
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
#story-label {
|
|
width: 225px;
|
|
transform: translateY(50%);
|
|
}
|
|
|
|
header {
|
|
|
|
nav {
|
|
width: 100%;
|
|
background-color: rgba(255, 255, 255, .4);
|
|
padding: 5px 0;
|
|
font-size: 16px;
|
|
font-weight: 300;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
background-color: #FFF;
|
|
color: #000;
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
:first-child {
|
|
margin-right: 15px;
|
|
}
|
|
}
|
|
|
|
img {
|
|
width: 200px;
|
|
margin: 50px 0;
|
|
}
|
|
|
|
.story {
|
|
background-color: #FFF;
|
|
max-width: 650px;
|
|
box-shadow: 0 0 25px 25px rgba(0, 0, 0, .1);
|
|
padding-bottom: 50px;
|
|
margin-bottom: 100px;
|
|
|
|
h2 {
|
|
font-family: 'Lora', serif;
|
|
font-size: 3em;
|
|
padding: 25px;
|
|
}
|
|
}
|
|
}
|
|
|
|
section {
|
|
text-align: center;
|
|
|
|
.section-title {
|
|
background-image: url('img/fond-titre.jpg');
|
|
background-size: cover;
|
|
font-family: 'Lora', serif;
|
|
font-weight: 300;
|
|
font-size: 1.5em;
|
|
text-transform: uppercase;
|
|
padding: 30px 0;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.comp-logos {
|
|
|
|
padding: 25px;
|
|
|
|
img {
|
|
width: 50px;
|
|
margin: 0 10px;
|
|
}
|
|
}
|
|
|
|
.fabulateur {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
img {
|
|
height: 100px;
|
|
}
|
|
}
|
|
|
|
#section-clients {
|
|
|
|
img {
|
|
width: 75px;
|
|
margin: 15px;
|
|
}
|
|
}
|
|
|
|
.content-block {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
footer {
|
|
background-color: var(--footer-bg);
|
|
color: rgba(255, 255, 255, .2);
|
|
font-weight: 200;
|
|
|
|
p {
|
|
margin: 0;
|
|
padding: 10px 0;
|
|
}
|
|
} |