Spaces:
Build error
Build error
/* Stilul pentru titlu */ | |
h1 { | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
color: #A238FF; | |
font-size: 3em; | |
margin-bottom: 0; | |
} | |
/* Stilul pentru descriere */ | |
div { | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
color: #808080; | |
font-size: 1.2em; | |
margin-top: 0; | |
} | |
/* Stilul pentru caseta de text pentru intrare */ | |
input[type="text"] { | |
width: 100%; | |
padding: 12px 20px; | |
margin: 8px 0; | |
box-sizing: border-box; | |
border: 2px solid #ccc; | |
border-radius: 4px; | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 1.2em; | |
} | |
/* Stilul pentru butonul de trimitere */ | |
button[type="submit"] { | |
background-color: #A238FF; | |
color: white; | |
padding: 12px 20px; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 1.2em; | |
} | |
/* Stilul pentru butonul de resetare */ | |
button[type="reset"] { | |
background-color: #DC143C; | |
color: white; | |
padding: 12px 20px; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 1.2em; | |
} | |
/* Stilul pentru butonul de reîncercare */ | |
button[type="retry"] { | |
background-color: #A9A9A9; | |
color: white; | |
padding: 12px 20px; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 1.2em; | |
} | |
/* Stilul pentru butonul de ștergere a ultimei conversații */ | |
button[type="deleteLast"] { | |
background-color: #A9A9A9; | |
color: white; | |
padding: 12px 20px; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 1.2em; | |
} | |
/* Stilul pentru chat */ | |
.gradio-chatbot { | |
border: none; | |
margin-top: 20px; | |
} | |
/* Stilul pentru mesajele asistentului */ | |
.gradio-chatbot .gradio-message-assistant { | |
background-color: #A238FF; | |
color: white; | |
border-radius: 10px; | |
padding: 10px 20px; | |
margin-bottom: 10px; | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 1.2em; | |
} | |
/* Stilul pentru mesajele utilizatorului */ | |
.gradio-chatbot .gradio-message-user { | |
background-color: #DC143C; | |
color: white; | |
border-radius: 10px; | |
padding: 10px 20px; | |
margin-bottom: 10px; | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 1.2em; | |
} | |
/* Stilul pentru butonul de încărcare a mai multor răspunsuri */ | |
.gradio-chatbot .gradio-load-more { | |
background-color: #A9A9A9; | |
color: white; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 1.2em; | |
padding: 12px 20px; | |
margin-top: 10px; | |
} | |
/* Stilul pentru containerul de lista de sugestii */ | |
.gradio-chatbot .gradio-suggestions { | |
display: flex; | |
flex-wrap: wrap; | |
margin-top: 10px; | |
justify-content: center; | |
} | |
/* Stilul pentru fiecare sugestie din lista de sugestii */ | |
.gradio-chatbot .gradio-suggestion { | |
background-color: #A9A9A9; | |
color: white; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 1.2em; | |
padding: 12px 20px; | |
margin: 5px; | |
transition: background-color 0.3s ease; | |
} | |
/* Stilul pentru sugestiile selectate din lista de sugestii */ | |
.gradio-chatbot .gradio-suggestion:hover { | |
background-color: #808080; | |
} | |
/* Stilul pentru titlul sugestiilor */ | |
.gradio-chatbot .gradio-suggestions-title { | |
font-weight: bold; | |
margin-top: 10px; | |
margin-bottom: 5px; | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 1.2em; | |
} | |
/* Stilul pentru containerul de lista de conversatii anterioare */ | |
.gradio-chatbot .gradio-conversations { | |
margin-top: 10px; | |
} | |
/* Stilul pentru fiecare conversatie anterioara */ | |
.gradio-chatbot .gradio-conversation { | |
display: flex; | |
flex-wrap: wrap; | |
justify-content: flex-start; | |
margin-bottom: 5px; | |
} | |
/* Stilul pentru data conversatiei anterioare */ | |
.gradio-chatbot .gradio-conversation-date { | |
color: #808080; | |
font-size: 0.8em; | |
margin-right: 5px; | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
} | |
/* Stilul pentru mesajele din conversatiile anterioare */ | |
.gradio-chatbot .gradio-conversation-message { | |
background-color: #A9A9A9; | |
color: white; | |
border-radius: 10px; | |
padding: 5px 10px; | |
margin-right: 5px; | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 0.8em; | |
max-width: 70%; | |
word-wrap: break-word; | |
white-space: pre-wrap; | |
} | |