153 lines
2.5 KiB
CSS
153 lines
2.5 KiB
CSS
* {
|
|
filter: grayscale(100%);
|
|
transition: filter 15s;
|
|
}
|
|
*:hover {
|
|
filter: grayscale(0%);
|
|
transition: filter .4s;
|
|
}
|
|
body {
|
|
font-family: Sigoil, Space-Grotesk, 'Arial', 'Helvetica', sans-serif;
|
|
font-weight: normal;
|
|
width: 100vw;
|
|
|
|
background-color: black;
|
|
color: orange;
|
|
|
|
}
|
|
#main {
|
|
display: flex;
|
|
|
|
}
|
|
h1, h2, h3, h4, h5, h6, h7, h8 {
|
|
|
|
font-family: Outward, Space-Grotesk, 'Arial', 'Helvetica', sans-serif;
|
|
|
|
}
|
|
h1 {
|
|
font-family: Outward, 'Arial', 'Helvetica', sans-serif;
|
|
font-size: 48em;
|
|
font-weight: 100;
|
|
font-style: italic;
|
|
/* letter-spacing: -0.1em;*/
|
|
line-height: .75em;
|
|
rotate: -14deg;
|
|
margin: 50px 0 0 10px;
|
|
padding: 0;
|
|
}
|
|
strong {
|
|
font-weight: bold;
|
|
}
|
|
|
|
main {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
#hero {
|
|
margin: 0;
|
|
background-color: purple;
|
|
border-style: double;
|
|
border-color: orange;
|
|
border-width: 10px;
|
|
width: 100%;
|
|
padding:0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* FORMS */
|
|
#newsletter {
|
|
background-color: #000;
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
form.inf-form > div {
|
|
background-color: #000;
|
|
}
|
|
}
|
|
.inf-content {
|
|
background-color: #000;
|
|
}
|
|
.inf-input .inf-input-text {}
|
|
.inf-rgpd {}
|
|
.inf-submit {}
|
|
|
|
/* Profiles */
|
|
#gang {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
article {
|
|
margin:2px;
|
|
flex: 1 1 300px;
|
|
|
|
}
|
|
h2 {
|
|
font-size: 24em;
|
|
/* text-transform: uppercase;*/
|
|
line-height: 1em;
|
|
flex: 1 1 100%;
|
|
}
|
|
p {
|
|
flex: 1 1 100%;
|
|
font-size: 1.5em;
|
|
line-height: 1em;
|
|
}
|
|
|
|
figure {
|
|
padding: 4px;
|
|
margin: auto;
|
|
|
|
|
|
|
|
border-style: double;
|
|
border-color: purple;
|
|
border-width: 10px;
|
|
|
|
img {
|
|
width: 100%;
|
|
object-fit: cover;
|
|
border-style: double;
|
|
border-color: purple;
|
|
border-width: 10px;
|
|
max-height: 300px;
|
|
|
|
}
|
|
|
|
}
|
|
figcaption {
|
|
font-family: Outward, 'Arial', 'Helvetica', sans-serif;
|
|
font-size: 9em;
|
|
line-height: 0.3em;
|
|
height: 100px;
|
|
font-weight: bold;
|
|
/* font-style: italic;*/
|
|
background-color: black;
|
|
color: white;
|
|
padding: 20px;
|
|
text-align: center;
|
|
border-style: double;
|
|
border-color: purple;
|
|
border-width: 10px;
|
|
color: orange;
|
|
z-index: 100;
|
|
position: relative;
|
|
text-decoration: none;
|
|
margin-bottom: 4px;
|
|
text-transform: lowercase;
|
|
}
|
|
.section-headers {
|
|
padding: 80px;
|
|
border-style: double;
|
|
border-color: purple;
|
|
border-width: 10px;
|
|
flex: 1 0 100%;
|
|
max-width: 100%;
|
|
margin-top: 0;
|
|
}
|
|
}
|