blob: 376929a85f1cce38271fff66d22e0319f58eba10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*
* Academic Marp (acarp) Theme - Beamer Variant
* Version: 1.0.0
* License: MIT
* Repository: https://git.samsci.com/cgit.cgi/acarp-marp-theme/
*
* Beamer-style 4:3 aspect ratio variant of the Academic Marp theme.
* Import base theme and override dimensions for classic LaTeX Beamer-style presentations.
*/
/* @theme acarp-beamer */
/* Academic Marp (acarp) - Beamer Theme (4:3 aspect ratio)
Overrides acarp.css with 4:3 dimensions for classic LaTeX Beamer-style presentations.
*/
/* Import the base theme and override specific values */
@import 'acarp.css';
/* Override slide dimensions for 4:3 aspect ratio */
:root {
--slide-width: 1280px !important;
--slide-height: 960px !important;
}
/* Force 4:3 dimensions on all sections */
section {
width: 1280px !important;
height: 960px !important;
}
/* Increase font size proportionally for taller slides */
section {
font-size: 37px !important;
}
/* Larger pagination for beamer theme */
section::after {
font-size: 24px !important;
}
/* Ensure 2col layouts also use larger pagination */
section.layout-2col::after {
font-size: 24px !important;
}
|