Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -39,6 +39,9 @@ body {
|
|
39 |
background-color: #f5f7fa;
|
40 |
color: #202123;
|
41 |
}
|
|
|
|
|
|
|
42 |
.gradio-container {
|
43 |
max-width: 600px;
|
44 |
margin: 40px auto;
|
@@ -47,6 +50,7 @@ body {
|
|
47 |
border-radius: 16px;
|
48 |
box-shadow: 0 8px 24px rgba(32, 33, 35, 0.1);
|
49 |
}
|
|
|
50 |
.gr-button {
|
51 |
background-color: #4caf50 !important; /* soft green */
|
52 |
color: white !important;
|
@@ -86,6 +90,7 @@ body {
|
|
86 |
}
|
87 |
"""
|
88 |
|
|
|
89 |
# Build Gradio interface with Blocks to add CSS
|
90 |
with gr.Blocks(css=custom_css) as iface:
|
91 |
gr.Markdown("## تحليل المشاعر العربية بالذكاء الاصطناعي")
|
|
|
39 |
background-color: #f5f7fa;
|
40 |
color: #202123;
|
41 |
}
|
42 |
+
.gradio-container h2, .gradio-container p {
|
43 |
+
color: #000000 !important; /* لجعل عنوان ووصف بلون أسود */
|
44 |
+
}
|
45 |
.gradio-container {
|
46 |
max-width: 600px;
|
47 |
margin: 40px auto;
|
|
|
50 |
border-radius: 16px;
|
51 |
box-shadow: 0 8px 24px rgba(32, 33, 35, 0.1);
|
52 |
}
|
53 |
+
/* باقي الـ CSS مثل السابق */
|
54 |
.gr-button {
|
55 |
background-color: #4caf50 !important; /* soft green */
|
56 |
color: white !important;
|
|
|
90 |
}
|
91 |
"""
|
92 |
|
93 |
+
|
94 |
# Build Gradio interface with Blocks to add CSS
|
95 |
with gr.Blocks(css=custom_css) as iface:
|
96 |
gr.Markdown("## تحليل المشاعر العربية بالذكاء الاصطناعي")
|