Spaces:
Running
Running
File size: 1,607 Bytes
0f65d37 0bcdffe 1d818b8 899d1e1 18df17a 899d1e1 18df17a 899d1e1 18df17a 899d1e1 18df17a 899d1e1 18df17a 899d1e1 18df17a 899d1e1 18df17a 899d1e1 18df17a 899d1e1 18df17a 899d1e1 18df17a 899d1e1 2eabeb3 502d758 2eabeb3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
padding: 20px;
margin: 0;
}
.container {
background: rgba(128, 128, 128, 0.5);
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
max-width: 500px;
margin: auto;
}
h1 {
font-size: 22px;
color: #333;
}
input {
width: 80%;
padding: 8px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
background: #007bff;
color: white;
padding: 8px 15px;
border: none;
cursor: pointer;
border-radius: 5px;
margin: 5px;
}
button:hover {
background: #0056b3;
}
#result {
margin-top: 15px;
text-align: left;
padding: 10px;
}
#videoWrapper {
display: flex;
justify-content: center;
margin-top: 20px;
}
#videoWrapper video {
width: 360px;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#bgVideo {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 100%;
min-height: 100%;
z-index: -1;
object-fit: cover;
background-color: black;
}
.chara {
display: none;
}
.notif {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgba(255, 193, 7, 0.5);
color: white;
padding: 12px 24px;
border-radius: 10px;
font-size: 16px;
text-align: center;
max-width: 80%;
z-index: 9999;
opacity: 0;
transition: opacity 0.5s ease;
pointer-events: none;
}
|