-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
299 lines (251 loc) · 6.45 KB
/
Copy pathstyle.css
File metadata and controls
299 lines (251 loc) · 6.45 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
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/* As deviation from the mint theme: we want to remove the rounded corners */
* {
border-radius: 0 !important;
}
.tilebox-landing-hero {
min-height: 740px;
}
.tilebox-mode-card-preview {
min-height: 160px;
background-image: radial-gradient(circle, rgba(120, 120, 120, 0.18) 1px, transparent 1px);
background-size: 16px 16px;
}
.tilebox-mode-card-image {
height: auto;
max-height: 160px;
max-width: 92%;
object-fit: contain;
width: 100%;
}
.tilebox-agent-chat {
font-family: var(--font-mono), ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
padding-left: 0.25rem;
padding-top: 0.25rem;
}
.tilebox-agent-chat-message {
align-items: flex-start;
display: flex;
gap: 0.875rem;
}
.tilebox-agent-chat-avatar {
align-items: center;
background: rgb(244 63 94);
border-radius: 999px !important;
box-shadow: 10px 12px 18px rgb(244 63 94 / 0.18);
color: rgb(255 255 255);
display: inline-flex;
flex: 0 0 auto;
font-size: 0.78rem;
font-weight: 700;
height: 2rem;
justify-content: center;
width: 2rem;
}
.dark .tilebox-agent-chat-avatar {
background: rgb(244 63 94);
box-shadow: 10px 12px 18px rgb(244 63 94 / 0.20);
color: rgb(255 255 255);
}
.tilebox-agent-chat-avatar svg {
background-color: rgb(255 255 255);
height: 0.9rem;
fill: currentColor;
width: 0.9rem;
}
.tilebox-agent-chat-content {
flex: 1 1 auto;
min-width: 0;
}
.tilebox-agent-chat-meta {
color: rgb(75 85 99);
font-size: 0.78rem;
font-weight: 600;
margin-bottom: 0.45rem;
}
.dark .tilebox-agent-chat-meta {
color: rgb(161 161 170);
}
.tilebox-agent-chat-bubble {
background: rgb(255 255 255);
border: 1px solid rgb(229 231 235);
box-shadow: 0 12px 28px rgb(15 23 42 / 0.07);
color: rgb(63 63 70);
display: block !important;
font-family: "Geist", var(--font-sans), ui-sans-serif, system-ui, sans-serif;
font-size: 0.82rem;
line-height: 1.62;
margin: 0;
max-height: 440px;
overflow: auto;
overflow-wrap: normal;
padding: 1rem;
text-align: left !important;
word-break: normal;
}
.tilebox-agent-chat-bubble p,
.tilebox-agent-chat-bubble ul,
.tilebox-agent-chat-bubble li {
margin: 0;
padding: 0;
}
.tilebox-agent-chat-bubble ul {
list-style-position: outside;
padding-left: 1.05em;
}
.tilebox-agent-chat-bubble li {
display: list-item;
padding-left: 0.3em !important;
}
.tilebox-agent-chat-bubble li::marker {
color: rgb(63 63 70);
content: "-";
font-size: 1.2em;
}
.tilebox-agent-chat-bubble li::before {
content: none !important;
display: none !important;
}
.dark .tilebox-agent-chat-bubble {
background: rgb(24 24 27);
border-color: rgb(63 63 70);
box-shadow: 0 12px 28px rgb(0 0 0 / 0.30);
color: rgb(212 212 216);
}
.dark .tilebox-agent-chat-bubble li::marker {
color: rgb(212 212 216);
}
.tilebox-agent-chat-composer {
align-items: center;
background: rgb(255 255 255);
border: 1px solid rgb(229 231 235);
color: rgb(107 114 128);
display: flex;
font-family: var(--font-mono), ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 0.88rem;
justify-content: space-between;
margin-left: 2.875rem;
margin-top: 1rem;
padding: 0.85rem 0.95rem;
text-decoration: none;
}
.tilebox-agent-chat-composer:hover {
border-color: rgb(209 213 219);
color: rgb(31 41 55);
}
.dark .tilebox-agent-chat-composer {
background: rgb(24 24 27);
border-color: rgb(63 63 70);
color: rgb(161 161 170);
}
.dark .tilebox-agent-chat-composer:hover {
border-color: rgb(82 82 91);
color: rgb(228 228 231);
}
.tilebox-agent-chat-send {
align-items: center;
background: rgb(243 244 246);
border: 1px solid rgb(229 231 235);
color: rgb(75 85 99);
display: inline-flex;
flex: 0 0 auto;
height: 1.75rem;
justify-content: center;
width: 1.75rem;
}
.dark .tilebox-agent-chat-send {
background: rgb(39 39 42);
border-color: rgb(63 63 70);
color: rgb(212 212 216);
}
.tilebox-cli-window {
background: rgb(244 244 245);
border: 1px solid rgb(187 187 187 / 0.5);
box-shadow: 0 24px 36px rgb(0 0 0 / 0.18);
overflow: hidden;
}
.dark .tilebox-cli-window {
background: rgb(31 31 31);
}
.tilebox-cli-controls {
background: rgb(244 244 245);
display: flex;
gap: 0.52rem;
margin: 0;
padding: 1rem 1.2rem 1rem;
}
.dark .tilebox-cli-controls {
background: rgb(31 31 31);
}
.tilebox-cli-control {
border-radius: 999px !important;
display: block;
height: 0.9rem;
width: 0.9rem;
}
.tilebox-cli-control-red {
background: rgb(255 91 87);
}
.tilebox-cli-control-yellow {
background: rgb(255 189 46);
}
.tilebox-cli-control-green {
background: rgb(40 201 64);
}
.tilebox-cli-code {
color: rgb(229 229 184);
font-family: var(--font-mono), ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 0.92rem;
line-height: 1.55;
margin: 0;
overflow: visible;
tab-size: 2;
white-space: pre;
}
.tilebox-cli-code .code-block {
border: 0 !important;
box-shadow: none !important;
margin: 0 !important;
padding: 0 !important;
}
.tilebox-cli-code [data-component-part="code-block-header"] {
display: none !important;
}
.tilebox-cli-code .code-block-background {
margin: 0 !important;
padding: 1.35rem 1.55rem 1.65rem !important;
}
.tilebox-cli-code pre,
.tilebox-cli-code code {
margin: 0 !important;
}
.tilebox-cli-code code {
font: inherit;
}
@media (max-width: 1023px) {
.tilebox-landing-hero {
min-height: auto;
}
}
/* Manually override the Documentation tab being highlighted on the landing/index page */
html:has(.tilebox-home-marker) .nav-tabs .nav-tabs-item[data-active="true"] {
color: rgb(75 85 99) !important;
text-shadow: none !important;
}
html.dark:has(.tilebox-home-marker) .nav-tabs .nav-tabs-item[data-active="true"] {
color: rgb(161 161 170) !important;
}
html:has(.tilebox-home-marker) .nav-tabs .nav-tabs-item[data-active="true"] > div {
background: transparent !important;
}
html:has(.tilebox-home-marker) .nav-tabs .nav-tabs-item[data-active="true"]:hover {
color: rgb(31 41 55) !important;
}
html.dark:has(.tilebox-home-marker) .nav-tabs .nav-tabs-item[data-active="true"]:hover {
color: rgb(212 212 216) !important;
}
html:has(.tilebox-home-marker) .nav-tabs .nav-tabs-item[data-active="true"]:hover > div {
background: rgb(229 231 235) !important;
}
html.dark:has(.tilebox-home-marker) .nav-tabs .nav-tabs-item[data-active="true"]:hover > div {
background: rgb(63 63 70) !important;
}