44 lines
827 B
CSS
44 lines
827 B
CSS
#real-chatgpt-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 9999;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
#real-chatgpt-message {
|
|
color: white;
|
|
font-size: 18px;
|
|
margin-top: 20px;
|
|
padding: 10px 20px;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
max-width: 80%;
|
|
}
|
|
|
|
#real-chatgpt-message.completion {
|
|
background-color: #28a745;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#real-chatgpt-spinner {
|
|
width: 50px;
|
|
height: 50px;
|
|
border: 5px solid rgba(255, 255, 255, 0.3);
|
|
border-radius: 50%;
|
|
border-top-color: #fff;
|
|
animation: spin 1s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|