Spaces:
Sleeping
Sleeping
Update style.css
Browse files
style.css
CHANGED
@@ -1,24 +1,29 @@
|
|
1 |
/* style.css */
|
2 |
-
/* ===== WARNA UTAMA ===== */
|
3 |
body {
|
4 |
background: #f0faff !important;
|
5 |
font-family: 'Comic Sans MS', cursive;
|
|
|
6 |
}
|
7 |
|
8 |
.header-container {
|
9 |
text-align: center;
|
10 |
-
margin: 20px
|
|
|
11 |
}
|
12 |
|
13 |
.banner {
|
14 |
-
width:
|
15 |
-
border: 4px solid #89CFF0;
|
16 |
border-radius: 20px;
|
|
|
17 |
box-shadow: 0 8px 20px rgba(137, 207, 240, 0.3);
|
18 |
}
|
19 |
|
20 |
.title-overlay {
|
21 |
-
|
|
|
|
|
|
|
|
|
22 |
font-size: 2.5em !important;
|
23 |
text-shadow: 2px 2px 4px rgba(137, 207, 240, 0.5);
|
24 |
background: rgba(137, 207, 240, 0.3);
|
@@ -30,13 +35,18 @@ body {
|
|
30 |
#chatbot {
|
31 |
border: 3px solid #89CFF0 !important;
|
32 |
background: white !important;
|
|
|
|
|
|
|
33 |
}
|
34 |
|
35 |
#send-btn {
|
36 |
background: #89CFF0 !important;
|
37 |
color: white !important;
|
|
|
38 |
}
|
39 |
|
40 |
#clear-btn {
|
41 |
background: #ffb3ba !important;
|
|
|
42 |
}
|
|
|
1 |
/* style.css */
|
|
|
2 |
body {
|
3 |
background: #f0faff !important;
|
4 |
font-family: 'Comic Sans MS', cursive;
|
5 |
+
min-height: 100vh;
|
6 |
}
|
7 |
|
8 |
.header-container {
|
9 |
text-align: center;
|
10 |
+
margin: 20px auto;
|
11 |
+
width: 90%;
|
12 |
}
|
13 |
|
14 |
.banner {
|
15 |
+
width: 100%;
|
|
|
16 |
border-radius: 20px;
|
17 |
+
border: 4px solid #89CFF0 !important;
|
18 |
box-shadow: 0 8px 20px rgba(137, 207, 240, 0.3);
|
19 |
}
|
20 |
|
21 |
.title-overlay {
|
22 |
+
position: absolute;
|
23 |
+
bottom: 30px;
|
24 |
+
left: 50%;
|
25 |
+
transform: translateX(-50%);
|
26 |
+
color: white !important;
|
27 |
font-size: 2.5em !important;
|
28 |
text-shadow: 2px 2px 4px rgba(137, 207, 240, 0.5);
|
29 |
background: rgba(137, 207, 240, 0.3);
|
|
|
35 |
#chatbot {
|
36 |
border: 3px solid #89CFF0 !important;
|
37 |
background: white !important;
|
38 |
+
border-radius: 20px;
|
39 |
+
margin: 20px auto;
|
40 |
+
width: 85%;
|
41 |
}
|
42 |
|
43 |
#send-btn {
|
44 |
background: #89CFF0 !important;
|
45 |
color: white !important;
|
46 |
+
border-radius: 15px;
|
47 |
}
|
48 |
|
49 |
#clear-btn {
|
50 |
background: #ffb3ba !important;
|
51 |
+
color: white !important;
|
52 |
}
|