mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 06:45:23 -04:00
18 lines
311 B
CSS
18 lines
311 B
CSS
.image {
|
|
display: block;
|
|
margin: 1em auto;
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
/* weird hack to enable image captions in markdown */
|
|
.image + em {
|
|
display: block;
|
|
text-align: center;
|
|
margin-top: -0.4em;
|
|
font-style: normal;
|
|
font-size: 0.95em;
|
|
line-height: 1.5;
|
|
color: var(--colors-medium);
|
|
}
|