mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-20 03:14:06 -06:00
35 lines
452 B
SCSS
35 lines
452 B
SCSS
@use "./base.scss";
|
|
|
|
// put your custom CSS here!
|
|
|
|
// captions!
|
|
img + em {
|
|
display: block;
|
|
text-align: center;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
iframe + p {
|
|
display: block;
|
|
text-align: center;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
// center all images by default
|
|
img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.tweet-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
iframe {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|