Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make images with captions prettier #122

Open
wants to merge 1 commit into
base: release
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions assets/docs/scss/custom/structure/_content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,33 @@ i {
font-size: var(--font-size-sm);
}

// Images with captions
.docs-content .main-content {
// I wasn't sure if figures are used with mermaid or code classes so ensure that img is present
figure:has(img) {
max-width: 30rem;
margin:0 auto;
text-align: center !important;
padding: 0.5rem;

img {
max-width: 100%;
height: auto;
filter: drop-shadow(rgba(0, 0, 0, 0.5) 1px 1px 5px);
}
figcaption {
padding: 0.5rem 0;
}
// Adds small rotated arrow towards the image
figcaption::before {
content: '⤶';
display: inline-block;
transform: rotate(90deg);
padding-right: 0.5rem;
}
}
}

// <figcaption>

.docs-content figcaption {
Expand Down