Spaces:
Build error
Build error
File size: 1,612 Bytes
b98a046 |
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 |
# Custom CSS for the Gradio interface
custom_css = """
.gradio-container {
font-family: 'Noto Sans', 'Vazirmatn', sans-serif;
background-color: #F7F7F7;
color: #333333;
}
.primary-btn {
background-color: #2D8EFF !important;
color: white !important;
border: none !important;
padding: 10px 20px !important;
border-radius: 5px !important;
}
.secondary-btn {
background-color: #34B233 !important;
color: white !important;
}
.error-text {
color: #FF6B6B !important;
}
/* Input/Output containers */
.input-container, .output-container {
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* RTL Support */
[dir="rtl"] {
text-align: right;
}
/* Responsive Design */
@media (max-width: 768px) {
.gradio-container {
padding: 10px;
}
.input-container, .output-container {
padding: 15px;
}
}
/* Loading State */
.loading {
border: 2px solid #2D8EFF;
border-radius: 50%;
border-top: 2px solid transparent;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #2D8EFF;
border-radius: 4px;
}
/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/[email protected]/Vazirmatn-font-face.css');
"""
|