65 lines
1.2 KiB
CSS
65 lines
1.2 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
overscroll-behavior: none; /* Empêche les glissements */
|
|
touch-action: none; /* Désactive les gestes tactiles */
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: hidden; /* Bloque le défilement */
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
.fullscreen-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: black;
|
|
position: relative;
|
|
}
|
|
|
|
.fullscreen-container img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.header-text {
|
|
position: absolute;
|
|
top: 20px;
|
|
text-align: center;
|
|
color: red;
|
|
font-size: 2.5rem;
|
|
font-weight: bold;
|
|
text-shadow: 2px 2px 4px #000;
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
padding: 10px 20px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.button-container {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
}
|
|
|
|
.continue-button {
|
|
text-decoration: none;
|
|
color: white;
|
|
background-color: #79d2d8;
|
|
padding: 10px 20px;
|
|
border-radius: 5px;
|
|
font-size: 1.2rem;
|
|
box-shadow: 2px 2px 5px #000;
|
|
}
|
|
|
|
.continue-button:hover {
|
|
background-color: #79d2d8;
|
|
}
|