Spaces:
Sleeping
Sleeping
Update style.css
Browse files
style.css
CHANGED
@@ -1,62 +1,85 @@
|
|
1 |
-
|
|
|
|
|
2 |
.gradio-container {
|
3 |
background: #f9fafb !important;
|
4 |
font-family: "Noto Sans Arabic", sans-serif !important;
|
5 |
}
|
6 |
|
7 |
-
/*
|
8 |
.block.svelte-11xb1hd {
|
9 |
background: #ffffff !important;
|
10 |
border: 1px solid #e5e7eb !important;
|
11 |
border-radius: 20px !important;
|
12 |
-
|
13 |
-
margin-bottom: 1rem !important;
|
14 |
}
|
15 |
|
16 |
-
/*
|
17 |
span.svelte-1gfkn6j {
|
18 |
color: #5046e5 !important;
|
19 |
font-size: 15px !important;
|
20 |
-
font-weight: bold !important;
|
21 |
text-align: center !important;
|
22 |
display: block !important;
|
23 |
-
margin-bottom:
|
24 |
}
|
25 |
|
26 |
-
/*
|
27 |
-
textarea.svelte-173056l
|
28 |
-
input.svelte-173056l {
|
29 |
background: #ffffff !important;
|
30 |
-
border: 1px solid #e5e7eb !important;
|
31 |
border-radius: 12px !important;
|
32 |
-
padding:
|
33 |
-
width: 100% !important;
|
34 |
direction: rtl !important;
|
35 |
}
|
36 |
|
37 |
-
/*
|
38 |
-
input[type="range"] {
|
39 |
-
accent-color: #5046e5 !important;
|
40 |
-
}
|
41 |
-
|
42 |
-
/* 6. تنسيق الأرقام */
|
43 |
input[type="number"].svelte-10lj3xl {
|
44 |
background: #28ae66 !important;
|
45 |
color: white !important;
|
|
|
46 |
border-radius: 10px !important;
|
47 |
-
|
48 |
text-align: center !important;
|
49 |
}
|
50 |
|
51 |
-
/*
|
52 |
-
button.svelte-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
}
|
59 |
|
60 |
-
|
61 |
-
|
|
|
|
|
62 |
}
|
|
|
1 |
+
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@400;700&display=swap");
|
2 |
+
|
3 |
+
/* الأساسيات */
|
4 |
.gradio-container {
|
5 |
background: #f9fafb !important;
|
6 |
font-family: "Noto Sans Arabic", sans-serif !important;
|
7 |
}
|
8 |
|
9 |
+
/* البلوكات والحاويات */
|
10 |
.block.svelte-11xb1hd {
|
11 |
background: #ffffff !important;
|
12 |
border: 1px solid #e5e7eb !important;
|
13 |
border-radius: 20px !important;
|
14 |
+
overflow: visible !important;
|
|
|
15 |
}
|
16 |
|
17 |
+
/* العناوين */
|
18 |
span.svelte-1gfkn6j {
|
19 |
color: #5046e5 !important;
|
20 |
font-size: 15px !important;
|
|
|
21 |
text-align: center !important;
|
22 |
display: block !important;
|
23 |
+
margin-bottom: 10px !important;
|
24 |
}
|
25 |
|
26 |
+
/* حقول النص */
|
27 |
+
textarea.svelte-173056l {
|
|
|
28 |
background: #ffffff !important;
|
|
|
29 |
border-radius: 12px !important;
|
30 |
+
padding: 15px !important;
|
|
|
31 |
direction: rtl !important;
|
32 |
}
|
33 |
|
34 |
+
/* مربعات الأرقام */
|
|
|
|
|
|
|
|
|
|
|
35 |
input[type="number"].svelte-10lj3xl {
|
36 |
background: #28ae66 !important;
|
37 |
color: white !important;
|
38 |
+
border: none !important;
|
39 |
border-radius: 10px !important;
|
40 |
+
width: 60px !important;
|
41 |
text-align: center !important;
|
42 |
}
|
43 |
|
44 |
+
/* زر الريست */
|
45 |
+
.reset-button.svelte-10lj3xl {
|
46 |
+
padding: 3px 8px !important;
|
47 |
+
font-size: 14px !important;
|
48 |
+
background: transparent !important;
|
49 |
+
border: 1px solid #5046e5 !important;
|
50 |
+
color: #5046e5 !important;
|
51 |
+
border-radius: 5px !important;
|
52 |
+
}
|
53 |
+
|
54 |
+
/* السلايدر */
|
55 |
+
input[type="range"] {
|
56 |
+
accent-color: #5046e5 !important;
|
57 |
+
}
|
58 |
+
|
59 |
+
/* معالجة مشكلة الحاوية المتكررة */
|
60 |
+
.form.svelte-633qhp {
|
61 |
+
overflow: visible !important;
|
62 |
+
margin: 0 !important;
|
63 |
+
padding: 0 !important;
|
64 |
+
}
|
65 |
+
|
66 |
+
/* نص العنوان */
|
67 |
+
.gradio-container h1 {
|
68 |
+
color: #5046e5 !important;
|
69 |
+
text-align: center !important;
|
70 |
+
}
|
71 |
+
|
72 |
+
/* الأزرار */
|
73 |
+
button.lg.primary {
|
74 |
+
background-color: #5046e5 !important;
|
75 |
+
}
|
76 |
+
|
77 |
+
button.lg.secondary {
|
78 |
+
background-color: #6b7280 !important;
|
79 |
}
|
80 |
|
81 |
+
/* معالجة ظهور الحاويات المتكررة */
|
82 |
+
.block.svelte-11xb1hd.padded.auto-margin {
|
83 |
+
overflow: hidden !important;
|
84 |
+
margin-bottom: 20px !important;
|
85 |
}
|