Files
geocaching_js/static/css/perdu.css
2024-12-24 00:52:14 +01:00

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: rgb(148, 163, 206);
background-color: #141414;
padding: 5px 5px;
border-radius: 2px;
font-size: 0.5rem;
box-shadow: 2px 2px 5px #000;
}
.continue-button:hover {
background-color: #f8f9fa;
}