53 lines
1.1 KiB
CSS
53 lines
1.1 KiB
CSS
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
background: url("/home/devel/Documents/anniv_bachir/dirt.png") no-repeat center center fixed;
|
|
background-size: cover;
|
|
}
|
|
|
|
.falling {
|
|
position: fixed;
|
|
top: -50px;
|
|
width: 80px;
|
|
pointer-events: none;
|
|
animation: fall linear forwards;
|
|
}
|
|
|
|
@keyframes fall {
|
|
to {
|
|
transform: translateY(110vh);
|
|
}
|
|
}
|
|
|
|
.bottom-image {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%; /* toute la largeur */
|
|
height: 115px; /* change la hauteur ici */
|
|
object-fit: cover; /* remplit sans déformation */
|
|
|
|
}
|
|
|
|
.center-text {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
|
|
font-size: 80px;
|
|
font-family: "Minecraftia", monospace; /* ta police Minecraft */
|
|
color: white;
|
|
text-shadow: 2px 2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, -2px -2px 0 #000;
|
|
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Minecraftia";
|
|
src: url("/home/devel/Documents/anniv_bachir/Minecraftia-Regular.ttf") format("truetype");
|
|
}
|
|
|
|
|