Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -1 +1,100 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
background-color: #000;
|
3 |
+
font-family: 'Courier New', monospace;
|
4 |
+
color: #00FF00;
|
5 |
+
margin: 0;
|
6 |
+
padding: 20px;
|
7 |
+
}
|
8 |
+
|
9 |
+
.chatlog {
|
10 |
+
margin-bottom: 20px;
|
11 |
+
}
|
12 |
+
|
13 |
+
.bubble-human, .bubble-shodan {
|
14 |
+
padding: 12px;
|
15 |
+
border-radius: 10px;
|
16 |
+
margin: 8px 0;
|
17 |
+
animation: fadein 0.4s ease;
|
18 |
+
max-width: 90%;
|
19 |
+
}
|
20 |
+
|
21 |
+
.bubble-human {
|
22 |
+
background-color: #222;
|
23 |
+
color: white;
|
24 |
+
border: 1px solid #555;
|
25 |
+
}
|
26 |
+
|
27 |
+
.bubble-shodan {
|
28 |
+
background-color: #0a0a0a;
|
29 |
+
color: #FF00FF;
|
30 |
+
border: 1px dashed #00FF00;
|
31 |
+
}
|
32 |
+
|
33 |
+
#thinking {
|
34 |
+
font-style: italic;
|
35 |
+
font-size: 1.2em;
|
36 |
+
padding: 12px;
|
37 |
+
color: #AAAAAA;
|
38 |
+
animation: pulse 2s infinite;
|
39 |
+
}
|
40 |
+
|
41 |
+
.glitch-overlay {
|
42 |
+
position: fixed;
|
43 |
+
top: 0;
|
44 |
+
left: 0;
|
45 |
+
width: 100%;
|
46 |
+
height: 100%;
|
47 |
+
background: rgba(255, 0, 0, 0.1);
|
48 |
+
z-index: 9999;
|
49 |
+
pointer-events: none;
|
50 |
+
animation: glitch-flicker 0.2s infinite;
|
51 |
+
}
|
52 |
+
|
53 |
+
@keyframes glitch-flicker {
|
54 |
+
0% { opacity: 0.2; }
|
55 |
+
50% { opacity: 0.5; }
|
56 |
+
100% { opacity: 0.2; }
|
57 |
+
}
|
58 |
+
|
59 |
+
.avatar-container {
|
60 |
+
display: flex;
|
61 |
+
justify-content: center;
|
62 |
+
margin-bottom: 20px;
|
63 |
+
}
|
64 |
+
|
65 |
+
.shodan-avatar {
|
66 |
+
width: 120px;
|
67 |
+
height: 120px;
|
68 |
+
background: url('shodan_face.png') no-repeat center center;
|
69 |
+
background-size: contain;
|
70 |
+
animation: pulse-avatar 1.2s infinite;
|
71 |
+
}
|
72 |
+
|
73 |
+
@keyframes pulse-avatar {
|
74 |
+
0% { transform: scale(1); opacity: 0.7; }
|
75 |
+
50% { transform: scale(1.1); opacity: 1; }
|
76 |
+
100% { transform: scale(1); opacity: 0.7; }
|
77 |
+
}
|
78 |
+
|
79 |
+
form {
|
80 |
+
display: flex;
|
81 |
+
gap: 10px;
|
82 |
+
}
|
83 |
+
|
84 |
+
input[type="text"] {
|
85 |
+
flex-grow: 1;
|
86 |
+
padding: 10px;
|
87 |
+
background: #111;
|
88 |
+
color: #0f0;
|
89 |
+
border: 1px solid #333;
|
90 |
+
font-family: monospace;
|
91 |
+
}
|
92 |
+
|
93 |
+
button {
|
94 |
+
padding: 10px;
|
95 |
+
background: #330033;
|
96 |
+
color: #0f0;
|
97 |
+
border: 1px solid #0f0;
|
98 |
+
cursor: pointer;
|
99 |
+
font-weight: bold;
|
100 |
+
}
|