Spaces:
Sleeping
Sleeping
Update styles.css
Browse files- styles.css +28 -1
styles.css
CHANGED
@@ -2,4 +2,31 @@
|
|
2 |
#chatbot .message {
|
3 |
direction: rtl;
|
4 |
text-align: right;
|
5 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
#chatbot .message {
|
3 |
direction: rtl;
|
4 |
text-align: right;
|
5 |
+
}
|
6 |
+
|
7 |
+
#title {
|
8 |
+
text-align: right;
|
9 |
+
font-size: 24px;
|
10 |
+
color: darkblue;
|
11 |
+
direction: rtl;
|
12 |
+
margin-right: 20px;
|
13 |
+
}
|
14 |
+
#chatbot {
|
15 |
+
background-color: #f9f9f9;
|
16 |
+
border-radius: 10px;
|
17 |
+
padding: 10px;
|
18 |
+
direction: rtl;
|
19 |
+
text-align: right;
|
20 |
+
font-family: 'Tajawal', sans-serif;
|
21 |
+
}
|
22 |
+
#input-box {
|
23 |
+
border: 2px solid blue;
|
24 |
+
padding: 10px;
|
25 |
+
direction: rtl;
|
26 |
+
text-align: right;
|
27 |
+
}
|
28 |
+
#clear-btn {
|
29 |
+
background-color: red;
|
30 |
+
color: white;
|
31 |
+
font-weight: bold;
|
32 |
+
}
|