feat(geocaching): images and text

feat(shortcode): introduction of fig-img shortcode
This commit is contained in:
Matthieu Bessat 2023-09-21 23:19:37 +02:00
parent c1eec5f413
commit db4e5e3556
23 changed files with 197 additions and 37 deletions

View file

@ -97,6 +97,8 @@ img {
}
.wikipedia-btn {
margin-top: .5rem;
display: inline-flex;
justify-content: flex-start;
flex-direction: row;
@ -131,3 +133,33 @@ img {
width: 1rem;
height: 1rem;
}
.double-figures {
display: grid;
grid-template-columns: 1fr 1fr;
figure {
margin: 1rem;
margin-bottom: 2rem;
figcaption {
p { margin: 0;}
}
}
}
@media (max-width: $md-breakpoint) {
.double-figures {
grid-template-columns: 1fr;
}
}
.fig-img {
figcaption {
font-size: .9rem;
color: $hidden;
}
}
.highlighted {
font-weight: bold;
}