bam/docs/_static/bam.css
Upstream Snapshot 8be13016bc Import upstream snapshot 57d13ead53206a6bf0db3d66f86506ae8c2ce01a
Upstream: https://github.com/pollen-robotics/bam
Upstream-Commit: 57d13ead53206a6bf0db3d66f86506ae8c2ce01a
Upstream-Branch: mjlab_frictionloss
2026-08-28 15:42:08 +08:00

103 lines
1.9 KiB
CSS

/* Minimal custom style for BAM docs */
.bd-page-width {
max-width: 92rem;
}
h1, h2 {
letter-spacing: 0.01em;
}
/* Add breathing room above and below content images */
.bd-article img {
margin-top: 1rem;
margin-bottom: 2rem;
}
/* Center the left (trajectory name) column of the trajectories table */
.traj-table td:first-child,
.traj-table th:first-child {
text-align: center;
vertical-align: middle;
}
video {
width: 100%;
max-width:700px;
display: block;
margin-left: auto;
margin-right: auto;
}
/* Getting started cards */
.bam-getting-started {
margin-top: 1.5rem;
margin-bottom: 1rem;
}
.bam-card {
border-radius: 0.6rem;
transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.bam-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
border-color: var(--pst-color-primary);
}
.bam-card .sd-card-title {
font-size: 1.15rem;
}
/* Float the card footer link to the right */
.bam-card .sd-card-footer {
text-align: right;
}
/* "Use in simulation" buttons on the identified-actuators table */
.actuators-table td {
vertical-align: middle;
}
.motor-btn {
display: block;
width: 100%;
margin: 0.25rem 0;
white-space: nowrap;
}
/* Compact inline warning that fits inside a table cell */
.mini-warning {
margin: 0.5rem 0 0;
font-size: 0.8em;
line-height: 1.35;
color: var(--pst-color-warning, #966600);
}
.mini-warning code {
font-size: 0.9em;
}
/* Banner shown on usage pages indicating the motor the examples target */
.motor-banner {
display: flex;
align-items: center;
gap: 1.25rem;
margin-bottom: 1.5rem;
}
.motor-banner-img {
flex: 0 0 auto;
width: 90px;
height: auto;
margin: 0;
border-radius: 0.4rem;
}
.motor-banner-text {
flex: 1 1 auto;
}
.motor-banner-text p:last-child {
margin-bottom: 0;
}