aboutsummaryrefslogtreecommitdiff
path: root/acarp.css
diff options
context:
space:
mode:
authorSam Scholten2025-11-27 14:58:37 +1100
committerSam Scholten2025-11-27 14:58:37 +1100
commit3c109c02d404e6bca0522929314fa09bc8ebf2d5 (patch)
tree8257e935772b9bc8812daea0ff382dcd2ce692c0 /acarp.css
parent684f9796003a5eb0e3fea1ec3b1a6d273065f70e (diff)
downloadacarp-marp-theme-3c109c02d404e6bca0522929314fa09bc8ebf2d5.tar.gz
acarp-marp-theme-3c109c02d404e6bca0522929314fa09bc8ebf2d5.zip
Add citation utility class and improve grid naming
- Rename layout-2col grid area 'footer' to 'buffer' for clarity - Add .cite utility class for bottom-left citations - Include citation examples in both demo presentations - Document citation usage in README
Diffstat (limited to 'acarp.css')
-rw-r--r--acarp.css12
1 files changed, 11 insertions, 1 deletions
diff --git a/acarp.css b/acarp.css
index 6395e52..98363d7 100644
--- a/acarp.css
+++ b/acarp.css
@@ -310,6 +310,16 @@ section p > img:only-child {
margin: 0 auto;
}
+/* Citation utility - bottom left corner */
+.cite {
+ position: absolute;
+ bottom: 30px;
+ left: var(--padding);
+ font-size: 0.7em;
+ color: #888888;
+ opacity: 0.9;
+}
+
/* ============================================================================
LAYOUT: title
@@ -377,7 +387,7 @@ section.layout-2col {
grid-template-areas:
"title title"
"left right"
- "footer footer";
+ "buffer buffer";
gap: 2em;
padding: 0;
height: 100%;