From 9acaa1c8ac8c8afd3fa08d3b1f58a60006fcfc6f Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri, 09 Aug 2024 01:19:45 +0000
Subject: [PATCH] feat: custom global latex macros (closes #1325)
---
quartz/styles/base.scss | 20 ++++++++++++++++++--
1 files changed, 18 insertions(+), 2 deletions(-)
diff --git a/quartz/styles/base.scss b/quartz/styles/base.scss
index 52cd102..3b3ead7 100644
--- a/quartz/styles/base.scss
+++ b/quartz/styles/base.scss
@@ -201,11 +201,19 @@
}
}
- & .page-header {
+ & .page-header,
+ & .page-footer {
width: $pageWidth;
- margin: $topSpacing auto 0 auto;
+ margin-top: 1rem;
+
@media all and (max-width: $fullPageWidth) {
width: initial;
+ }
+ }
+
+ & .page-header {
+ margin: $topSpacing auto 0 auto;
+ @media all and (max-width: $fullPageWidth) {
margin-top: 2rem;
}
}
@@ -533,3 +541,11 @@
overflow-x: auto;
overflow-y: hidden;
}
+
+.external-embed.youtube,
+iframe.pdf {
+ aspect-ratio: 16 / 9;
+ height: 100%;
+ width: 100%;
+ border-radius: 5px;
+}
--
Gitblit v1.10.0