Spaces:
Sleeping
Sleeping
File size: 628 Bytes
3e102c5 | 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 | /* ===== GLOBAL ===== */
body, textarea, input, button {
font-family: Arial, sans-serif !important;
font-size: 15px !important;
}
.gradio-container {
background: #ffffff !important;
}
/* ===== HEADER ===== */
#header-title {
font-weight: bold;
color: #1a365d;
font-size: 20px;
}
#demo-badge {
color: #f7b500;
font-size: 14px;
font-weight: bold;
}
/* ===== TEXT COUNTER ===== */
#char-counter {
display: flex;
justify-content: space-between;
color: #000;
margin-top: -10px;
margin-bottom: 10px;
}
.char-limit-ok {
color: green;
}
.char-limit-over {
color: red;
}
|