Rosmontis-Chan commited on
Commit
ca13a98
·
verified ·
1 Parent(s): 3ad8380

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +42 -0
style.css ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 0;
11
+ }
12
+
13
+ .banner {
14
+ width: 90%;
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
+ color: #ffffff !important;
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);
25
+ padding: 10px 30px;
26
+ border-radius: 50px;
27
+ border: 2px solid rgba(255, 255, 255, 0.5);
28
+ }
29
+
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
+ }