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

Delete style.css

Browse files
Files changed (1) hide show
  1. style.css +0 -66
style.css DELETED
@@ -1,66 +0,0 @@
1
- /* style.css */
2
- /* ===== WARNA UTAMA ===== */
3
- body {
4
- background: #f0faff !important; /* Biru sangat muda */
5
- font-family: 'Comic Sans MS', cursive;
6
- }
7
-
8
- /* ===== HEADER ===== */
9
- .header-container {
10
- position: relative;
11
- margin: 20px auto;
12
- width: 90%;
13
- }
14
-
15
- .banner {
16
- width: 100%;
17
- border-radius: 20px;
18
- border: 4px solid #89CFF0 !important; /* Biru bayi */
19
- box-shadow: 0 8px 20px rgba(137,207,240,0.3);
20
- }
21
-
22
- .title-overlay {
23
- position: absolute !important;
24
- bottom: 30px !important;
25
- left: 50% !important;
26
- transform: translateX(-50%) !important;
27
- font-size: 2.5em !important;
28
- color: #ffffff !important;
29
- text-shadow:
30
- 2px 2px 4px rgba(137,207,240,0.5),
31
- 0 0 20px rgba(255,255,255,0.3) !important;
32
- font-family: 'Comic Sans MS', cursive !important;
33
- background: rgba(137,207,240,0.3) !important;
34
- padding: 10px 30px !important;
35
- border-radius: 50px !important;
36
- backdrop-filter: blur(5px) !important;
37
- border: 2px solid rgba(255,255,255,0.5) !important;
38
- }
39
-
40
- /* ===== CHAT INTERFACE ===== */
41
- #chatbot {
42
- background: rgba(255,255,255,0.95) !important;
43
- border: 3px solid #89CFF0 !important;
44
- border-radius: 20px !important;
45
- margin: 20px auto !important;
46
- width: 85% !important;
47
- }
48
-
49
- #input-box {
50
- border: 2px solid #89CFF0 !important;
51
- border-radius: 15px !important;
52
- background: rgba(255,255,255,0.9) !important;
53
- }
54
-
55
- #send-btn {
56
- background: #89CFF0 !important;
57
- color: white !important;
58
- border-radius: 15px !important;
59
- border: none !important;
60
- }
61
-
62
- #clear-btn {
63
- background: #ffb3ba !important;
64
- color: white !important;
65
- border-radius: 15px !important;
66
- }