-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
60 lines (52 loc) · 1.66 KB
/
index.css
File metadata and controls
60 lines (52 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
body {
font-family: 'Comic Sans MS', cursive;
background: url('images/cute-pattern.svg') repeat;
margin: 0;
padding: 0;
overflow-x: hidden;
}
.chat-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 20px;
}
.chat-bubble {
background: rgba(255, 255, 255, 0.8);
border-radius: 20px;
padding: 10px 15px;
margin: 10px;
max-width: 200px;
animation: bounce 0.5s ease infinite alternate;
}
@keyframes bounce {
from { transform: translateY(0); }
to { transform: translateY(-10px); }
}
.bot-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 10px;
}
.floating-emoji {
position: fixed;
font-size: 2rem;
pointer-events: none;
animation: float 5s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(180deg); }
100% { transform: translateY(0) rotate(360deg); }
}
.neon-text {
font-size: 2rem;
color: #fff;
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #ff00de, 0 0 35px #ff00de, 0 0 40px #ff00de, 0 0 50px #ff00de, 0 0 75px #ff00de;
animation: neon 1.5s ease-in-out infinite alternate;
}
@keyframes neon {
from { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #ff00de, 0 0 35px #ff00de, 0 0 40px #ff00de, 0 0 50px #ff00de, 0 0 75px #ff00de; }
to { text-shadow: 0 0 2.5px #fff, 0 0 5px #fff, 0 0 7.5px #fff, 0 0 10px #ff00de, 0 0 17.5px #ff00de, 0 0 20px #ff00de, 0 0 25px #ff00de, 0 0 37.5px #ff00de; }
}