Spaces:
Running
Running
Upload style.css
Browse files
style.css
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@400;700&display=swap");
|
2 |
+
|
3 |
+
body {
|
4 |
+
font-family: "Noto Sans Arabic", sans-serif;
|
5 |
+
background-color: #f9fafb; /* خلفية رمادية فاتحة */
|
6 |
+
color: #333333; /* لون النص */
|
7 |
+
}
|
8 |
+
|
9 |
+
.container {
|
10 |
+
margin: 0 auto;
|
11 |
+
padding: 1rem;
|
12 |
+
max-width: 768px; /* عرض الصفحة */
|
13 |
+
}
|
14 |
+
|
15 |
+
/* العنوان */
|
16 |
+
h1 {
|
17 |
+
font-size: 1.875rem;
|
18 |
+
font-weight: bold;
|
19 |
+
text-align: center;
|
20 |
+
margin-bottom: 1.5rem;
|
21 |
+
}
|
22 |
+
|
23 |
+
/* الأزرار */
|
24 |
+
button {
|
25 |
+
background-color: #4f46e5; /* لون أزرق */
|
26 |
+
color: #ffffff; /* لون النص أبيض */
|
27 |
+
padding: 0.75rem 1rem;
|
28 |
+
border: none;
|
29 |
+
border-radius: 8px; /* رواندنس */
|
30 |
+
cursor: pointer;
|
31 |
+
transition: background-color 0.3s ease;
|
32 |
+
font-weight: bold;
|
33 |
+
}
|
34 |
+
|
35 |
+
button:hover {
|
36 |
+
background-color: #4338ca; /* أزرق أغمق عند الـ Hover */
|
37 |
+
}
|
38 |
+
|
39 |
+
button:disabled {
|
40 |
+
background-color: #a5b4fc; /* لون خافت إذا كان الزر معطل */
|
41 |
+
cursor: not-allowed;
|
42 |
+
}
|
43 |
+
|
44 |
+
/* حقول الإدخال */
|
45 |
+
textarea,
|
46 |
+
input[type="range"] {
|
47 |
+
width: 100%;
|
48 |
+
padding: 0.75rem;
|
49 |
+
border: 1px solid #d1d5db;
|
50 |
+
border-radius: 6px; /* رواندنس خفيف */
|
51 |
+
margin-top: 0.5rem;
|
52 |
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* ظل خفيف */
|
53 |
+
transition: border-color 0.3s ease, box-shadow 0.3s ease;
|
54 |
+
}
|
55 |
+
|
56 |
+
textarea:focus,
|
57 |
+
input[type="range"]:focus {
|
58 |
+
outline: none;
|
59 |
+
border-color: #6366f1; /* تركيز بالأزرق الفاتح */
|
60 |
+
box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2); /* ظل عند التركيز */
|
61 |
+
}
|
62 |
+
|
63 |
+
/* صندوق الإعدادات */
|
64 |
+
.bg-gray-50 {
|
65 |
+
background-color: #f9fafb;
|
66 |
+
border-radius: 8px;
|
67 |
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
68 |
+
}
|
69 |
+
|
70 |
+
label {
|
71 |
+
font-weight: bold;
|
72 |
+
color: #333333;
|
73 |
+
}
|
74 |
+
|
75 |
+
span.text-sm {
|
76 |
+
font-size: 0.875rem;
|
77 |
+
color: #6b7280; /* لون رمادي للنصوص الثانوية */
|
78 |
+
}
|
79 |
+
|
80 |
+
/* حاوية الملخص */
|
81 |
+
.border {
|
82 |
+
border: 1px solid #e5e7eb;
|
83 |
+
border-radius: 8px;
|
84 |
+
background-color: #ffffff;
|
85 |
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
86 |
+
}
|
87 |
+
|
88 |
+
h2 {
|
89 |
+
font-size: 1.25rem;
|
90 |
+
font-weight: bold;
|
91 |
+
color: #333333;
|
92 |
+
}
|
93 |
+
|
94 |
+
p.leading-relaxed {
|
95 |
+
line-height: 1.75;
|
96 |
+
color: #4b5563;
|
97 |
+
}
|