Files
modern-maintenance-page/css/style.css
T

68 lines
1.2 KiB
CSS
Raw Normal View History

2023-08-14 17:37:49 +02:00
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700");
* {
font-family: "Open Sans", sans-serif;
font-weight: 400;
}
body {
margin: 0;
padding: 0;
font-size: 16px;
background-color: #000000;
}
img {
max-width: 100%;
}
.container {
height: 100vh;
width: 100%;
background-size: cover;
background-position: 50% 0%;
/*overflow: hidden;*/
}
.wrapper {
width: 100%;
height: 100%;
opacity: 0.7;
background: linear-gradient(
-55deg,
transparent 25%,
#000000 25%,
#000000 75%,
transparent 75%,
transparent 100%
);
transition: all 0.5s cubic-bezier(0.67, 0, 0.3, 1) 1s;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.content {
/*transform:rotate(50deg);*/
padding: 1rem;
color: rgba(255, 255, 255, 1);
}
.content h1 {
font-size: 3rem;
color: rgba(255, 255, 255, 1);
}
.content p {
font-size: 1.5rem;
color: rgba(255, 255, 255, 1);
}
.content a {
color: rgba(255, 255, 255, 1);
display: inline-block;
padding: 2.1% 4%;
overflow: hidden;
border-radius: 0;
text-decoration: none;
}
/* Styles spécifiques pour l'image */
.presentation-image {
max-width: 300px;
display: block;
margin: 0 auto;
}