-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (82 loc) · 1.93 KB
/
Copy pathstyle.css
File metadata and controls
96 lines (82 loc) · 1.93 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
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
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&display=swap');
.chat-window {
font-family: 'Space Grotesk', sans-serif!important;
--size: calc(((2.7vh * 1.2)) * 6);
position: absolute;
left: 0;
top: 50px;
height: var(--size) !important;
text-align: left;
left: auto;
user-select: none;
background:#000000ba!important;
background-size:cover;
}
.msg {
color: #fff;
font-family: 'Space Grotesk', sans-serif!important;
font-size: 18px!important;
filter: url(#svgDropShadowFilter);
line-height: calc(2.7vh * 1.2);
margin-bottom: 0;
}
.chat-messages {
margin: 0;
height: 100%;
}
.msg > span > span > b {
font-weight: normal;
vertical-align: baseline;
padding-right: 11px;
line-height: 1;
font-size: 18px!important;
}
.msg > span > span > span {
vertical-align: baseline;
}
.msg i:first-of-type {
font-style: normal;
color: #c0c0c0;
}
.chat-input {
position: absolute;
right: calc(2.77vh);
bottom: calc(2.77vh);
background: inherit !important;
text-align: right;
top: auto;
left: auto;
height: auto;
font-family: 'Space Grotesk', sans-serif!important;
}
.chat-input > div {
border-radius: 3px;
background-color: rgba(0, 0, 0, 0.767) !important;
padding: calc(0.28vh / 2);
}
.chat-input > div + div {
position: absolute;
bottom: calc(2.25vh + 0.28vh + 0.28vh + 0.28vh + (0.28vh / 2));
width:100%;
text-align: left;
}
.suggestions {
background: transparent;
}
textarea {
background: transparent;
padding: 0.5vh;
}
@media screen and (min-aspect-ratio: 21/9) {
.chat-window, .chat-input {
right: calc(12.8vw);
}
}
@media screen and (min-aspect-ratio: 32/9) {
.chat-window, .chat-input {
right: calc(25vw);
}
}
.prefix{
display: none;
}