-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
182 lines (145 loc) · 3.19 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
html, body {
border: none !important;
padding: 0 !important;
margin: 0 !important;
}
#navbar {
display: flex;
justify-content: space-around;
background-color: white;
padding: 10px;
}
#navbar button {
padding: 10px 20px;
background-color: #ffffff;
color: #000000;
border: 1px solid #ccc;
border-radius: 20px;
cursor: pointer;
margin: 0 5px;
}
#navbar button:hover {
background-color: #007bff;
color: white;
}
#chatbot-container {
min-width: 400px;
max-width: 1000px;
border-radius: 20px;
border: 1cm;
border: #000000;
font-family: Arial, sans-serif;
}
#chatbot-content {
padding: 10px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#chat-section{
display : block;
padding: 5px;
padding-top: 2px;
/* border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}
#summary-section {
display: none; /* Initially hide the summary section */
/* Rest of your styles for the summary section */
}
#image-section{
display: none;
}
#web-section{
display: none;
}
.question {
width: 80%;
padding: 10px;
margin-top: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-family: Arial, sans-serif;
}
.button-holder{
display: flex;
justify-content: space-between;
/* background: #fbb300; */
}
.copy{
margin-top: 10px;
}
.submit {
margin-top: 10px;
padding: 8px 15px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.response::-webkit-scrollbar{
display: none;
}
.response {
margin-top: 5px;
margin-bottom: 10px;
padding: 10px;
background-color: #f0f0f0;
border-radius: 5px;
font-size: 14px;
max-height: 350px;
max-width: 100%;
overflow: auto;
/* overflow-y: scroll;
overflow-x: scroll; */
}
@media screen and (min-width: 1200px) {
#chatbot-container {
width: 30%;
}
}
.rainbow {
border-radius: 10px;
padding: 2rem;
margin: auto;
display: grid;
place-content: center;
text-align: center;
--border-size: 0.3rem;
border: var(--border-size) solid transparent;
/* Paint an image in the border */
border-image: conic-gradient(
from var(--angle),
#d53e33 0deg 90deg,
#fbb300 90deg 180deg,
#377af5 180deg 270deg,
#399953 270deg 360deg
)
1 stretch;
background: rgb(255 255 255 / var(--opacity));
}
@supports (background: paint(houdini)) {
@property --opacity {
syntax: "<number>";
initial-value: 0.5;
inherits: false;
}
@property --angle {
syntax: "<angle>";
initial-value: 0deg;
inherits: false;
}
@keyframes opacityChange {
to {
--opacity: 1;
}
}
@keyframes rotate {
to {
--angle: 360deg;
}
}
.rainbow {
animation: rotate 4s linear infinite, opacityChange 3s infinite alternate;
}
}