Spaces:
Build error
Build error
/* 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'); | |
/* Base styles */ | |
.gradio-container { | |
font-family: 'Noto Sans', 'Vazirmatn', sans-serif; | |
background-color: #F7F7F7; | |
color: #333333; | |
} | |
/* Button styles */ | |
.primary-btn { | |
background-color: #2D8EFF ; | |
color: white ; | |
border: none ; | |
padding: 10px 20px ; | |
border-radius: 5px ; | |
} | |
.secondary-btn { | |
background-color: #34B233 ; | |
color: white ; | |
} | |
/* Container styles */ | |
.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; | |
} | |
/* Status indicators */ | |
.error-text { | |
color: #FF6B6B ; | |
} | |
.loading { | |
border: 2px solid #2D8EFF; | |
border-radius: 50%; | |
border-top: 2px solid transparent; | |
animation: spin 1s linear infinite; | |
} | |
/* Animations */ | |
@keyframes spin { | |
0% { transform: rotate(0deg); } | |
100% { transform: rotate(360deg); } | |
} | |
/* Responsive Design */ | |
@media (max-width: 768px) { | |
.gradio-container { | |
padding: 10px; | |
} | |
.input-container, .output-container { | |
padding: 15px; | |
} | |
} | |
/* Custom Scrollbar */ | |
::-webkit-scrollbar { | |
width: 8px; | |
} | |
::-webkit-scrollbar-track { | |
background: #f1f1f1; | |
} | |
::-webkit-scrollbar-thumb { | |
background: #2D8EFF; | |
border-radius: 4px; | |
} | |