gstreamer/subprojects/gst-docs/scripts/assets/css/rustdoc-in-hotdoc.css
Thibault Saunier 58939e10ee docs: Embed the gstreamer-rs documentation into our documentation in CI
Downloading the latest build of GStreamer-rs from its CI job and running a
script to embed the rustoc generated documentation into hotdoc based one.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8317>
2025-01-23 10:52:50 +00:00

31 lines
444 B
CSS

body.rustdoc {
padding-top: 50px;
}
/* Revert hotdoc body font size setting */
:root {
font-size: 16px;
}
/* Media queries for responsive behavior */
@media (max-width: 767px) {
.gst-navbar-toggle {
display: block;
}
}
@media (max-width: 701px) {
.sidebar {
padding-top: 50px;
}
}
@media (min-width: 700px) {
.sidebar {
position: sticky;
top: 50px;
height: calc(100vh - 50px);
overflow-y: auto;
}
}