basspistol2025/themes/basspistol2025/assets/css/style.css
2025-05-18 21:28:22 +02:00

137 lines
2 KiB
CSS

/* Root stuff */
* {
filter: grayscale(100%);
transition: filter 17s linear;
scroll-behavior: smooth;
}
*:hover {
filter: grayscale(0%) !important;
transition: filter .1s linear;
}
img {
filter: blur(17px) !important;
}
img:hover {
filter: blur(0px) !important;
}
body {
font-family: Sigoil, Space-Grotesk, 'Arial', 'Helvetica', sans-serif;
font-weight: normal;
width: 100vw;
height: 100vh;
top: 0;
left: 0;
position: absolute;
background-color: black;
color: orange;
display: block;
}
#main-wrapper {
display: flex;
padding: 0;
max-width: 100vw;
overflow-x: hidden;
}
section {
width: 100%;
}
a {
text-decoration: none;
}
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;
text-align: center;
}
strong {
font-weight: bold;
}
main {
width: 100vw;
height: 100vh;
display: flex;
flex-wrap: wrap;
}
/* Screen size root */
@media screen and (max-width: 1024px) {
img {
filter: blur(0px) !important;
}
h1 {
font-size: 12em;
}
}
/* Sections */
#hero {
margin: 0;
background-color: purple;
border-style: double;
border-color: orange;
border-width: 10px;
width: 100vw;
padding:0;
transition: all 2s linear;
}
#hero:hover {
background-color: orange;
border-color: purple;
color: purple;
transition: all 2s linear;
}
/* 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 */
footer {
display: flex;
width: 100%;
margin: 0;
padding: 0;
}
.border {
border-style: double;
border-width: 10px;
}