-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
101 lines (88 loc) · 1.99 KB
/
style.css
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* Global Styles */
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 50px 50px;
}
h1 {
text-align: left;
color: #333;
}
.divider {display: block; clear: both; margin: 20px;}
/* Spinner CSS */
.loader {
border: 8px solid #f3f3f3;
border-top: 8px solid #3498db;
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
margin: 10px auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.processing {
background-color: #f0f8ff;
color: #333;
padding: 10px;
border-radius: 5px;
}
/* Chat Container */
.chat-container {
display: flex;
justify-content: center;
margin: 20px 0;
}
/* Input Box */
.input-box {
width: 300px;
padding: 10px;
border: 2px solid #3498db;
border-radius: 25px;
font-size: 16px;
outline: none;
transition: border-color 0.3s;
}
.input-box:focus {
border-color: #2980b9; /* Darker blue on focus */
}
/* Send Button */
.send-button {
background-color: #3498db;
color: white;
border: none;
border-radius: 25px;
padding: 10px 20px;
font-size: 16px;
margin-left: 10px;
cursor: pointer;
transition: background-color 0.3s;
}
.send-button:hover {
background-color: #2980b9; /* Darker blue on hover */
}
/* Response Text */
.response-text {
margin-top: 20px;
font-size: 18px;
color: #333;
text-align: center;
}
.response-text, .play-button {display: inline-block;}
.play-button {
background-color: transparent; /* Transparent background */
border: none; /* No border */
cursor: pointer; /* Pointer cursor */
font-size: 24px; /* Increase font size for the icon */
color: #007BFF; /* Change the icon color */
transition: color 0.3s; /* Smooth transition for color */
}
.play-button:hover {
color: #0056b3; /* Change color on hover */
}
.play-button:focus {
outline: none; /* Remove focus outline */
}