2023-06-01 15:25:21 +02:00
|
|
|
:root {
|
|
|
|
|
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
2026-01-24 11:23:45 +01:00
|
|
|
touch-action: none;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html {
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: fixed;
|
2023-06-01 15:25:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2026-01-24 11:23:45 +01:00
|
|
|
overscroll-behavior: none;
|
2023-06-01 15:25:21 +02:00
|
|
|
margin: 0;
|
2026-01-24 11:23:45 +01:00
|
|
|
padding: 0;
|
2023-06-01 15:25:21 +02:00
|
|
|
place-items: center;
|
|
|
|
|
width: 100%;
|
2026-01-24 11:23:45 +01:00
|
|
|
height: 100vh;
|
|
|
|
|
height: 100dvh; /* Dynamic viewport height per mobile */
|
2023-06-01 15:25:21 +02:00
|
|
|
background-color: #000;
|
2026-01-24 11:23:45 +01:00
|
|
|
overflow: hidden;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
2023-06-01 15:25:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border: 1px solid #fff;
|
|
|
|
|
padding: 0.6em 1.2em;
|
2023-06-07 14:46:09 +02:00
|
|
|
font-size: 0.8em;
|
2023-06-01 15:25:21 +02:00
|
|
|
font-weight: 500;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #000;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: border-color 0.25s;
|
|
|
|
|
}
|
|
|
|
|
button:hover {
|
|
|
|
|
border-color: #646cff;
|
|
|
|
|
background-color: #333;
|
|
|
|
|
}
|
|
|
|
|
button:focus,
|
|
|
|
|
button:focus-visible {
|
|
|
|
|
outline: 4px auto -webkit-focus-ring-color;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#app {
|
2026-01-24 11:23:45 +01:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2023-06-01 15:25:21 +02:00
|
|
|
text-align: center;
|
2026-01-24 11:23:45 +01:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
2023-06-01 15:25:21 +02:00
|
|
|
}
|
|
|
|
|
.campo {
|
|
|
|
|
user-select: none;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: table;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.hea {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 50%;
|
|
|
|
|
font-size: xx-large;
|
|
|
|
|
}
|
2023-06-12 10:31:27 +02:00
|
|
|
.hea span {
|
2023-07-18 15:18:03 +02:00
|
|
|
/* border: 1px solid #f3fb00; */
|
2023-06-12 10:31:27 +02:00
|
|
|
padding-left: 10px;
|
|
|
|
|
padding-right: 10px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
}
|
2023-06-01 15:25:21 +02:00
|
|
|
.tal {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
.tar {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
.bot {
|
2023-06-07 14:46:09 +02:00
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 100%;
|
2023-06-01 15:25:21 +02:00
|
|
|
margin-top: 10px;
|
2023-06-07 14:46:09 +02:00
|
|
|
margin-bottom: 1px;
|
2025-02-11 14:12:14 +01:00
|
|
|
background-color: #111;
|
2023-06-01 15:25:21 +02:00
|
|
|
}
|
|
|
|
|
.col {
|
2023-06-07 14:46:09 +02:00
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
text-align: center;
|
2023-06-01 15:25:21 +02:00
|
|
|
float: left;
|
|
|
|
|
width: 50%;
|
|
|
|
|
}
|
2023-06-07 14:46:09 +02:00
|
|
|
.punt {
|
|
|
|
|
font-size: 60vh;
|
|
|
|
|
}
|
|
|
|
|
.form {
|
|
|
|
|
font-size: 5vh;
|
|
|
|
|
border-top: #fff dashed 25px;
|
|
|
|
|
padding-top: 50px;
|
|
|
|
|
}
|
|
|
|
|
.formtit {
|
|
|
|
|
font-size: 5vh;
|
|
|
|
|
margin-top: 30px;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
.formdiv {
|
|
|
|
|
font-size: 20vh;
|
|
|
|
|
float: left;
|
|
|
|
|
width: 32%;
|
|
|
|
|
}
|
2023-06-01 15:25:21 +02:00
|
|
|
.home {
|
2025-02-11 14:12:14 +01:00
|
|
|
background-color: black;
|
|
|
|
|
color: yellow;
|
2023-06-01 15:25:21 +02:00
|
|
|
}
|
|
|
|
|
.guest {
|
2025-02-11 14:12:14 +01:00
|
|
|
background-color: blue;
|
|
|
|
|
color: white
|
2023-06-01 15:25:21 +02:00
|
|
|
}
|
2025-03-25 15:14:03 +01:00
|
|
|
.striscia {
|
|
|
|
|
position:fixed;
|
|
|
|
|
text-align: right;
|
|
|
|
|
bottom: 50px;
|
|
|
|
|
right: 10px;
|
|
|
|
|
margin-left: -10000px;
|
|
|
|
|
}
|
|
|
|
|
.striscia .item {
|
|
|
|
|
width: 25px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
background-color: rgb(206, 247, 3);
|
|
|
|
|
color: blue;
|
|
|
|
|
border-radius: 5px;
|
2026-01-24 11:23:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Responsive mobile */
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.hea {
|
|
|
|
|
font-size: 4vw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hea span {
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
padding-right: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hea img {
|
|
|
|
|
width: 18px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.punt {
|
|
|
|
|
font-size: 45vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form {
|
|
|
|
|
font-size: 4vh;
|
|
|
|
|
border-top: #fff dashed 15px;
|
|
|
|
|
padding-top: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.formdiv {
|
|
|
|
|
font-size: 15vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bot button {
|
|
|
|
|
font-size: 0.7em;
|
|
|
|
|
padding: 0.4em 0.8em;
|
|
|
|
|
margin-left: 3px;
|
|
|
|
|
margin-right: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bot img {
|
|
|
|
|
width: 20px !important;
|
|
|
|
|
}
|
2025-03-25 15:14:03 +01:00
|
|
|
}
|