This commit is contained in:
thies
2026-06-22 16:23:24 +00:00
commit e14d7d353f
104 changed files with 54448 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
/* Scale to fit the page */
/* Small images will become very blurry */
/* Not recommended */
.md-content__inner img {
width: 100%;
}
/* Scale to fit the page with constraints */
/* Smaller images will be min 25% of the width, so not as blurry */
/* Bigger images will be max 90% of the width, better for centring (?) */
.md-content__inner img {
min-width: 25%;
max-width: 90%;
}
/* Center the images */
.md-content__inner img {
display: block;
margin: 0 auto;
}
/* Add outline to make them pop */
.md-content__inner img {
outline: 1px solid var(--md-accent-fg-color);
}