FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-sdk/docs/extra.css at main · modelcontextprotocol/python-sdk · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
modelcontextprotocol
/
python-sdk
Public
Notifications
You must be signed in to change notification settings
Fork
3.8k
Star
24.1k
Code
Issues
206
Pull requests
192
Actions
Projects
Security and quality
6
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-sdk
/
docs
/
extra.css
Copy path
More file actions
More file actions
Latest commit
History
History
History
107 lines (99 loc) · 4.52 KB
Breadcrumbs
python-sdk
/
docs
/
extra.css
Copy path
File metadata and controls
107 lines (99 loc) · 4.52 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/* Sidebar hierarchy + density for Zensical's UI (Material-compatible md-*
DOM, but different stock spacing: nav links are 8px-radius pills with
7px 16px padding). All rules scoped to the desktop sidebar breakpoint
(>= 76.25em) so the mobile drill-down drawer keeps stock styling. Colors
use the md-* tokens, so the light and slate schemes both work without
extra palette handling. */
@media
screen
and
(
min-width
:
76.25
em
) {
/* The sidebar is one coordinate system derived from the pill inset:
every row — page links, group rows, section labels — is a direct
.md-nav__link child of its item with the same 10px horizontal padding,
so all text shares one column, and hover/active pills always paint
10px of breathing room inside the scroll container (never clipped).
The padding lives on the elements Zensical paints hover/active pills
on (.md-nav__link[href] anchors and [for] labels — leaf links, bare
section labels, and the inner anchor of an .md-nav__container
wrapper); wrappers stay geometry-neutral, as stock. The 10px inset
also stays >= the 0.4rem pill radius, so the corner curve never
crowds the text. Vertical rhythm has a single knob: the nav list's
flex gap (stock 0.2rem reads airy; 2px matches the density the site
shipped with on Material, ~30px row pitch). */
.
md-sidebar--primary
.
md-nav__list
{
gap
:
2
px
;
}
.
md-sidebar--primary
.
md-nav__item
>
.
md-nav__link
:
not
(.
md-nav__container
)
,
.
md-sidebar--primary
.
md-nav__container
>
.
md-nav__link
{
padding
:
3
px
10
px
;
margin
:
0
;
}
.
md-sidebar--primary
.
md-nav__item
>
.
md-nav__container
{
padding
:
0
;
margin
:
0
;
}
/* Section labels: typography only — geometry comes from the row rule
above, so no specificity coordination is needed. */
.
md-sidebar--primary
.
md-nav__item--section
{
margin
:
0.8
em
0
;
}
.
md-sidebar--primary
.
md-nav__item--section
>
.
md-nav__link
{
font-size
:
0.62
rem
;
font-weight
:
700
;
text-transform
:
uppercase;
letter-spacing
:
0.1
em
;
color
:
var
(
--md-default-fg-color--light
);
}
/* Guide lines: 12px from the item box = 2px right of the label text
(which sits at box + 10px pill inset); children indent past them. */
.
md-sidebar--primary
.
md-nav__item--section
>
.
md-nav
{
margin-inline-start
:
12
px
;
border-inline-start
:
0.05
rem
solid
var
(
--md-default-fg-color--lightest
);
}
.
md-sidebar--primary
.
md-nav__item--nested
:
not
(.
md-nav__item--section
)
>
.
md-nav
{
margin-inline-start
:
12
px
;
border-inline-start
:
0.05
rem
solid
var
(
--md-default-fg-color--lightest
);
}
/* The current page stands out from its siblings (on top of the stock
pill highlight). 700 because only Inter 300/400/700 are loaded. */
.
md-sidebar--primary
.
md-nav__link--active
{
font-weight
:
700
;
}
/* The sidebar repeats the site name right above the homepage nav entry;
drop the title row on desktop (the mobile drawer still needs it for its
drill-down back-navigation, hence the media-query scope). */
.
md-sidebar--primary
.
md-nav--primary
>
.
md-nav__title
{
display
:
none;
}
}
/* Dark scheme: Zensical's slate canvas is near-black (hsla(225,15%,5%)),
harsher than the Material slate this site shipped with; restore that
blue-grey. Code blocks and other surfaces keep Zensical's own tokens. */
@media
screen {
[
data-md-color-scheme
=
"slate"
] {
--md-default-bg-color
:
#
1e2129
;
}
}
/* Inline code inside admonitions: the chip token is an absolute dark
surface designed for the page canvas, so on a tinted admonition panel it
sits as an opaque slab (Zensical's own docs share this bug). Re-tint it
tone-on-tone instead — translucent foreground, composited over whatever
the panel color is — the same pattern Starlight and Docusaurus ship for
code inside callouts. Prose chips keep the block-matching dark surface;
block code inside admonitions keeps its own surface too. The first
declaration is the fallback where color-mix is unsupported. */
.
md-typeset
.
admonition
:
not
(
pre
)
>
code
,
.
md-typeset
details
:
not
(
pre
)
>
code
{
background-color
:
var
(
--md-default-fg-color--lightest
);
background-color
:
color-mix
(in srgb
,
currentcolor
11
%
,
transparent);
color
:
inherit;
}
/* Headings: the 300-weight light-gray defaults read washed out; use the
full foreground color and a solid weight instead. 700, not 600: only
Inter 300/400/700 are loaded (see the nav__link note above). */
.
md-typeset
h1
,
.
md-typeset
h2
{
font-weight
:
700
;
color
:
var
(
--md-default-fg-color
);
}
.
md-typeset
h3
{
font-weight
:
700
;
}
Back
|
FazBrowse Home
|
New Git URL