-
Notifications
You must be signed in to change notification settings - Fork 0
/
kein_ai.css
81 lines (68 loc) · 1.29 KB
/
kein_ai.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
.ai_box::before,
.ai_box::after{
position: absolute;
bottom: 0;
height: 25px;
transition: transform .2s ease-out;
content: "";
}
.ai_box::before {
width: 20px;
left: -7px;
background-color: skyblue;
border-bottom-right-radius: 16px 14px;
}
.ai_box::after {
width: 26px;
left: -27px;
background-color: white;
border-bottom-right-radius: 10px;
}
.human_box::before,
.human_box::after{
position: absolute;
bottom: 0;
height: 25px;
transition: transform .2s ease-out;
content: "";
}
.human_box::before {
width: 20px;
right: -7px;
background-color: #eaeaea;
border-bottom-left-radius: 16px 14px;
}
.human_box::after {
width: 26px;
right: -27px;
background-color: white;
border-bottom-left-radius: 10px;
}
.scrollbarbackgroundgrey {
scrollbar-color: #87CEEB #eaeaea;
height: auto;
max-height: 85vh;
margin-right: 15px;
}
.scrollable {
overflow-y: scroll;
scrollbar-width: thin;
display: block;
}
.scrollablenoscrollbar {
overflow-y: scroll;
scrollbar-width: thin;
display: block;
}
.btn {
background-color: skyblue;
border: none;
color: white;
padding: 6px 10px;
font-size: 16px;
cursor: pointer;
border-radius: 25px;
}
.btn:hover {
background-color: blue;
}