Spaces:
Sleeping
Sleeping
Update style.css
Browse files
style.css
CHANGED
@@ -1,37 +1,49 @@
|
|
|
|
|
|
1 |
body {
|
2 |
-
background: linear-gradient(to right, #
|
3 |
font-family: 'Comic Sans MS', cursive, sans-serif;
|
4 |
-
color: #
|
5 |
}
|
6 |
|
7 |
.title {
|
8 |
text-align: center;
|
9 |
-
color: #
|
10 |
font-size: 2.2em;
|
11 |
margin-bottom: 1em;
|
12 |
font-weight: bold;
|
|
|
13 |
}
|
14 |
|
15 |
#chatbot {
|
16 |
-
background-color: #
|
17 |
-
border: 2px solid #
|
18 |
-
border-radius:
|
19 |
padding: 10px;
|
20 |
min-height: 400px;
|
|
|
21 |
}
|
22 |
|
23 |
#input-text, #btn-send, #btn-clear {
|
24 |
margin-top: 10px;
|
|
|
25 |
}
|
26 |
|
27 |
#btn-send {
|
28 |
-
background-color: #
|
29 |
color: white;
|
30 |
font-weight: bold;
|
|
|
31 |
}
|
32 |
|
33 |
#btn-clear {
|
34 |
-
background-color: #
|
35 |
color: white;
|
36 |
font-weight: bold;
|
37 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[file name]: style.css
|
2 |
+
[file content begin]
|
3 |
body {
|
4 |
+
background: linear-gradient(to right, #f0f8ff, #e6f9ff);
|
5 |
font-family: 'Comic Sans MS', cursive, sans-serif;
|
6 |
+
color: #3a7bd5;
|
7 |
}
|
8 |
|
9 |
.title {
|
10 |
text-align: center;
|
11 |
+
color: #89CFF0;
|
12 |
font-size: 2.2em;
|
13 |
margin-bottom: 1em;
|
14 |
font-weight: bold;
|
15 |
+
text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
|
16 |
}
|
17 |
|
18 |
#chatbot {
|
19 |
+
background-color: #f8fdff;
|
20 |
+
border: 2px solid #89CFF0;
|
21 |
+
border-radius: 15px;
|
22 |
padding: 10px;
|
23 |
min-height: 400px;
|
24 |
+
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
|
25 |
}
|
26 |
|
27 |
#input-text, #btn-send, #btn-clear {
|
28 |
margin-top: 10px;
|
29 |
+
border-radius: 8px;
|
30 |
}
|
31 |
|
32 |
#btn-send {
|
33 |
+
background-color: #89CFF0;
|
34 |
color: white;
|
35 |
font-weight: bold;
|
36 |
+
border: 1px solid #7bbfea;
|
37 |
}
|
38 |
|
39 |
#btn-clear {
|
40 |
+
background-color: #ffb3ba;
|
41 |
color: white;
|
42 |
font-weight: bold;
|
43 |
+
border: 1px solid #ffa5ae;
|
44 |
+
}
|
45 |
+
|
46 |
+
.chatbot-box {
|
47 |
+
background-image: linear-gradient(to bottom right, #ffffff, #f0faff);
|
48 |
+
}
|
49 |
+
[file content end]
|