Spaces:
Running
Running
File size: 928 Bytes
3fc3335 66ef908 3fc3335 66ef908 3fc3335 66ef908 3fc3335 66ef908 3fc3335 66ef908 3fc3335 |
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 |
@keyframes pulse {
0% { opacity: 0.6; }
50% { opacity: 1; }
100% { opacity: 0.6; }
}
.pulse {
animation: pulse 2s infinite;
}
.ar-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.8);
z-index: 9999;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
}
.ai-message {
max-width: 80%;
margin-bottom: 10px;
padding: 12px;
border-radius: 18px;
position: relative;
}
.user-message {
background-color: #3b82f6;
color: white;
align-self: flex-end;
border-bottom-right-radius: 4px;
}
.assistant-message {
background-color: #f3f4f6;
color: #111827;
align-self: flex-start;
border-bottom-left-radius: 4px;
}
#arViewport {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
} |