-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (61 loc) · 1.17 KB
/
Copy pathstyles.css
File metadata and controls
69 lines (61 loc) · 1.17 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
61
62
63
64
65
66
67
68
69
.footer{
display: flex;
align-items: flex-end;
}
.footer textarea{
flex-grow: 1;
}
.footer button{
background-image: url([[pix:block_aiassistant|send]]);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
border: none;
width: 2rem;
height: 2rem;
padding: 0.5rem;
}
.chat {
height: 30vw;
scroll-behavior: smooth;
overflow-y: auto;
}
.message {
max-width: 70%;
width:fit-content;
padding: 5px;
margin: 4px 0;
border-radius: 12px;
}
.message-time {
font-size: 0.5rem;
text-align: right;
}
#assistant{
background-color: rgb(0, 195, 255);
margin-right: auto;
}
#user{
background-color: rgb(133, 184, 241);
margin-left: auto;
}
@keyframes loading-indicator {
to {
transform: rotate(360deg);
}
}
.loading-indicator:before {
content: "";
box-sizing: border-box;
position: absolute;
top: 50%;
left: 50%;
width: 3rem;
height: 3rem;
margin-top: -1.5rem;
margin-left: -1.5rem;
border-radius: 50%;
border: 4px solid #ccc;
border-top-color: rgb(22, 26, 34);
animation: spinner 0.6s linear infinite;
}