-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcustom.css
More file actions
71 lines (63 loc) · 1.45 KB
/
Copy pathcustom.css
File metadata and controls
71 lines (63 loc) · 1.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
/* Match website heading style: tracking-wide (0.025em), semibold (600) */
h1, h2, h3, h4, h5, h6 {
letter-spacing: 0.025em;
font-weight: 600;
}
/* Sidebar group titles - 50% larger */
.sidebar-group-header h5 {
font-size: 1.5em;
}
/* Bigger logo */
.nav-logo {
height: 2.25rem;
}
/* Keep mobile guide content inside the viewport. */
@media (max-width: 640px) {
html,
body {
max-width: 100%;
overflow-x: clip;
}
#content-area {
box-sizing: border-box;
inline-size: calc(100vw - 2rem) !important;
width: calc(100vw - 2rem) !important;
max-inline-size: calc(100vw - 2rem) !important;
max-width: calc(100vw - 2rem) !important;
min-width: 0;
}
#header,
#content,
#content .columns,
#header .prose,
#content .prose {
max-inline-size: 100%;
max-width: 100%;
min-width: 0;
}
#header .prose > *,
#content > span[data-as="p"],
#content p,
#content li {
overflow-wrap: anywhere;
}
#header blockquote a[href$="/llms.txt"],
#content blockquote a[href$="/llms.txt"],
#content-area blockquote a[href$="/llms.txt"] {
overflow-wrap: anywhere !important;
word-break: break-word !important;
white-space: normal !important;
}
}
/* Keep the agent directive discoverable without changing page layout. */
.agent-llms-directive {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}