Spaces:
Build error
Build error
File size: 4,421 Bytes
6f738f4 |
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
/* 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;
}
|